Get BOND lift settings
Returns BOND lift settings
BOND lift cannot work simultaneously with Wiegand output. Disable Wiegand output
using POST /access/general/wiegand.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- is_enabled booleanDetermines whether the feature is enabled 
- wiegand object- Wiegand settings. Access zone code will be converted to proper wiegand type before sending to Wiegand output. type string- Possible values: [ - wiegand_26,- wiegand_34,- wiegand_42,- wiegand_58,- wiegand_66,- wiegand_130]- Wiegand type. All data received on Wiegand input will be converted to selected type available_types string[]- Possible values: [ - wiegand_26,- wiegand_34,- wiegand_42,- wiegand_58,- wiegand_66,- wiegand_130]- The list of available Wiegand types 
{
  "is_enabled": true,
  "wiegand": {
    "type": "wiegand_26",
    "available_types": [
      "wiegand_26"
    ]
  }
}
{
  "is_enabled": false,
  "wiegand": {
    "type": "wiegand_26",
    "available_types": [
      "wiegand_26",
      "wiegand_34",
      "wiegand_42",
      "wiegand_58",
      "wiegand_66",
      "wiegand_130"
    ]
  }
}
Loading...