curl --request PATCH \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"webhookUrl": "https://my-system.com/webhook/jelou-v2",
"authType": "bearer",
"authorization": "<string>"
}
'{
"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"
}Update the configuration of your external support panel integration
curl --request PATCH \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"webhookUrl": "https://my-system.com/webhook/jelou-v2",
"authType": "bearer",
"authorization": "<string>"
}
'{
"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.
PATCH https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}
https://my-system.com/webhook/jelou-v2x-api-key header with your Jelou project API key.
x-api-key: API_KEY
PROJECT_ID:
curl --request PATCH \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID \
--header 'x-api-key: API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"webhookUrl": "https://my-system.com/webhook/jelou-v2"
}'
| Code | Status | Description |
|---|---|---|
| 200 | OK | Integration updated successfully. |
| 400 | Bad Request | Invalid data format or disallowed values. |
| 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 updated successfully"
],
"statusMessage": "success",
"status": 1,
"data": {
"brainId": "PROJECT_ID",
"webhookUrl": "https://my-system.com/webhook/jelou-v2",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-01-22T09:15:00.000Z"
}
}
Basic authentication using Base64 encoded clientId:clientSecret
Unique identifier of the Jelou project
Was this page helpful?