Delete a scheduled webhook

DELETE /scheduled/{id}

Remove a scheduled webhook by its ID.

Path parameters

  • id string Required

    Scheduled webhook ID

Responses

  • 204

    Scheduled webhook 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 /scheduled/{id}
curl \
 --request DELETE 'http://localhost:8080/scheduled/{id}'
Response examples (404)
{
  "error": "string"
}
Response examples (500)
{
  "error": "string"
}