GET api/van/fueltypes

All Van fueltypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Kooijmans.Vehicle.RollsFuelType
NameDescriptionTypeAdditional information
FuelTypeID

FueltypeID following SIVI ADNBRS ID's (sivi.org).

string

None.

FuelTypeDescription

FuelTypeDescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FuelTypeID": "sample string 1",
    "FuelTypeDescription": "sample string 2"
  },
  {
    "FuelTypeID": "sample string 1",
    "FuelTypeDescription": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRollsFuelType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <RollsFuelType>
    <FuelTypeID>sample string 1</FuelTypeID>
    <FuelTypeDescription>sample string 2</FuelTypeDescription>
  </RollsFuelType>
  <RollsFuelType>
    <FuelTypeID>sample string 1</FuelTypeID>
    <FuelTypeDescription>sample string 2</FuelTypeDescription>
  </RollsFuelType>
</ArrayOfRollsFuelType>