POST api/CarCheck/CarCheckInfo

车辆年审信息

Request Information

Body Parameters

获取车辆年审信息参数

CarCheckInfoModel
NameDescriptionTypeAdditional information
DeviceId

设备 id

integer

None.

Token

登录后获取到的 Token

string

None.

Language

语言选项

string

None.

AppId

APP应用标识

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DeviceId": 1,
  "Token": "sample string 2",
  "Language": "sample string 3",
  "AppId": "sample string 4"
}

application/xml, text/xml

Sample:
<CarCheckInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ParModel">
  <AppId>sample string 4</AppId>
  <Language>sample string 3</Language>
  <Token>sample string 2</Token>
  <DeviceId>1</DeviceId>
</CarCheckInfoModel>

Response Information

Resource Description

State 值为:
0. 为成功
100. 为无记录

CarCheckInfoResult
NameDescriptionTypeAdditional information
Item

CarCheckInfo

None.

Message

string

None.

State

状态码

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Item": {
    "DeviceID": 1,
    "Expired": "sample string 2",
    "Id": 3,
    "Updated": "sample string 4"
  },
  "Message": "sample string 1",
  "State": 2
}

application/xml, text/xml

Sample:
<CarCheckInfoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ResModel">
  <State>2</State>
  <Item xmlns:d2p1="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ViewModel">
    <d2p1:DeviceID>1</d2p1:DeviceID>
    <d2p1:Expired>sample string 2</d2p1:Expired>
    <d2p1:Id>3</d2p1:Id>
    <d2p1:Updated>sample string 4</d2p1:Updated>
  </Item>
  <Message>sample string 1</Message>
</CarCheckInfoResult>