1. Conversations
Wazapi
  • Raiz
    • Channels
      • List WhatsApp channels
    • 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
      • Get a conversation
        GET
    • Webhooks
      • Receive an event from Wazapi
  • Esquemas
    • PaginationMeta
    • Channel
    • Contact
    • Flow
    • Template
    • Conversation
    • Message
    • Operation
    • WebhookEventType
    • WebhookEvent
    • Recipient
    • ContactWrite
    • MessageRequest
    • Error
  1. Conversations

Get a conversation

GET
/conversations/{conversation_uuid}

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
Parâmetros de Caminho

Respostas

🟢200Conversation
application/json
Conversation response
Bodyapplication/json

🟠404Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/conversations/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Exemplo 1
{
    "data": {
        "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
        "status": "string",
        "channel_uuid": "82940f04-367e-448c-ae9d-3ae74b17da5e",
        "contact": {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "external_id": "string",
            "phone": "string",
            "name": "string",
            "email": "user@example.com",
            "tags": [
                "string"
            ],
            "custom_fields": {
                "property1": "string",
                "property2": "string"
            },
            "last_interaction_at": "2019-08-24T14:15:22.123Z",
            "created_at": "2019-08-24T14:15:22.123Z",
            "updated_at": "2019-08-24T14:15:22.123Z"
        },
        "unread_count": 0,
        "last_message_at": "2019-08-24T14:15:22.123Z",
        "created_at": "2019-08-24T14:15:22.123Z",
        "updated_at": "2019-08-24T14:15:22.123Z"
    }
}
Modificado em 2026-08-26 00:52:01
Página anterior
List conversations
Próxima página
Receive an event from Wazapi
Built with