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