文档
测试

重置坐标(按设备类型)

POST
{{host}}/api/marker/retweet

请求参数

参数名
类型
描述
必填
level_id
int
层级ID
必填
device_type
string
设备类型
必填

响应参数

参数名
类型
描述
必填
ret
int
返回码:0-正常,非0-失败
必填
msg
string
返回消息
必填

说明 / 示例

###### 示例代码 ```javascript //请求 let res = await post("api/marker/retweet", { level_id: 169, device_type: "LEDLight" }) //返回 res = { ret: 0, msg: "操作成功", } ```