Create Integration
Integration
Create integration
Create a new integration with your external support panel
POST
Create Integration
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.
Description
Creates a new integration between Jelou and your external support panel. Upon completion, Jelou will generate a uniquesigningSecret associated with the project.
Endpoint
Path parameters
Unique identifier of the Jelou project to associate the integration with.
Body parameters
URL of the endpoint in your system that will receive events sent by Jelou. Must be a publicly accessible HTTPS URL.Example:
https://my-system.com/webhook/jelouAuthentication
All requests must include thex-api-key header with your Jelou project API key.
Request example
The following example creates an integration for projectPROJECT_ID, configuring the webhook.
cURL
Responses
| Code | Status | Description |
|---|---|---|
| 200 | OK | Integration created successfully. Includes the signingSecret. |
| 422 | Unprocessable Entity | Fields sent in the request contain invalid values or fail validations. |
| 401 | Unauthorized | Invalid or missing authentication credentials. |
| 500 | Internal Server Error | Internal server error. |
Response example
Authorizations
Basic authentication using Base64 encoded clientId:clientSecret
Path Parameters
Unique identifier of the Jelou project
Body
application/json
Webhook URL where events will be sent
Example:
"https://my-system.com/webhook/jelou"
Authentication type for invoking the webhook
Available options:
bearer, api_key, basic, no_auth Credentials for authenticating when invoking the webhook
Example:
"my-secret-token"