Endpoints · Webhooks
Re-enable a webhook
POST
https://api.tickerbot.io/ v2/ webhooks/ {id}/ enableRe-enable a disabled webhook and start it clean.
Body parameters
stringrequiredWebhook id.
Status codes
200The updated webhook (now
active).400Malformed webhook id.
403webhook_over_limit — the account holds more webhooks than the plan allows (typically after a downgrade; on Free, any webhook is over the cap). Delete webhooks until you're within the limit, or upgrade.404Webhook not found.
Notes
- Flips the webhook back to
activeand clears its match-state cache, so the next eval treats every currently-matching ticker as new and fires a singlewebhook.fired. Use it after fixing whatever caused the auto-disable. - To validate your receiver before real fires reach it, call
POST /v2/webhooks/{id}/testfirst. - Calling enable on an already-active webhook is a no-op — returns the current record unchanged.
- Re-enable clears
last_match_setandlast_evaluated_atso the next eval treats every currently-matching ticker as new and fires a singlewebhook.fired. To validate the receiver before resuming real fires, callPOST /v2/webhooks/{id}/test.