GET api/moped/afd/{constructiondate}/makes/{makeid}/models
All models of a specific moped make in Afd Format
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| constructiondate |
Constructiondate in format yyyy or yyyyMM or yyyyMMdd |
integer |
Required |
| makeid |
The makeID you want the models of |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Kooijmans.Vehicle.VehicleAfdModel.VehicleMopedAfdModel+AL| Name | Description | Type | Additional information |
|---|---|---|---|
| BF |
Afd Collection of models |
Collection of Kooijmans.Vehicle.VehicleAfdModel.VehicleMopedAfdModel+ALBFMODEL |
None. |
Response Formats
application/json, text/json
Sample:
{
"BF": [
{
"BF_VOLGNUM": 64,
"BF_MERKID": 2,
"BF_MERK": "sample string 3",
"BF_MODELID": 4,
"BF_MODEL": "sample string 5"
},
{
"BF_VOLGNUM": 64,
"BF_MERKID": 2,
"BF_MERK": "sample string 3",
"BF_MODELID": 4,
"BF_MODEL": "sample string 5"
}
]
}
application/xml, text/xml
Sample:
<AL xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<BF>
<BF_VOLGNUM>64</BF_VOLGNUM>
<BF_MERKID>2</BF_MERKID>
<BF_MERK>sample string 3</BF_MERK>
<BF_MODELID>4</BF_MODELID>
<BF_MODEL>sample string 5</BF_MODEL>
</BF>
<BF>
<BF_VOLGNUM>64</BF_VOLGNUM>
<BF_MERKID>2</BF_MERKID>
<BF_MERK>sample string 3</BF_MERK>
<BF_MODELID>4</BF_MODELID>
<BF_MODEL>sample string 5</BF_MODEL>
</BF>
</AL>