Subscribe To Channel

Supported & Tested

Subscribe the connected account to a WhatsApp Channel.

POSThttps://api.waplix.io/api/v1/channels/subscribe
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
Subscribe the connected account to a public WhatsApp Channel.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/channels/subscribe" \
  -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": "subscribed"
  }
}
Was this page helpful?