create_group
Create WhatsApp groups for business communication by specifying participants, group name, and optional description using the Evolution API.
Instructions
Create a new WhatsApp group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Group description | |
instanceName | Yes | Instance name | |
participants | Yes | Phone numbers of participants | |
subject | Yes | Group name |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Group description",
"type": "string"
},
"instanceName": {
"description": "Instance name",
"type": "string"
},
"participants": {
"description": "Phone numbers of participants",
"items": {
"type": "string"
},
"type": "array"
},
"subject": {
"description": "Group name",
"type": "string"
}
},
"required": [
"instanceName",
"subject",
"participants"
],
"type": "object"
}