GET api/Inventory/GetVehicleFlagColor?VehicleID={VehicleID}
Gets single vehicle flag color.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
VehicleFlagColor| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleID | integer |
None. |
|
| Memo | string |
None. |
|
| ApplyCode | boolean |
None. |
|
| ColorCodeFlag | enumFlagType |
None. |
|
| ColorCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"VehicleID": 1,
"Memo": "sample string 2",
"ApplyCode": false,
"ColorCodeFlag": 0,
"ColorCode": null
}
application/xml, text/xml
Sample:
<VehicleFlagColor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model"> <ColorCode i:nil="true" /> <ColorCodeFlag>Ready</ColorCodeFlag> <Memo>sample string 2</Memo> <VehicleID>1</VehicleID> </VehicleFlagColor>