Create Channel
Supported & TestedCreate a WhatsApp Channel through the Waplix Channel API.
POSThttps://api.waplix.io/api/v1/channels/create
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Required Waplix instance id |
| name | string | Required | Required channel name |
| description | string | Optional | Optional channel description |
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?