3.4 Display

Getting current settings

Get the current Display settings.

URL:

https://{{ip_addr}}/api/v1/display

HTTP method:

GET

Response code:

Standard HTTP response code, treating syntactic errors.

Response data:

{
    "data": {
        "brightness": 100,
        "isBlueLedNotificationActive": true,
        "turnOffDisplayDelay": 2
    }
}

Section setting

URL:

https://{{ip_addr}}/api/v1/display

HTTP method:

PUT

Response code:

Standard HTTP response code, treating syntactic errors.

Request body:
{
        "brightness": 37,
        "isBlueLedNotificationActive": true,
        "turnOffDisplayDelay": 1
}

Response data:

{
    "data": {
        "brightness": 37,
        "isBlueLedNotificationActive": true,
        "turnOffDisplayDelay": 1
    }
}