GET api/motorcycle/{constructiondate}/makes
All motorcycle makes available on constructiondate
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| constructiondate |
Constructiondate in format yyyy or yyyyMM or yyyyMMdd |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Motorcycle makes
Collection of Kooijmans.Vehicle.Make| Name | Description | Type | Additional information |
|---|---|---|---|
| MakeID |
Autotelex MakeID (unique over all vehicletypes) |
integer |
None. |
| BrandName |
Brand name |
string |
None. |
| BrandLogo |
Imagefile for brandlogo |
string |
None. |
| ValidFrom |
Date from which this brand is available on Dutch market |
date |
None. |
| ValidThrough |
Date untill which this brand is available on Dutch market |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MakeID": 1,
"BrandName": "sample string 2",
"BrandLogo": "sample string 3",
"ValidFrom": "2025-11-17T12:34:25.2568299+00:00",
"ValidThrough": "2025-11-17T12:34:25.2568299+00:00"
},
{
"MakeID": 1,
"BrandName": "sample string 2",
"BrandLogo": "sample string 3",
"ValidFrom": "2025-11-17T12:34:25.2568299+00:00",
"ValidThrough": "2025-11-17T12:34:25.2568299+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMake xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.kooijmans.nl/vehicledata">
<Make>
<BrandLogo>sample string 3</BrandLogo>
<BrandName>sample string 2</BrandName>
<MakeID>1</MakeID>
<ValidFrom>2025-11-17T12:34:25.2568299+00:00</ValidFrom>
<ValidThrough>2025-11-17T12:34:25.2568299+00:00</ValidThrough>
</Make>
<Make>
<BrandLogo>sample string 3</BrandLogo>
<BrandName>sample string 2</BrandName>
<MakeID>1</MakeID>
<ValidFrom>2025-11-17T12:34:25.2568299+00:00</ValidFrom>
<ValidThrough>2025-11-17T12:34:25.2568299+00:00</ValidThrough>
</Make>
</ArrayOfMake>