curl --request POST \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/secret/regenerate \
--header 'Authorization: Basic <encoded-value>'{
"signingSecret": "e5f6g7h8...new_signing_secret_hex",
"regeneratedAt": "2023-11-07T05:31:56Z"
}Generate a new signingSecret for your integration
curl --request POST \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/secret/regenerate \
--header 'Authorization: Basic <encoded-value>'{
"signingSecret": "e5f6g7h8...new_signing_secret_hex",
"regeneratedAt": "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 for the specified project’s integration. The previous secret is invalidated immediately at the time of regeneration.
POST https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}/secret/regenerate
x-api-key header with your Jelou project API key.
x-api-key: API_KEY
PROJECT_ID. No request body is sent:
curl --request POST \
--url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID/secret/regenerate \
--header 'x-api-key: API_KEY'
| Code | Status | Description |
|---|---|---|
| 200 | OK | Signing secret regenerated successfully. Includes the new signingSecret. |
| 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": [
"Signing secret regenerated successfully"
],
"statusMessage": "success",
"status": 1,
"data": {
"brainId": "PROJECT_ID",
"signingSecret": "SIGNING_SECRET"
}
}
signingSecret securely (environment variables, vault, etc.).Basic authentication using Base64 encoded clientId:clientSecret
Unique identifier of the Jelou project
Was this page helpful?