Delete Contact Set
DELETE
/me/contact-set
const url = 'https://example.com/me/contact-set';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/me/contact-set \ --header 'Authorization: Bearer <token>'Unpublish: removes every contact-set version and every pair, so the user is no longer matched until they publish again.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response