Remove Participants

Supported & Tested

Remove one or more participants from a WhatsApp group.

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

Required Waplix instance id

group_id
stringReq

Required WhatsApp group id ending with @g.us

participants
arrayReq

Required array of phone numbers or JIDs

Usage Notes
A 200 status in results means WhatsApp accepted the participant removal.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/participants-remove" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "39058",
    "group_id": "120363429508183753@g.us",
    "participants": [
      "923000935862@s.whatsapp.net"
    ],
    "action": "remove",
    "results": [
      {
        "status": "200",
        "jid": "142120618831980@lid"
      }
    ]
  }
}
Was this page helpful?