Skip to main content
GET
/
v1
/
external-support
/
{projectId}
Get Integration
curl --request GET \
  --url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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.

Description

Retrieves the current configuration of the integration associated with a Jelou project. Useful for verifying the integration status, confirming the active webhook URL, or auditing changes made without needing to modify the configuration.

Endpoint

GET https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId}

Path parameters

projectId
string
required
Unique identifier of the Jelou project whose integration you want to retrieve.

Authentication

All requests must include the x-api-key header with your Jelou project API key.
x-api-key: API_KEY

Request example

The following example retrieves the integration configured for project PROJECT_ID:
cURL
curl --request GET \
  --url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID \
  --header 'x-api-key: API_KEY'

Responses

CodeStatusDescription
200OKIntegration found. Returns the current configuration.
401UnauthorizedInvalid or missing authentication credentials.
404Not FoundNo integration exists for the specified projectId.
500Internal Server ErrorInternal server error.

Response example

{
  "message": [
    "Integration retrieved successfully"
  ],
  "statusMessage": "success",
  "status": 1,
  "data": {
    "brainId": "PROJECT_ID",
    "webhookUrl": "https://my-system.com/webhook/jelou",
    "createdAt": "2026-01-15T10:30:00.000Z",
    "updatedAt": "2026-01-20T14:45:00.000Z"
  }
}

Response structure

PropertyTypeDescription
brainIdstringUnique identifier of the Jelou project.
webhookUrlstringURL of the endpoint that receives Jelou events.
createdAtdateDate and time the integration was created.
updatedAtdateDate and time of the last update.

Authorizations

Authorization
string
header
required

Basic authentication using Base64 encoded clientId:clientSecret

Path Parameters

projectId
string
required

Unique identifier of the Jelou project

Response

Integration retrieved successfully

id
string
Example:

"INTEGRATION_ID"

brainId
string
Example:

"BRAIN_ID"

webhookUrl
string
Example:

"https://my-system.com/webhook/jelou"

authType
string
Example:

"bearer"

createdAt
string<date-time>
updatedAt
string<date-time>