GET api/passengercar/makes

All passengercar makes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Passengercar 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-29T10:52:57.2021159+00:00",
    "ValidThrough": "2025-04-29T10:52:57.2021159+00:00"
  },
  {
    "MakeID": 1,
    "BrandName": "sample string 2",
    "BrandLogo": "sample string 3",
    "ValidFrom": "2025-04-29T10:52:57.2021159+00:00",
    "ValidThrough": "2025-04-29T10:52:57.2021159+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-29T10:52:57.2021159+00:00</ValidFrom>
    <ValidThrough>2025-04-29T10:52:57.2021159+00:00</ValidThrough>
  </Make>
  <Make>
    <BrandLogo>sample string 3</BrandLogo>
    <BrandName>sample string 2</BrandName>
    <MakeID>1</MakeID>
    <ValidFrom>2025-04-29T10:52:57.2021159+00:00</ValidFrom>
    <ValidThrough>2025-04-29T10:52:57.2021159+00:00</ValidThrough>
  </Make>
</ArrayOfMake>