Appearance
回调地址查询
监控设备回调地址查询
ts
GET http://www.bisen-iot.com/api/callback/deviceCallback/findCallbackByType/appId/{appId}/type/{type}
备注
- type字段为设备回调类型,监控设备参数固定为:ipc 不可为空
- 回调格式:ContentType:application/json
- 若应用为下线状态则不可执行此操作
请求数据
header域
| 名称 | 类型 | 可空 | 默认 | 描述 |
|---|---|---|---|---|
| Authorization | String | N | 调用鉴权接口获取(拼接前缀:Bearer+空格) | |
| Content-Type | String | N | application/json | 指定请求的媒体类型 |
Path域
| 名称 | 类型 | 可空 | 默认 | 描述 |
|---|---|---|---|---|
| appId | String | N | 应用Id | |
| type | String | N | 回调类型 |
返回数据
200 返回样式
ts
{
"code": 0,
"msg": "success",
"data": [
{
"callbackName": "设备报警回调",
"cbType": 24,
"callbackUrl": null,
"appId": "6D9BF9396F0C4D8C90AF26915CBB96C2",
"updateTime": null
}
]
}