curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
--header 'Authorization: Basic <encoded-value>'{
"id": "INTEGRATION_ID",
"brainId": "BRAIN_ID",
"webhookUrl": "https://my-system.com/webhook/jelou",
"authType": "bearer",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Retrieve the current configuration of your external support panel integration
curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
--header 'Authorization: Basic <encoded-value>'{
"id": "INTEGRATION_ID",
"brainId": "BRAIN_ID",
"webhookUrl": "https://my-system.com/webhook/jelou",
"authType": "bearer",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}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}
x-api-key header with your Jelou project API key.
x-api-key: API_KEY
PROJECT_ID:
curl --request GET \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID \
--header 'x-api-key: API_KEY'
| Code | Status | Description |
|---|---|---|
| 200 | OK | Integration found. Returns the current configuration. |
| 401 | Unauthorized | Invalid or missing authentication credentials. |
| 404 | Not Found | No integration exists for the specified projectId. |
| 500 | Internal Server Error | Internal server error. |
{
"message": [
"Integration retrieved successfully"
],
"statusMessage": "success",
"status": 1,
"data": {
"brainId": "PROJECT_ID",
"webhookUrl": "https://my-system.com/webhook/jelou",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-01-20T14:45:00.000Z"
}
}
| Property | Type | Description |
|---|---|---|
| brainId | string | Unique identifier of the Jelou project. |
| webhookUrl | string | URL of the endpoint that receives Jelou events. |
| createdAt | date | Date and time the integration was created. |
| updatedAt | date | Date and time of the last update. |
Basic authentication using Base64 encoded clientId:clientSecret
Unique identifier of the Jelou project
Was this page helpful?