重置设备激活码
重置设备激活码
1. 接口描述
接口名称:
/confopenapi/room/device/activeCode/reset
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
deviceId | 是 | int | 设备ID |
3. 示例
传参示例
{
"deviceId":10000,
}
4. 返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | int | 0:成功,非0失败 |
result | json | 查询结果 |
result参数说明
参数名 | 类型 | 说明 |
---|---|---|
deviceId | int | 设备ID |
deviceName | string | 设备名称 |
roomId | int | 会议室ID |
logoUrl | string | LOGO URL |
deviceType | int | 设备类型 1:全时ROOMS |
roomsType | int | rooms类型 1:基础班 2:标准版 3:行政班 |
activeCode | string | 激活码 |
返回示例
{
"status": 0,
"result": {
"deviceId": 234123,
"roomId": 13770,
"deviceName": "device1",
"logoUrl": "",
"deviceType": 1,
"roomsType": 1,
"activeCode": "6VBVJJAVB3KP",
},
"timestamp": 1702014836696,
"request_duration": "158.895823ms"
}