get
https://{nurevaDeviceIP}/api/v1/settings
Allows clients to get device settings, such as the display theme (classic, dot) and time mode (12h, 24h, off), or power saving settings.
NOTE: Only supported for HDL200, HDL300, Dual HDL300 and HDX devices.
Minimum role required: general
Example Response Body for HDL200 (only supports display settings)
{
"display": {
"theme": "classic",
"timeMode": "12h",
}
}
Example Response Body for HDL300 and Dual HDL300 (only supports power saving settings)
{
"powerSaving": {
"sleepModeEnabled": true
}
}
Example Response Body for HDX (only supports lights modes and device sounds settings)
{
"lights": {
"style": "Dot",
"inCallColour": "Blue",
"brightness": "Medium"
},
"deviceSounds": "Essential"
}