1. Channels
Wazapi
  • Raiz
    • Channels
      • List WhatsApp channels
        GET
    • Contacts
      • List contacts
      • Get a contact
      • Update a contact
      • Create or update a contact by external ID
    • Flows
      • List flows
      • Get a flow
      • Start a flow execution
    • Templates
      • List WhatsApp templates
      • Get a WhatsApp template by name
    • Messages
      • Send a WhatsApp message
      • List messages in a conversation
    • Operations
      • Get an asynchronous operation
    • Conversations
      • List conversations
      • Get a conversation
    • Webhooks
      • Receive an event from Wazapi
  • Esquemas
    • PaginationMeta
    • Channel
    • Contact
    • Flow
    • Template
    • Conversation
    • Message
    • Operation
    • WebhookEventType
    • WebhookEvent
    • Recipient
    • ContactWrite
    • MessageRequest
    • Error
  1. Channels

List WhatsApp channels

GET
/channels

Requisição

Authorization
Bearer Token
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
or

Respostas

🟢200ChannelList
application/json
WhatsApp channels available to the integration
Bodyapplication/json

🟠401Error
🟠403Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/channels' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Exemplo 1
{
    "data": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "provider": "whatsapp",
            "display_name": "string",
            "phone_number": "string",
            "status": "string",
            "capabilities": {
                "send_text": true,
                "send_template": true,
                "start_flow": true
            }
        }
    ]
}
Modificado em 2026-08-26 00:52:01
Próxima página
List contacts
Built with