Skip to main content
DELETE
/
v1
/
whatsapp
/
groups
/
{groupId}
/
participants
cURL
curl --request DELETE \
  --url https://api.buildwithchirp.com/v1/whatsapp/groups/{groupId}/participants \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "participants": [
    "+15551234567"
  ]
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

App API key (format: sk_live_app_* or sk_test_app_*) for app-level operations

Path Parameters

groupId
string
required

WhatsApp Group ID

Example:

"grp_wa_2DbBs7GWhGvVNJGrDXr5RG0"

Body

application/json
participants
string[]
required

Array of participant wa_id values to remove

Minimum array length: 1
Example:
["+15551234567"]

Response

Participants removed

success
enum<boolean>
required
Available options:
true,
false