Delete a webhook

DELETE/api/v1/webhooks/:id

Removes the endpoint. Deliveries stop immediately.

Request

Path parameters

idstring

Webhook id.

Response

Returns a JSON object with a data field containing the result.

Response fields

deletedboolean

Always true on success.

idstring

The deleted webhook id.

curl -X DELETE https://redship.io/api/v1/webhooks/8d1f… \
-H "Authorization: Bearer rsp_your_key"
Success response200
{ "deleted": true, "id": "8d1f…" }