UpdateControllerPeripheralStatusAsync

Returns (Task)

Overview of UpdateControllerPeripheralStatusAsync goes here.

Name Description
controller
readerStatus All boolean properties are nullable

Update Controller Peripheral Status Async

Example in C#

// Returns: Boolean
var item = await client.UpdateControllerPeripheralStatusAsync(ControllerInfo controller, PeripheralStatusItem readerStatus);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/controllers/CONTROLLER.KEY/peripheral-status \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -D '{
                       "$type":"Feenics.Keep.WebApi.Model.PeripheralStatusItem, Feenics.Keep.WebApi.Model",
                       "Mode":"",
                       "IsTampered":false,
                       "DoorForcedOpen":false,
                       "MaskDoorForcedOpen":false,
                       "DoorHeldOpen":false,
                       "MaskDoorHeldOpen":false,
                       "DoorContactFaulted":false,
                       "DoorContactMessage":"",
                       "RexFaulted":false,
                       "RexMessage":""
                   }'