add_participants
Add phone numbers to a WhatsApp group using Evolution API to expand group membership for business messaging and communication.
Instructions
Add participants to a group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupJid | Yes | Group JID | |
instanceName | Yes | Instance name | |
participants | Yes | Phone numbers to add |
Input Schema (JSON Schema)
{
"properties": {
"groupJid": {
"description": "Group JID",
"type": "string"
},
"instanceName": {
"description": "Instance name",
"type": "string"
},
"participants": {
"description": "Phone numbers to add",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"instanceName",
"groupJid",
"participants"
],
"type": "object"
}