POST api/Mobile/GetVehicle

Request Information

URI Parameters

None.

Body Parameters

GetVehicleInfo
NameDescriptionTypeAdditional information
app_key

string

None.

token

string

None.

user_id

string

None.

vin

string

None.

Request Formats

application/json, text/json

Sample:
{
  "app_key": "sample string 1",
  "token": "sample string 2",
  "user_id": "sample string 3",
  "vin": "sample string 4"
}

application/xml, text/xml

Sample:
<GetVehicleInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices.Controllers">
  <app_key>sample string 1</app_key>
  <token>sample string 2</token>
  <user_id>sample string 3</user_id>
  <vin>sample string 4</vin>
</GetVehicleInfo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetVehicleInfo'.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

integer

None.

Message

string

None.

Response

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Message": "sample string 2",
  "Response": "sample string 3"
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices">
  <Message>sample string 2</Message>
  <Response>sample string 3</Response>
  <Status>1</Status>
</Result>