Create Channel

Supported & Tested

Create a WhatsApp Channel through the Waplix Channel API.

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

Required Waplix instance id

name
stringReq

Required channel name

description
stringOpt

Optional channel description

Usage Notes
Channel IDs use the @newsletter JID format, for example: 120363000000000000@newsletter.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/channels/create" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "name": "Demo News Channel",
  "description": "Latest news and updates."
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "channel_id": "120363000000000000@newsletter",
    "name": "Demo News Channel",
    "description": "Latest news and updates.",
    "status": "created"
  }
}
Was this page helpful?