GET api/motorcycle/{constructiondate}/makes/{makeid}/models
All models of a specific motorcycle make
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
constructiondate |
Constructiondate in format yyyy or yyyyMM or yyyyMMdd |
integer |
Required |
makeid |
MakeID you want models of |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Kooijmans.Vehicle.ModelName | Description | Type | Additional information |
---|---|---|---|
ModelID |
Autotelex ModelID |
integer |
None. |
MakeID |
Autotelex MakeID |
integer |
None. |
ModelName |
Modename |
string |
None. |
ValidFrom |
Date from which this model was availabe on the Dutch market |
date |
None. |
ValidThrough |
Date until which this model is/was availabe on the Dutch market |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ModelID": 1, "MakeID": 2, "ModelName": "sample string 4", "ValidFrom": "2025-04-22T03:27:49.9073778+00:00", "ValidThrough": "2025-04-22T03:27:49.9073778+00:00" }, { "ModelID": 1, "MakeID": 2, "ModelName": "sample string 4", "ValidFrom": "2025-04-22T03:27:49.9073778+00:00", "ValidThrough": "2025-04-22T03:27:49.9073778+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.kooijmans.nl/vehicledata"> <Model> <MakeID>2</MakeID> <ModelID>1</ModelID> <ModelName>sample string 4</ModelName> <ValidFrom>2025-04-22T03:27:49.9073778+00:00</ValidFrom> <ValidThrough>2025-04-22T03:27:49.9073778+00:00</ValidThrough> </Model> <Model> <MakeID>2</MakeID> <ModelID>1</ModelID> <ModelName>sample string 4</ModelName> <ValidFrom>2025-04-22T03:27:49.9073778+00:00</ValidFrom> <ValidThrough>2025-04-22T03:27:49.9073778+00:00</ValidThrough> </Model> </ArrayOfModel>