Get the settings of the external light indication
Get the settings of the incoming call and the doorbell external light indication
- if door_bell_durationis 0, switching on and off occurs synchronously with pressing the doorbell button
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- is_enabled booleanDefault value: falseIs feature eanbled? 
- off_after_answer booleanDefault value: trueindication turns off after answer 
- door_bell_duration numberPossible values: <= 60Default value: 20duration of indication during door bell ringing 
- enable_12v_output_for_incoming_call booleanDefault value: falseIs 12v enabled? 
{
  "is_enabled": true,
  "off_after_answer": false,
  "door_bell_duration": 20,
  "enable_12v_output_for_incoming_call": true
}
{
  "is_enabled": false,
  "off_after_answer": true,
  "door_bell_duration": 20,
  "enable_12v_output_for_incoming_call": false
}
Please log in
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error object- Describes the base error user might get code string- Possible values: [ - invalid_authentication,- permission_denied,- not_valid,- system_error]- Error code message string- Error message - data object- Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc. param string- Describes the parameter that did not pass a validation 
{
  "error": {
    "code": "not_valid",
    "message": "Data validation error",
    "data": {
      "param": "must be a string"
    }
  }
}
{
  "error": {
    "code": "invalid_authentication",
    "message": "Log In"
  }
}
Loading...