curl --request POST \
--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",
"authType": "no_auth",
"authorization": "my-secret-token"
}
'{
"id": "INTEGRATION_ID",
"brainId": "BRAIN_ID",
"webhookUrl": "https://my-system.com/webhook/jelou",
"authType": "bearer",
"signingSecret": "a1b2c3d4...signing_secret_hex",
"createdAt": "2023-11-07T05:31:56Z"
}Crea una nueva integración con tu panel de atención externo
curl --request POST \
--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",
"authType": "no_auth",
"authorization": "my-secret-token"
}
'{
"id": "INTEGRATION_ID",
"brainId": "BRAIN_ID",
"webhookUrl": "https://my-system.com/webhook/jelou",
"authType": "bearer",
"signingSecret": "a1b2c3d4...signing_secret_hex",
"createdAt": "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.
signingSecret solo se muestra en la respuesta de creación. Guárdelo de forma segura.signingSecret único asociado al proyecto.
POST https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}
https://mi-sistema.com/webhook/jeloux-api-key con la API key del proyecto de Jelou.
x-api-key: API_KEY
PROJECT_ID, configurando el webhook.
curl --request POST \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID \
--header 'Content-Type: application/json' \
--header 'x-api-key: API_KEY' \
--data '{
"webhookUrl": "https://mi-sistema.com/webhook/jelou"
}'
| Código | Estado | Descripción |
|---|---|---|
| 200 | OK | Integración creada exitosamente. Incluye el signingSecret. |
| 422 | Unprocessable Entity | Los campos enviados en el request contienen valores inválidos o no cumplen las validaciones esperadas. |
| 401 | Unauthorized | Credenciales de autenticación inválidas o faltantes. |
| 500 | Internal Server Error | Error interno del servidor. |
{
"message": [
"Integration created successfully"
],
"statusMessage": "success",
"status": 1,
"data": {
"id": "INTEGRATION_ID",
"brainId": "PROJECT_ID",
"webhookUrl": "https://mi-sistema.com/webhook/jelou",
"authType": "no_auth",
"signingSecret": "SIGNING_SECRET",
"createdAt": "2026-01-15T10:30:00.000Z"
}
}
Basic authentication using Base64 encoded clientId:clientSecret
Unique identifier of the Jelou project
Webhook URL where events will be sent
"https://my-system.com/webhook/jelou"
Authentication type for invoking the webhook
bearer, api_key, basic, no_auth Credentials for authenticating when invoking the webhook
"my-secret-token"
¿Esta página le ayudó?