- Developers
- API Reference
- Webhooks
Manage Webhook
Get, update, or delete a webhook subscription
GET
https://app.ranked.ai/api/v1/webhooks/{webhookId}GET - Get subscription details
webhookIdstringrequiredWebhook subscription UUID
Request
curl "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_api_key"PATCH - Update subscription
Requires a Read + Write API key.
namestringbodyUpdated display name
urlstringbodyUpdated webhook URL (must be HTTPS)
eventsstring[]bodyUpdated event list
is_activebooleanbodyEnable or disable the subscription
Request
curl -X PATCH "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_write_key" \
-H "Content-Type: application/json" \
-d '{ "is_active": false }'DELETE - Delete subscription
Requires a Read + Write API key.
Request
curl -X DELETE "https://app.ranked.ai/api/v1/webhooks/{webhookId}" \
-H "Authorization: Bearer rk_live_your_write_key"This page is also available as markdown for AI agents, and the whole reference as an OpenAPI spec. Questions? Developer support.