Delete a subscription

DELETE /subscriptions/{id}

Remove a subscription and stop delivering events to its target URL.

Path parameters

  • id string(uuid) Required

    Subscription ID (UUID)

Responses

  • 204

    Subscription deleted successfully.

  • 404 application/json

    The requested resource was not found.

    Hide response attribute Show response attribute object
    • error string
  • 500 application/json

    An unexpected error occurred on the server.

    Hide response attribute Show response attribute object
    • error string
DELETE /subscriptions/{id}
curl \
 --request DELETE 'http://localhost:8080/subscriptions/{id}'
Response examples (404)
{
  "error": "string"
}
Response examples (500)
{
  "error": "string"
}