GET api/customer/application/vehicle?id={id}

Gets display vehicle.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ERP.Api.Models.CustomerPortal.DisplayVehicleModel
NameDescriptionTypeAdditional information
Make

Gets or sets the make.

string

None.

Model

Gets or sets the model.

string

None.

Variant

Gets or sets the variant.

string

None.

Registration

Gets or sets the reg.

string

None.

RegistrationYear

Gets or sets the reg year.

integer

None.

QuotedPrice

Gets or sets the quoted price.

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "make": "sample string 1",
  "model": "sample string 2",
  "variant": "sample string 3",
  "registration": "sample string 4",
  "registrationYear": 5,
  "quotedPrice": 6.0
}

application/xml, text/xml

Sample:
<DisplayVehicleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP.Api.Models.CustomerPortal">
  <Make>sample string 1</Make>
  <Model>sample string 2</Model>
  <QuotedPrice>6</QuotedPrice>
  <Registration>sample string 4</Registration>
  <RegistrationYear>5</RegistrationYear>
  <Variant>sample string 3</Variant>
</DisplayVehicleModel>