curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/conversations/{conversationId} \
--header 'Authorization: Basic <encoded-value>'{
"message": "<string>",
"statusMessage": "<string>",
"status": 123,
"error": {
"code": "<string>",
"key": "<string>",
"description": "<string>",
"developerMessages": {},
"clientMessages": {}
},
"validationError": {}
}Consulta o status e os detalhes de uma conversa específica
curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/conversations/{conversationId} \
--header 'Authorization: Basic <encoded-value>'{
"message": "<string>",
"statusMessage": "<string>",
"status": 123,
"error": {
"code": "<string>",
"key": "<string>",
"description": "<string>",
"developerMessages": {},
"clientMessages": {}
},
"validationError": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/conversations/{conversationId}
x-api-key com a API key do projeto Jelou.
x-api-key: API_KEY
CONVERSATION_ID dentro do projeto PROJECT_ID:
curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID/conversations/CONVERSATION_ID \
--header 'x-api-key: API_KEY'
| Código | Status | Descrição |
|---|---|---|
| 200 | OK | Conversa encontrada. Retorna os detalhes da conversa. |
| 401 | Unauthorized | Credenciais de autenticação inválidas ou ausentes. |
| 404 | Not Found | Conversa não encontrada para os identificadores indicados. |
| 500 | Internal Server Error | Erro interno do servidor. |
{
"message": [
"Conversation retrieved successfully"
],
"statusMessage": "success",
"status": 1,
"data": {
"_id": "CONVERSATION_ID",
"roomId": "ROOM_ID",
"state": "closed",
"startAt": "2026-01-15T10:30:00.000Z",
"endAt": "2026-01-15T10:45:00.000Z",
"endedReason": "closed_by_operator",
"User": {
"id": "USER_ID",
"names": "USER_NAME",
"referenceId": "USER_REFERENCE_ID",
"createdAt": "2025-01-28T20:54:25.572Z"
},
"Bot": {
"id": "BOT_ID",
"name": "BOT_NAME",
"type": "Whatsapp"
}
}
}
| Campo | Tipo | Descrição |
|---|---|---|
data._id | string | Identificador único da conversa. |
data.roomId | string | Identificador da sala de conversa. |
data.state | string | Status da conversa: active ou closed. |
data.startAt | date | Data e hora de início da conversa. |
data.endAt | date | Data e hora de encerramento. Presente apenas se a conversa estiver encerrada. |
data.endedReason | string | Motivo do encerramento: closed_by_operator. |
data.User.id | string | Identificador do usuário final. |
data.User.names | string | Nome do usuário final. |
data.User.referenceId | string | Identificador de referência externo do usuário. |
data.Bot.id | string | Identificador do bot que atendeu a conversa. |
data.Bot.name | string | Nome do bot. |
data.Bot.type | string | Canal do bot (por exemplo: Whatsapp). |
Basic authentication using Base64 encoded clientId:clientSecret
Unique identifier of the Jelou project
Unique identifier of the conversation
Conversation retrieved successfully
Esta página foi útil?