Documentation Menu
Getting Started
Reference
Tools
Seller Schema
Complete field reference for the Seller (Customer) entity.
Based on the CSN-DTO Customer standard. The Seller object is included with each vehicle payload to identify the dealership.
Seller (Customer)
| Field | Type | Required | Description |
|---|---|---|---|
Identifier | GUID / string | Yes | Unique identifier for the dealership. We map this to the correct franchise and feed on our end |
Name | string | Yes | Business or dealership name |
Type | string | No | Dealer, Private, OEM |
LocationCode | string | No | Location identifier code |
LocationName | string | No | Location display name |
LocationId | number | No | Location numeric ID |
Logo | string | No | URL to dealership logo |
DealerLicenceNumber | string | No | e.g. LMCT number |
DealershipGroupNames | string[] | No | Parent dealer group names |
Addresses
Array of address objects for the dealership location:
| Field | Type | Description |
|---|---|---|
Line1 | string | Street address |
Line2 | string | Additional address line |
Suburb | string | Suburb or city |
State | string | State code, e.g. VIC, NSW |
Postcode | string | Postcode |
Country | string | Country name |
CountryCode | string | ISO two-char code, e.g. AU |
Latitude | number | GPS latitude |
Longitude | number | GPS longitude |
Contact
| Field | Type | Description |
|---|---|---|
Phone | string | Primary phone number |
OperatingHours[].Weekday | string | Day of week |
OperatingHours[].Status | string | Open or Closed |
OperatingHours[].Open | string | Opening time |
OperatingHours[].Close | string | Closing time |
Example
{
"Seller": {
"Identifier": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"Type": "Dealer",
"Name": "Metro Ford",
"LocationCode": "MF01",
"LocationName": "Metro Ford City",
"DealerLicenceNumber": "LMCT12345",
"DealershipGroupNames": ["Example Dealer Group"],
"Addresses": [{
"Line1": "100 Main Street",
"Suburb": "Richmond",
"State": "VIC",
"Postcode": "3121",
"Latitude": -37.8232,
"Longitude": 144.9876
}],
"Contact": {
"Phone": "03 9000 0000",
"OperatingHours": [
{ "Weekday": "Monday", "Status": "Open", "Open": "8:30am", "Close": "5:30pm" },
{ "Weekday": "Saturday", "Status": "Open", "Open": "9:00am", "Close": "1:00pm" },
{ "Weekday": "Sunday", "Status": "Closed" }
]
}
}
}
Mapping setup
Before sending production data, contact support with your Seller.Identifier values for each dealership location. See Seller Mapping for details.