POST
Create Group
Create a new WhatsApp group with a subject and optional initial participants.
API endpoint
https://waclient.com/api/create_groupExample:
curl -X POST \
'https://waclient.com/api/create_group' \
-H 'Content-Type: application/json' \
--data '{
"subject": "My New Group",
"participants": [
"20100981XXXX"
],
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"id": "[email protected]",
"name": "My New Group",
"description": "",
"size": 2,
"owner": null,
"creation": 1749578596,
"restrict": false,
"announce": false,
"participants": []
}
}| Parameter | Description |
|---|---|
| subject | Group name / subject |
| participants | Array of phone numbers or JIDs to add (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |