文档
测试

修改设备基本信息Modify the basic information of the device

POST
/updateDeviceInfo

接口描述

应用场景 Application scenarios 设备录入平台后,需要修改消费标准 After the device enters the platform, the consumption standard needs to be modified

请求参数

application/x-www-form-urlencoded
参数名
类型
描述
必填
token
String
身份标识 Identification
必填
simId
String
SIM卡id SIM Card Id
必填
chargePriceId
Integer
消费标准Id Consumption Standard Id
可选
status
Integer
系统状态 system status 0:注册 Register 1:上线 online 2:禁用 Offline 3:设备故障 Equipment failure 4:已拆机 Disassembled 5:测试设备 Test Equipment
可选
name
String
设备名称 Equipment name 不传则不进行更改,保留原有名称 Don’t change it if you don’t pass value, keep the original name
可选
lat
Double
纬度,若需重新定位,lat与lng皆不可为空 Latitude, if repositioning is required, neither lat nor lng can be empty
可选
lng
Double
经度 longitude
可选
estateId
Integer
小区id estate id
可选
portNum
Integer
插座号 Socekt No.
可选

响应参数

参数名
类型
描述
必填
data
object
数据字典 data detail
可选
success
boolean
请求成功与否标识 Identification for request success or no
必填
code
String
code
可选
error
String
error message 错误信息
可选

说明 / 示例

返回示例 Return the example ``` { "data": "修改成功", "success": true } ``` 失败示例 ``` { "code": "-1", "error": "设备不存在", "success": false } ```