WasenderApi - Low Cost WhatsApp API for Developers Remove Group Participants - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Remove Group Participants

Groups

POST/api/groups/{groupJid}/participants/remove

Removes participants from a specific group. Requires admin privileges in the group.

Remove Group Participants

Removes participants from a specific group. Requires admin privileges in the group.

Parameters

NameTypeRequiredDescription
groupJidstringYesThe JID (Jabber ID) of the group in the format 123456789-987654321@g.us.
participantsarrayYesArray of participant JIDs in E.164 format (international phone numbers) e.g., 1234567890.

Code Examples

curl -X POST "https://www.wasenderapi.com/api/groups/{groupJid}/participants/remove"
  -H "Authorization: Bearer YOUR_API_KEY"
  -H "Content-Type: application/json"
  -d '{
      "participants": [
          "number1",
          "number2"
      ]
  }'

Response Examples

{
    "success": true,
    "data": [
        {
            "status": 200,
            "jid": "123456789",
            "message": "removed"
        },
        {
            "status": 403,
            "jid": "participant2",
            "message": "not-authorized"
        }
    ]
}