Appearance
!--methodPOST--!/getVehicleOptions ā
Get all available options for the specific vehicle.
Partner APIGlass's GuideVehicle
š Authentication ā
- Bearer Token - Your API token
š Content-Type ā
Request | application/json |
Response | application/json |
š¦ Request Body ā
source_code RequiredVehicle's
string
source_code
with_price OptionalBy default this endpoint does not return price for options, in favour of the Get vehicle option's price endpoint.
Include it if you want to get the price for each option
boolean
Include it if you want to get the price for each option
ā¹ļø Examples ā
Request
json
{
"source_code": "TGO15J"
}
json
{
"source_code": "TGO15J",
"with_price": true
}
Response
json
{
"data": [
{
"source_code": "DABR",
"description": "Digital Audio Broadcast Radio"
},
{
"source_code": "EDL",
"description": "Electronic Differential Lock"
},
{
"source_code": "HFS",
"description": "Heated Front Seats"
},
{
"source_code": "MPS",
"description": "Metallic Paint Special"
},
{
"source_code": "RPG",
"description": "Rear Privacy Glass"
},
{
"source_code": "AW20",
"description": "20 Inch Alloy Wheels"
},
{
"source_code": "DES1",
"description": "Design Pack 1 (AW19)"
},
{
"source_code": "DES2",
"description": "Design Pack 2 (AW20)"
},
{
"source_code": "KED",
"description": "Keyless Entry & Drive"
},
{
"source_code": "LT1",
"description": "Leather Trim Special"
},
{
"source_code": "PSR",
"description": "Power Sunroof"
},
{
"source_code": "RSEP",
"description": "Rear Seat Enhancement Pack"
},
{
"source_code": "SSP",
"description": "Premium Sound System"
},
{
"source_code": "TPMS",
"description": "Tyre Pressure Monitoring System"
},
{
"source_code": "TV",
"description": "Television"
},
{
"source_code": "MP",
"description": "Metallic Paint"
}
]
}
json
{
"data": [
{
"source_code": "DABR",
"description": "Digital Audio Broadcast Radio",
"new_price": "850.00",
"retail_price": "0.00"
},
{
"source_code": "EDL",
"description": "Electronic Differential Lock",
"new_price": "1060.00",
"retail_price": "0.00"
},
{
"source_code": "HFS",
"description": "Heated Front Seats",
"new_price": "2250.00",
"retail_price": "0.00"
},
{
"source_code": "MPS",
"description": "Metallic Paint Special",
"new_price": "3600.00",
"retail_price": "0.00"
},
{
"source_code": "RPG",
"description": "Rear Privacy Glass",
"new_price": "1100.00",
"retail_price": "0.00"
},
{
"source_code": "AW20",
"description": "20 Inch Alloy Wheels",
"new_price": "2860.00",
"retail_price": "300.00"
},
{
"source_code": "DES1",
"description": "Design Pack 1 (AW19)",
"new_price": "3050.00",
"retail_price": "400.00"
},
{
"source_code": "DES2",
"description": "Design Pack 2 (AW20)",
"new_price": "5170.00",
"retail_price": "400.00"
},
{
"source_code": "KED",
"description": "Keyless Entry & Drive",
"new_price": "2100.00",
"retail_price": "0.00"
},
{
"source_code": "LT1",
"description": "Leather Trim Special",
"new_price": "2965.00",
"retail_price": "200.00"
},
{
"source_code": "PSR",
"description": "Power Sunroof",
"new_price": "3860.00",
"retail_price": "200.00"
},
{
"source_code": "RSEP",
"description": "Rear Seat Enhancement Pack",
"new_price": "4100.00",
"retail_price": "0.00"
},
{
"source_code": "SSP",
"description": "Premium Sound System",
"new_price": "2060.00",
"retail_price": "0.00"
},
{
"source_code": "TPMS",
"description": "Tyre Pressure Monitoring System",
"new_price": "1310.00",
"retail_price": "0.00"
},
{
"source_code": "TV",
"description": "Television",
"new_price": "1580.00",
"retail_price": "200.00"
},
{
"source_code": "MP",
"description": "Metallic Paint",
"new_price": "1800.00",
"retail_price": "0.00"
}
]
}
json
{
"message": "Unauthenticated."
}