Unsubscribe From Channel

Supported & Tested

Unsubscribe the connected account from a WhatsApp Channel.

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

Required Waplix instance id

channel_id
stringReq

Required valid WhatsApp Channel ID ending with @newsletter

Usage Notes
Unsubscribe the connected account from a WhatsApp Channel.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/channels/unsubscribe" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "channel_id": "120363000000000000@newsletter"
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "channel_id": "120363000000000000@newsletter",
    "status": "unsubscribed"
  }
}
Was this page helpful?