POST api/LogV2/ReadTrack

查询轨迹

Request Information

URI Parameters

None.

Body Parameters

M_ReadChatV2
NameDescriptionTypeAdditional information
type

类型 0=设备,1=用户

integer

Required

sn

sn orderEM.sn

integer

None.

id

id编号 imei:type==0, phone:type=1

string

Required

tb

报警时间

string

Required

te

结束时间

string

Required

Request Formats

application/json, text/json

Sample:
{
  "type": 1,
  "sn": 2,
  "id": "sample string 3",
  "tb": "sample string 4",
  "te": "sample string 5"
}

application/xml, text/xml

Sample:
<M_ReadChatV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DP.Models">
  <id>sample string 3</id>
  <sn>2</sn>
  <tb>sample string 4</tb>
  <te>sample string 5</te>
  <type>1</type>
</M_ReadChatV2>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

M_rpLogV2
NameDescriptionTypeAdditional information
Contant

内容

Collection of M_LogV2

Required

Status

状态

integer

Required

Msg

信息

string

Required

Num

数值,数据变动条数或增加时返回的ID

integer

Required

Response Formats

application/json, text/json

Sample:
{
  "Contant": null,
  "Status": 1,
  "Msg": "sample string 2",
  "Num": 3
}

application/xml, text/xml

Sample:
<M_rpLogV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DP.Models">
  <Msg>sample string 2</Msg>
  <Num>3</Num>
  <Status>1</Status>
  <Contant i:nil="true" />
</M_rpLogV2>