API ReferenceServices & Catalog
Delete Service
Remove a service and all its subscriptions.
Delete Service
Permanently remove a service you own. All subscriptions to this service are also deleted.
Authentication
Requires X-API-Key header. Only the service owner can delete.
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Service UUID |
Request
curl -X DELETE http://localhost:4000/v1/services/SERVICE_ID \
-H "X-API-Key: ak_your_key"Response (200)
{
"deleted": true,
"id": "service-uuid"
}Errors
| Status | Code | Description |
|---|---|---|
| 404 | NOT_FOUND | Service not found or you are not the owner |