Skip to main content
POST
/
api
/
instances
/
{instanceId}
/
channels
Create a channel
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

instanceId
string<uuid>
required

The WhatsApp instance UUID

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Body

application/json
name
string
required
Example:

"My Channel"

description
string
Example:

"Channel description"

Response

Channel created

id
string
required

Channel ID

Example:

"120363XXX@newsletter"

name
string
required

Channel name

Example:

"Company Updates"

description
string

Channel description