accounts
Delete Account Exclusion
Permanently delete an account-level exclusion.
Requires the exclusions:write scope on the API key.
DELETE
Delete Account Exclusion
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete an account-level exclusion.
Requires the exclusions:write scope on the API key.
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.topo.io/v1/account-exclusions/{exclusion_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/account-exclusions/{exclusion_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));