whatsapp_create_group
Create a new WhatsApp group by specifying a group name and adding participants using their phone numbers. This tool enables organized communication and collaboration within dedicated group spaces on WhatsApp.
Instructions
Create a new WhatsApp group.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Group name (max 255 characters) | |
participants | Yes | List of participant phone numbers |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Group name (max 255 characters)",
"type": "string"
},
"participants": {
"description": "List of participant phone numbers",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"participants"
],
"type": "object"
}