Creates a new WhatsApp Channel with the given name and optional description.
cURL
curl --request POST \ --url https://api.wappfy.io/api/instances/{instanceId}/channels \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "My Channel", "description": "Channel description" } '
{ "id": "120363XXX@newsletter", "name": "Company Updates", "description": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The WhatsApp instance UUID
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
"My Channel"
"Channel description"
Channel created
Channel ID
"120363XXX@newsletter"
Channel name
"Company Updates"
Channel description
Was this page helpful?