TheDocumentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.
X-Jelou-Signature header with format sha256=HMAC_HEX_DIGEST is used in both directions:
- Verification: When receiving events from Jelou on your webhook, you must verify the signature to ensure integrity.
- Generation: When sending messages to Jelou’s webhook (
incoming_message), you must generate and send the signature.
Verification of events received from Jelou
All events sent by Jelou to the webhook include theX-Jelou-Signature header. It is recommended to always verify the signature.
Signature generation for sending to Jelou
When the external provider sends a message to the end user viaPOST /v1/external-support/webhook, it must include the X-Jelou-Signature header with the HMAC-SHA256 signature of the body.
Authentication headers sent by Jelou
Based on theauthType configured in the integration, Jelou will send the corresponding header when invoking your webhook:
| authType | Header sent |
|---|---|
bearer | Authorization: Bearer {{token}} |
api_key | X-API-Key: {{api_key}} |
basic | Authorization: Basic {{base64_credentials}} |
no_auth | No authentication header |