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
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <your_jwt_token> |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Integration UUID |
Response
Success — 204 No Content
No response body. The integration was deleted successfully.
Error Responses
| Status | Description |
|---|---|
400 | Invalid request (validation error) |
401 | Unauthorized (missing or invalid token) |
404 | Integration not found |
500 | Internal 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"