/api/device/security/set
Use this interface to configuration interface for device security.
Only available for the administrative group.
Prototype
Protocol |
HTTP/HTTPS POST |
URL |
ip[:port]/api/device/security/set |
Content-Type |
Request: Content-Type: application/json Response: Content-Type: application/json |
Request Cookies
Parameter |
Description |
mwcloud-sid |
A string that is used to identify current logged-in user. |
mwcloud-uid |
Current logged-in username. |
Request Body
Parameter |
Description |
sn |
Specify serial numbers of devices to be set. |
security |
Security settings |
Request Example
POST /api/device/security/set HTTP/1.1
Accept: application/json, text/plain, */*
Content-Type: application/json;charset=utf-8
Content-Length: xx
Cookie: mwcloud-sid=OCXWUMGEYPGIAWWOETYXPNMVHDZIAZJP; mwcloud-uid=Admin;
{
"sn":"A304200731001",
"security": {
"is-inherit": 1,
"group-mask": 2,
"usr-mask": 1
}
}
Response Parameters
Parameter |
Description |
Content-Type |
Value: 'application/json; charset=UTF-8' |
Response Body
Response Example
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
content-length: xx
{
"result": 0
}