Delete a webhook
DELETE
/api/v1/webhooks/:idRemoves the endpoint. Deliveries stop immediately.
Request
Path parameters
idstringWebhook id.
Response
Returns a JSON object with a data field containing the result.
Response fields
deletedbooleanAlways true on success.
idstringThe 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…" }