Channels

Retrieves a paginated list of communication channels with optional filtering by channel type.

List channels

get
Authorizations
Query parameters
typestring · enumOptionalPossible values:
pageinteger · min: 1Optional
Responses
200

List of channels

application/json
get
/channels
GET /api/v1/channels HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

List of channels

{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "whatsapp",
      "name": "text",
      "location_id": "123e4567-e89b-12d3-a456-426614174000",
      "whatsapp": {
        "business_id": "text",
        "phone_number_id": "text"
      },
      "created_at": "2025-10-18T10:13:47.080Z",
      "updated_at": "2025-10-18T10:13:47.080Z"
    }
  ],
  "links": {},
  "meta": {}
}

Last updated