3.10.4.1 Lockscreen

Getting current settings 

Getting information on screen lock settings

URL:

https://{{ip_addr}}/api/v1/maintenance/security/lockscreen

HTTP method:

GET

Response code:

Standard HTTP response code, treating syntactic errors.

Response data:

{
    "data": {
        "isEnabled": false
    }
}

Change of current settings 

Caution

 You can only turn the lock screen off/on using this endpoint. The lock screen cannot be configured via a web interface.

URL:

https://{{ip_addr}}/api/v1/maintenance/security/lockscreen

HTTP method:

PUT

Request body:
{
    "isEnabled": "<boolean>"
}

Response code:

Standard HTTP response code, treating syntactic errors.

Response data:

{
    "data": {
        "isEnabled": false
    }
}