POST quoteresources/vehiclebrand/model

Brand's Model List

Request Information

URI Parameters

None.

Body Parameters

Lluni.Models.Common.Global.Quote.SIM.VehicleModelRequest
NameDescriptionTypeAdditional information
ConfigurationCodes

Collection of integer

Required

BrandVehicle

string

Required

VehicleTypeCode

integer

None.

FuelCode

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ConfigurationCodes": [
    1,
    2
  ],
  "BrandVehicle": "sample string 1",
  "VehicleTypeCode": 1,
  "FuelCode": 1
}

application/xml, text/xml

Sample:
<VehicleModelRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Quote.SIM">
  <BrandVehicle>sample string 1</BrandVehicle>
  <ConfigurationCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ConfigurationCodes>
  <FuelCode>1</FuelCode>
  <VehicleTypeCode>1</VehicleTypeCode>
</VehicleModelRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of string

Response Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>