GET api/Inventory/GetVehicleChromeOptionalPackage?VehicleID={VehicleID}
Gets single vehicle chrome optional package.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
VehicleID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ChromeOptionName | Description | Type | Additional information |
---|---|---|---|
MSRHigh | decimal number |
None. |
|
Category | string |
None. |
|
ItemID | integer |
None. |
|
Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "MSRHigh": 1.0, "Category": "sample string 1", "ItemID": 2, "Description": "sample string 3" }, { "MSRHigh": 1.0, "Category": "sample string 1", "ItemID": 2, "Description": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfChromeOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model"> <ChromeOption> <Description>sample string 3</Description> <ItemID>2</ItemID> <Category>sample string 1</Category> <MSRHigh>1</MSRHigh> </ChromeOption> <ChromeOption> <Description>sample string 3</Description> <ItemID>2</ItemID> <Category>sample string 1</Category> <MSRHigh>1</MSRHigh> </ChromeOption> </ArrayOfChromeOption>