RemoveUserFromGroupAsync

Returns (Task)

Take a User out of the designated Group.

Name Description
user The user to remove from the group
group The group to remove the user from

Remove User From Group Async

Example in C#

// Returns: nothing
await client.RemoveUserFromGroupAsync(UserInfo user, GroupInfo group);

Example in CURL



           curl -X DELETE \
               https://api.us.acresecurity.cloud/api/INSTANCE.KEY/users/USER.KEY/groups/GROUP.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'