Get Channels
Feature Not SupportedReturn the list of available WhatsApp Channels for the connected instance.
POSThttps://api.waplix.io/api/v1/channels/list
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Required Waplix instance id |
| limit | number | Optional | Optional integer limit |
instance_id
stringReq Required Waplix instance id
limit
numberOpt Optional integer limit
Usage Notes
List channels is not available on all accounts. Use Search Channels or Get Channel By ID when you already know the channel id.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/channels/list" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"instance_id": "demo_instance"
}'Success Response
Response · 200 OK
{
"success": false,
"error": {
"code": "FEATURE_NOT_SUPPORTED",
"message": "Get channels is currently not supported for this account."
}
} Was this page helpful?