Skip to content

查询安消设备基础信息

接口功能

查询设备基础信息

请求地址

https://open.andmu.cn/v3/open/api/device/base/info

请求方式

POST,需要鉴权

请求参数

参数名称参数类型是否必需参数含义说明
deviceIdStringY设备编码安消设备的编码为 IMEI

请求示例

{
    "deviceId": "1212121212121212"
}

响应参数

参数名称参数类型参数含义说明
deviceIdString设备编码
deviceNameString设备名称
storeIdString节点 ID
storeNameString节点名称
deviceModelInteger设备型号
classificationTypeInteger设备分类1 消防设备
2 传感器设备
3 视频设备
4 通用设备 (本版本仅涉及消防设备)
deviceTypeInteger设备类型1 烟感设备
2 可燃气体
3 视频设备
4 温湿度设备
5 温感设备
6 水感设备
7 手报设备
8 门磁设备
9 用电设备
10 用水设备
11 用传设备
12 主机设备
13 安防设备
14 广播设备
netTypeInteger联网类型1-NB
2-2G/4G
3-MQTT
4-WIFI
5-有线
deviceCompanyInteger设备厂商
systemAddressString系统地址仅限传感器设备、json 格式字符串 例: { "system_address":"2222", "system_type":"111", "component_address":"23333", "component_type":"444" }
loopString回路仅限传感器设备
nodeString节点仅限传感器设备
parentDeviceIdString父级设备编码仅限传感器设备
deviceConnectStatusInteger设备连接状态正常:1
故障:0
onlineStatusInteger在线状态在线:1
离线:0
未注册:2
deviceLocationString设备详细位置
deviceLongitudeString设备经度百度地图
deviceLatitudeString设备纬度百度地图
iccIdString设备关联物联卡卡号
deviceProvinceString设备位置所属省份编码
deviceCityString设备位置所属地市编码
deviceDistrictString设备位置所属区县编码

响应示例

{
    "resultCode": "000000",
    "resultMsg": "成功",
    "data": {
        "deviceId": "1212121212121212",
        "deviceName":"testDevice",
        "storeId": "1003170964989689900",
        "storeName": "test",
        "deviceModel": "cmiot_s4706_001",
        "classificationType":1,
        "deviceType": 1,
        "netType":1,
        "deviceCompany": 23,
        "deviceConnectStatus":1,
        "onlineStatus":1,
        "deviceLocation":"重庆市渝北区",
        "deviceLongitude":"108",
        "deviceLatitude":"43.5",
        "deviceProvince":"351",
        "deviceCity":"140100",
        "deviceDistrict":"140107"
    }
}