GET api/Car/GetManufacturerModels?manufacturerId={manufacturerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
manufacturerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of piLookupModelOfInt32
NameDescriptionTypeAdditional information
value

integer

None.

text

string

None.

group

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "value": 1,
    "text": "sample string 2",
    "group": "sample string 3"
  },
  {
    "value": 1,
    "text": "sample string 2",
    "group": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfpiLookupModelOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models.Pesquisa">
  <piLookupModelOfint>
    <group>sample string 3</group>
    <text>sample string 2</text>
    <value>1</value>
  </piLookupModelOfint>
  <piLookupModelOfint>
    <group>sample string 3</group>
    <text>sample string 2</text>
    <value>1</value>
  </piLookupModelOfint>
</ArrayOfpiLookupModelOfint>