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": {}
}Retrieve the status and details of a specific conversation
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 header with your Jelou project API key.
x-api-key: API_KEY
CONVERSATION_ID within project 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'
| Code | Status | Description |
|---|---|---|
| 200 | OK | Conversation found. Returns the conversation details. |
| 401 | Unauthorized | Invalid or missing authentication credentials. |
| 404 | Not Found | Conversation not found for the specified identifiers. |
| 500 | Internal Server Error | Internal server error. |
{
"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"
}
}
}
| Field | Type | Description |
|---|---|---|
data._id | string | Unique identifier of the conversation. |
data.roomId | string | Conversation room identifier. |
data.state | string | Conversation state: active or closed. |
data.startAt | date | Date and time the conversation started. |
data.endAt | date | Date and time of closing. Present only if the conversation is closed. |
data.endedReason | string | Close reason: closed_by_operator. |
data.User.id | string | End user identifier. |
data.User.names | string | End user name. |
data.User.referenceId | string | External reference identifier of the user. |
data.Bot.id | string | Identifier of the bot that handled the conversation. |
data.Bot.name | string | Bot name. |
data.Bot.type | string | Bot channel (for example: Whatsapp). |
Was this page helpful?