Updates the status of an ACRE intrusion panel. Returns (Task)
Overview of UpdateAcreIntrusionPanelStatusAsync goes here.
| Name | Description |
|---|---|
| acreIntrusionPanel | The ACRE intrusion panel to update |
| Status | The new status information |
Example in C#
// Returns: nothing
await client.UpdateAcreIntrusionPanelStatusAsync(AcreIntrusionPanelInfo acreIntrusionPanel, ControllerStatusItem Status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionpanels/PANEL.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.ControllerStatusItem, Feenics.Keep.WebApi.Model",
"StatusCode":1,
"Message":"Panel Online"
}'