Updates the status of a Bosch panel. Returns (Task)
Adjust the status of the designated Bosch Panel
| Name | Description |
|---|---|
| boschPanel | The Bosch panel to update status for |
| status | The new status information |
Example in C#
// Returns: nothing
await client.UpdateBoschPanelStatusAsync(BoschPanelInfo boschPanel, PanelStatusItem status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/boschpanels/BOSCHPANEL.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.PanelStatusItem, Feenics.Keep.WebApi.Model",
"IsOnline":false,
"IsBatteryLow":true
}'