delete contact
DELETE
/dealerships/{dealership_slug}/contacts/{contact_id}
const url = 'https://dashboard.dealerstudio.com.au/dealerships/example/contacts/example';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://dashboard.dealerstudio.com.au/dealerships/example/contacts/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” dealership_slug
required
string
Dealership Slug
contact_id
required
string
Contact ID
Responses
Section titled “ Responses ”Contact deleted