Endpoints · Webhooks
Delete a webhook
DELETE
https://api.tickerbot.io/ v2/ webhooks/ {id}Delete a webhook subscription, and its delivery history with it.
Body parameters
stringrequiredWebhook id.
Status codes
204Deleted.
400Invalid webhook id format.
404Webhook not found, or owned by another account.
Notes
- A hard cascade: the webhook's entire delivery history goes with it, including queued-but-undelivered deliveries — nothing enqueued fires after the delete.
- To pause rather than delete, stop accepting deliveries at your target. After enough consecutive failures the subscription flips to
disabled, and you can re-enable it later viaPOST /v2/webhooks/{id}/enable.