Sets a specific Status property on the controller. Returns (Task)
Overview of UpdateControllerStatusPropAsync goes here.
Name | Description |
---|---|
controller | |
prop | Use IsTampered, IsFaulted", IsBatteryLow, IsOnline, IsUpdating |
newValue | true or false |
Example in C#
// Returns: nothing
await client.UpdateControllerStatusPropAsync(ControllerInfo controller, String prop, Boolean newValue);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/controllers/CONTROLLER.KEY/status/IsUpdating \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d 'true'