list_groups
Retrieve all WhatsApp groups from an Evolution API instance, with option to include participant details for group management.
Instructions
List all groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| getParticipants | No | Include participants list | |
| instanceName | Yes | Instance name |
Input Schema (JSON Schema)
{
"properties": {
"getParticipants": {
"description": "Include participants list",
"type": "boolean"
},
"instanceName": {
"description": "Instance name",
"type": "string"
}
},
"required": [
"instanceName"
],
"type": "object"
}