webhooks
Delete Webhook Subscription
Permanently delete a webhook subscription.
Requires the webhooks:write scope on the API key.
DELETE
Delete Webhook Subscription
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete a webhook subscription.
Requires the webhooks:write scope on the API key.
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.topo.io/v1/webhooks/{subscription_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Was this page helpful?
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.topo.io/v1/webhooks/{subscription_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));