Updates an existing ACRE intrusion panel. Returns (Task)
Overview of UpdateAcreIntrusionPanelAsync goes here.
| Name | Description |
|---|---|
| acreIntrusionPanel | The ACRE intrusion panel to update |
Example in C#
// Returns: nothing
await client.UpdateAcreIntrusionPanelAsync(AcreIntrusionPanelInfo acreIntrusionPanel);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionpanels/PANEL.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.AcreIntrusionPanelInfo, Feenics.Keep.WebApi.Model",
"Key":"PANEL.KEY",
"CommonName":"Updated_Panel",
"RegistrationId":"REG123"
}'