Delete Account Exclusion
Permanently delete an account-level exclusion.
Requires the account_exclusions:write scope on the API key.
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 account_exclusions:write scope on the API key.
curl --request DELETE \
--url https://api.topo.io/v1/account-exclusions/{exclusion_id} \
--header 'Authorization: Bearer <token>'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));import requests
url = "https://api.topo.io/v1/account-exclusions/{exclusion_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)Was this page helpful?
curl --request DELETE \
--url https://api.topo.io/v1/account-exclusions/{exclusion_id} \
--header 'Authorization: Bearer <token>'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));import requests
url = "https://api.topo.io/v1/account-exclusions/{exclusion_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)