remove_participants
Remove specified participants from a WhatsApp group using their phone numbers to manage group membership and maintain appropriate conversation environments.
Instructions
Remove participants from a group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| groupJid | Yes | Group JID | |
| instanceName | Yes | Instance name | |
| participants | Yes | Phone numbers to remove |
Input Schema (JSON Schema)
{
"properties": {
"groupJid": {
"description": "Group JID",
"type": "string"
},
"instanceName": {
"description": "Instance name",
"type": "string"
},
"participants": {
"description": "Phone numbers to remove",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"instanceName",
"groupJid",
"participants"
],
"type": "object"
}