Create Group

Supported & Tested

Create a new WhatsApp group through the verified Waplix Group API.

POSThttps://api.waplix.io/api/v1/groups/create
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

subject
stringReq

Required group title

participants
arrayReq

Required array of phone numbers or JIDs

Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/create" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "subject": "Docs Manual Test Group",
  "participants": [
    "15551234567"
  ]
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "group_id": "120363000000000000@g.us",
    "subject": "Docs Manual Test Group",
    "participants": [
      "15551234567@s.whatsapp.net"
    ],
    "description": null,
    "status": "created"
  }
}
Was this page helpful?