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, and Dual HDL300 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
    }
}