WA Client
POST

Create Group

Create a new WhatsApp group with a subject and optional initial participants.

API endpoint
https://waclient.com/api/create_group
Example:
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": []
    }
}
ParameterDescription
subjectGroup name / subject
participantsArray of phone numbers or JIDs to add (Optional)
instance_idYour instance ID
access_tokenYour access token

Command Palette

Search documentation endpoints.

Esc