Skip to main content

Delete Integration

Overview

Soft-deletes an integration. The integration will no longer be usable for API authentication.

Endpoint: DELETE /api/v1/integrations/{id}

Authentication: Bearer token (JWT) required.


Request

Headers

HeaderRequiredDescription
AuthorizationYesBearer <your_jwt_token>

Path Parameters

ParameterTypeRequiredDescription
idstringYesIntegration UUID

Response

Success — 204 No Content

No response body. The integration was deleted successfully.


Error Responses

StatusDescription
400Invalid request (validation error)
401Unauthorized (missing or invalid token)
404Integration not found
500Internal server error

cURL Example

curl -X DELETE https://api.example.com/api/v1/integrations/550e8400-e29b-41d4-a716-446655440001 \
-H "Authorization: Bearer YOUR_JWT_TOKEN"