GET api/van/{constructiondate}/makes

All van makes available on constructiondate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
constructiondate

Constructiondate in format yyyy or yyyyMM or yyyyMMdd

integer

Required

Body Parameters

None.

Response Information

Resource Description

Van makes

Collection of Kooijmans.Vehicle.Make
NameDescriptionTypeAdditional 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-04-22T08:54:19.1102075+00:00",
    "ValidThrough": "2025-04-22T08:54:19.1102075+00:00"
  },
  {
    "MakeID": 1,
    "BrandName": "sample string 2",
    "BrandLogo": "sample string 3",
    "ValidFrom": "2025-04-22T08:54:19.1102075+00:00",
    "ValidThrough": "2025-04-22T08:54:19.1102075+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-04-22T08:54:19.1102075+00:00</ValidFrom>
    <ValidThrough>2025-04-22T08:54:19.1102075+00:00</ValidThrough>
  </Make>
  <Make>
    <BrandLogo>sample string 3</BrandLogo>
    <BrandName>sample string 2</BrandName>
    <MakeID>1</MakeID>
    <ValidFrom>2025-04-22T08:54:19.1102075+00:00</ValidFrom>
    <ValidThrough>2025-04-22T08:54:19.1102075+00:00</ValidThrough>
  </Make>
</ArrayOfMake>