概述
此接口用于查看基站数据
接口请求地址
请求方法
GET
请求参数
名称 |
类型 |
必填 |
描述 |
access_token或user_access_token |
字符 |
是 |
账户的access_token密钥,与user_access_token(string)二选一 |
返回说明
返回一个JSON对象,其中”code”为”0″即成功。”data”为全部基站数据。
返回示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
{ "code": 0, "msg": "Successful operation", "msg_en": "Successful operation", "data": [ { "id": 3, "belongszone": 1, "subroom": "", "main_anchor": "9958", "serialnumber": "a0a2", "x": -6.77143, "y": -4.07143, "z": 0, "ismain": 1, "ipaddr": "192.168.1.241", "macaddr":"00:80:e1:16:3d:26", "anchorsta": 0, "orientation": 0, "pdoa_o": 0, "range_o": 0, "ping": null, "anchortype": "1", "odserial": "", "atparam": 6, "nettype": 0, "devicetype": 0, "configparam": "", "deviation": 0, "assist3d": "", "equipmodel":"Ubitrack_A_v1.0.0", "create_time": "2022-02-07T01:53:39Z", "update_time": "2022-03-09T05:33:24Z", "achannel": 2, "aldelay": 16595.1, "aspwr": 0, "apwrval": "1f1f1f1f", "aspeed": 1, "arespslot": 4, "asyncperiod": 150, "arangeperiod": 10000, "acmled": 1, "afirmware": "V0.2.37", "areadtime": "2022-03-08T09:18:04Z", "awritetime": null, "name_zero": null, "name": "name***", "sort": 9, "is_online": 1 }, ...... ], "exe_time": "0.002053" } |