GET api/motorcycle/afd/{constructiondate}/makes/{makeid}/models

All models of a specific motorcycle make in Afd Format

Request Information

URI Parameters

NameDescriptionTypeAdditional information
constructiondate

Constructiondate in format yyyy or yyyyMM or yyyyMMdd

integer

Required

makeid

The makeID you want the models of

integer

Required

Body Parameters

None.

Response Information

Resource Description

Kooijmans.Vehicle.VehicleAfdModel.VehicleAfdModel+AL
NameDescriptionTypeAdditional information
OB

Afd Collection of models

Collection of Kooijmans.Vehicle.VehicleAfdModel.VehicleAfdModel+ALOBMODEL

None.

Response Formats

application/json, text/json

Sample:
{
  "OB": [
    {
      "OB_VOLGNUM": 64,
      "OB_OBJSRT": "sample string 2",
      "OB_MERKID": 3,
      "OB_MERK": "sample string 4",
      "OB_MODELID": 5,
      "OB_MODEL": "sample string 6"
    },
    {
      "OB_VOLGNUM": 64,
      "OB_OBJSRT": "sample string 2",
      "OB_MERKID": 3,
      "OB_MERK": "sample string 4",
      "OB_MODELID": 5,
      "OB_MODEL": "sample string 6"
    }
  ]
}

application/xml, text/xml

Sample:
<AL xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <OB>
    <OB_VOLGNUM>64</OB_VOLGNUM>
    <OB_OBJSRT>sample string 2</OB_OBJSRT>
    <OB_MERKID>3</OB_MERKID>
    <OB_MERK>sample string 4</OB_MERK>
    <OB_MODELID>5</OB_MODELID>
    <OB_MODEL>sample string 6</OB_MODEL>
  </OB>
  <OB>
    <OB_VOLGNUM>64</OB_VOLGNUM>
    <OB_OBJSRT>sample string 2</OB_OBJSRT>
    <OB_MERKID>3</OB_MERKID>
    <OB_MERK>sample string 4</OB_MERK>
    <OB_MODELID>5</OB_MODELID>
    <OB_MODEL>sample string 6</OB_MODEL>
  </OB>
</AL>