Updates the encryption key for an ACRE intrusion panel. Returns (Task)
Overview of UpdateAcreIntrusionPanelEncKeyAsync goes here.
| Name | Description |
|---|---|
| acreIntrusionPanel | The ACRE intrusion panel to update |
| EncKeyBin | The new encryption key binary data |
Example in C#
// Returns: nothing
await client.UpdateAcreIntrusionPanelEncKeyAsync(AcreIntrusionPanelInfo acreIntrusionPanel, Byte EncKeyBin);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionpanels/PANEL.KEY/enckey \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/octet-stream' \
--data-binary '@encryption_key.bin'