GetControllerPeripheralStatusesAsync

Gets peripheral status for all peripherals connected to the controller. Returns (List)

Overview of GetControllerPeripheralStatusesAsync goes here.

Name Description
controller The controller to get peripheral status for

Get Controller Peripheral Statuses Async

Example in C#

// Returns: ControllerPeripheralStatusItem
var controllerPeripheralStatusItem = await client.GetControllerPeripheralStatusesAsync(ControllerInfo controller);

Example in CURL



           curl -X GET \
               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":"ControllerPeripheralStatusItem",
                       "Key":"",
                       "Status":{"$type":"Feenics.Keep.WebApi.Model.PeripheralStatusItem, Feenics.Keep.WebApi.Model"}
                   },
                   {
                       "$type":"ControllerPeripheralStatusItem",
                       "Key":"",
                       "Status":{"$type":"Feenics.Keep.WebApi.Model.PeripheralStatusItem, Feenics.Keep.WebApi.Model"}
                   }]'