删除设备/SophonDevice/api/Devices(DELETE)

功能描述

删除一个或者多个设备

调用URL

http://192.168.1.180:5555/SophonDevice/api/Devices

调用方法: DELETE

请求参数(JSON格式)

参数一级参数类型默认值选择描述举例

clear_all

bool

false

必选

是否删除全部,当为true时, devices_list可为空

devices_list

list

必选,可以为空

设备列表组

device_id

string

必选

设备id号,为uuid4

请求示例:

请求url: http://192.168.1.180:5555/SophonDevice/api/Devices?
请求body:
{   "clear_all":false,
    "devices_list":[
        {"device_id":"2c1a6a12-ecf4-4490-a2fc-8d7a5023bfcd"}
    ]
}

返回信息:

请求成功

一级参数二级参数类型描述

data

dict

success_devices

list

返回删除成功的设备列表

请求成功示例:

{
    "data": {
            "success_devices":[
                 {"device_id":"","device_name":""}
            ]
        }
}

请求失败

一级参数二级参数类型描述

error

code

int

请求错误码

message

string

错误描述

status

string

错误类型

Last updated