Skip to main content
DELETE
/
v1
/
contact-exclusions
/
{exclusion_id}
Delete Contact Exclusion
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.topo.io/v1/contact-exclusions/{exclusion_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Authorizations

Authorization
string
header
required

Bearer API key issued from Settings → Developers.

Path Parameters

exclusion_id
string<uuid>
required

ID of the exclusion.

Response

204

Successful Response