GET api/van/makes/{makeid}/models

All models of a specific van make whatever constructiondate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
makeid

The makeID you want the models of

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Kooijmans.Vehicle.Model
NameDescriptionTypeAdditional 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-23T01:44:45.7311353+00:00",
    "ValidThrough": "2025-04-23T01:44:45.7311353+00:00"
  },
  {
    "ModelID": 1,
    "MakeID": 2,
    "ModelName": "sample string 4",
    "ValidFrom": "2025-04-23T01:44:45.7311353+00:00",
    "ValidThrough": "2025-04-23T01:44:45.7311353+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-23T01:44:45.7311353+00:00</ValidFrom>
    <ValidThrough>2025-04-23T01:44:45.7311353+00:00</ValidThrough>
  </Model>
  <Model>
    <MakeID>2</MakeID>
    <ModelID>1</ModelID>
    <ModelName>sample string 4</ModelName>
    <ValidFrom>2025-04-23T01:44:45.7311353+00:00</ValidFrom>
    <ValidThrough>2025-04-23T01:44:45.7311353+00:00</ValidThrough>
  </Model>
</ArrayOfModel>