Skip to main content
DELETE
/
v1
/
external-support
/
{projectId}
Delete Integration
curl --request DELETE \
  --url https://gateway.jelou.ai/jelouapi/v1/external-support/{projectId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "message": [
    "Integration deleted successfully."
  ],
  "statusMessage": "success",
  "status": 1
}

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.

This action is irreversible. Deleting the integration will cause Jelou to stop sending events to your webhook. To integrate again, you will need to create a new integration.

Description

Deletes the integration between Jelou and your external support panel for the specified project. Once deleted, Jelou will stop sending events to the configured webhook.

Endpoint

DELETE 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 delete.

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 deletes the integration for project PROJECT_ID. No request body is sent:
cURL
curl --request DELETE \
  --url https://gateway.jelou.ai/jelouapi/v1/external-support/PROJECT_ID \
  --header 'x-api-key: API_KEY'

Responses

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

Response example

{
  "message": [
    "Integration deleted successfully"
  ],
  "statusMessage": "success",
  "status": 1
}

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 deleted successfully

message
string[]
Example:
["Integration deleted successfully."]
statusMessage
string
Example:

"success"

status
integer
Example:

1