AddUserToGroupAsync

Returns (Task)

Place the User in the designated Group.

Name Description
user The user to add to the group
group The group to add the user to

Add User To Group Async

Example in C#

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

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/INSTANCE.KEY/users/USER.KEY/groups\
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '"/api/f/INSTANCE.KEY/groups/GROUP.KEY"'