Skip to content

Show Contact

GET
/dealerships/{dealership_id}/contacts/{id}
curl --request GET \
--url https://dashboard.dealerstudio.com.au/dealerships/example/contacts/example \
--header 'Authorization: Bearer <token>'
dealership_id
required
string

Dealership ID

id
required
string

Contact ID

Show contact

Media type application/json
Examples
Example success
{
"id": 1,
"dealership_id": 1,
"first_name": "John",
"postcode": null,
"vehicles": [
{
"make": "Toyota",
"model": "Corolla",
"year": 2019,
"rego": "ABC123",
"id": 1
}
]
}