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