whatsapp_update_group_name
Change the name of a WhatsApp group by providing the group ID and the new desired name for the group.
Instructions
Update group name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| groupId | Yes | Group ID (with @g.us) | |
| name | Yes | New group name |
Input Schema (JSON Schema)
{
"properties": {
"groupId": {
"description": "Group ID (with @g.us)",
"type": "string"
},
"name": {
"description": "New group name",
"type": "string"
}
},
"required": [
"groupId",
"name"
],
"type": "object"
}