POST
Create Channel
Create a new WhatsApp channel with name and optional description or icon.
API endpoint
https://waclient.com/api/create_channelExample:
curl -X POST \
'https://waclient.com/api/create_channel' \
-H 'Content-Type: application/json' \
--data '{
"name": "My Channel",
"description": "Updates and news",
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"id": "1203634123999XXXXX@newsletter",
"name": "My Channel",
"description": "Updates and news",
"subscribers": 0,
"invite_code": "INVITECHANNEL123",
"invite_link": "https://whatsapp.com/channel/INVITECHANNEL123"
}
}| Parameter | Description |
|---|---|
| name | Channel name |
| description | Channel description (Optional) |
| image_url | Public URL of channel icon (JPEG/PNG) (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |