WA Client
POST

Create Channel

Create a new WhatsApp channel with name and optional description or icon.

API endpoint
https://waclient.com/api/create_channel
Example:
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"
    }
}
ParameterDescription
nameChannel name
descriptionChannel description (Optional)
image_urlPublic URL of channel icon (JPEG/PNG) (Optional)
instance_idYour instance ID
access_tokenYour access token

Command Palette

Search documentation endpoints.

Esc