GET api/passengercar/{constructiondate}/models/{modelid}/fueltypes
All fueltypes for a specific passengercar model
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| constructiondate |
Constructiondate in format yyyy or yyyyMM or yyyyMMdd |
integer |
Required |
| modelid |
modelid of requested model |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Kooijmans.Vehicle.RollsFuelType| Name | Description | Type | Additional 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>