Show Lead Cluster
GET
/api/v1/dealerships/{dealership_slug}/lead_clusters/{id}
const url = 'https://dashboard.dealerstudio.com.au/api/v1/dealerships/example/lead_clusters/example';const options = {method: 'GET', 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 GET \ --url https://dashboard.dealerstudio.com.au/api/v1/dealerships/example/lead_clusters/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
id
required
string
Lead Cluster ID
Responses
Section titled “ Responses ”Successful
Unauthorized with incorrect permissions
Not found when lead cluster belongs to another dealership