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 el estado y detalles de una conversación 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 con la API key del proyecto de Jelou.
x-api-key: API_KEY
CONVERSATION_ID dentro del proyecto 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 | Estado | Descripción |
|---|---|---|
| 200 | OK | Conversación encontrada. Devuelve los detalles de la conversación. |
| 401 | Unauthorized | Credenciales de autenticación inválidas o faltantes. |
| 404 | Not Found | Conversación no encontrada para los identificadores indicados. |
| 500 | Internal Server Error | Error interno del 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 | Descripción |
|---|---|---|
data._id | string | Identificador único de la conversación. |
data.roomId | string | Identificador de la sala de conversación. |
data.state | string | Estado de la conversación: active o closed. |
data.startAt | date | Fecha y hora de inicio de la conversación. |
data.endAt | date | Fecha y hora de cierre. Presente solo si la conversación está cerrada. |
data.endedReason | string | Razón del cierre: closed_by_operator. |
data.User.id | string | Identificador del usuario final. |
data.User.names | string | Nombre del usuario final. |
data.User.referenceId | string | Identificador de referencia externo del usuario. |
data.Bot.id | string | Identificador del bot que atendió la conversación. |
data.Bot.name | string | Nombre del bot. |
data.Bot.type | string | Canal del bot (por ejemplo: 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 le ayudó?