GET api/Vehicle/GetVehicleTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VehicleType| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleTypeId | integer |
None. |
|
| VehicleTypes | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"vehicleTypeId": 1,
"vehicleTypes": "sample string 1"
},
{
"vehicleTypeId": 1,
"vehicleTypes": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfVehicleType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VehicleType>
<VehicleTypeId>1</VehicleTypeId>
<VehicleTypes>sample string 1</VehicleTypes>
</VehicleType>
<VehicleType>
<VehicleTypeId>1</VehicleTypeId>
<VehicleTypes>sample string 1</VehicleTypes>
</VehicleType>
</ArrayOfVehicleType>