重置设备激活码
重置设备激活码
1. 接口描述
接口名称:
/confopenapi/room/device/activationcode/reset
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
Http Header
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
token | 是 | 接口调用鉴权参数 | 也可以放在http body中 |
HttpBody
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
deviceId | 是 | int | 设备ID |
3. 示例
传参示例
{
"deviceId":10000,
}
4. 返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | int | 0:成功,非0失败 |
result | json | 查询结果 |
result参数说明
参数名 | 类型 | 说明 |
---|---|---|
deviceId | int | 设备ID |
activeCode | string | 激活码 |
返回示例
{
"status": 0,
"result": {
"deviceId": 234123,
"activeCode": "6VBVJJAVB3KP",
},
"timestamp": 1702014836696,
"request_duration": "158.895823ms"
}