GET api/devicelist/get_beacon_history?imei={imei}
Request Information
URI Parameters
None.
Response Information
Resource Description
GeoBeaconListResult| Name | Description | Type | Additional information | 
|---|---|---|---|
| Result | 结果 | Collection of GeoBeaconDto | None. | 
| State | Status Code 0:Success 1:Fail | integer | None. | 
| Msg | Error Message | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Result": [
    {
      "Name": "sample string 1",
      "Mac": "sample string 2",
      "UpdateTime": "sample string 3"
    },
    {
      "Name": "sample string 1",
      "Mac": "sample string 2",
      "UpdateTime": "sample string 3"
    }
  ],
  "State": 1,
  "Msg": "sample string 2"
}
        application/xml, text/xml
            Sample:
<GeoBeaconListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.OpenApi.Models.ResponseModels">
  <Msg>sample string 2</Msg>
  <State>1</State>
  <Result>
    <GeoBeaconDto>
      <Mac>sample string 2</Mac>
      <Name>sample string 1</Name>
      <UpdateTime>sample string 3</UpdateTime>
    </GeoBeaconDto>
    <GeoBeaconDto>
      <Mac>sample string 2</Mac>
      <Name>sample string 1</Name>
      <UpdateTime>sample string 3</UpdateTime>
    </GeoBeaconDto>
  </Result>
</GeoBeaconListResult>