Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2022-04-13 03:01 PM
I tried looking for all available APIs, but I couldn't find one which remove a user from all groups he has been previously added to.
Could you point to the right direction of accomplishing that using C#?
Archer 6.10
2022-04-13 05:40 PM
According to the REST API guideline, you can use the following API call to remove user from the group, but it has to be done 1 by 1 via PUT:
But before you need to find out all groups of the user by using:
2022-04-13 05:40 PM
According to the REST API guideline, you can use the following API call to remove user from the group, but it has to be done 1 by 1 via PUT:
But before you need to find out all groups of the user by using:
2022-04-13 06:13 PM
Thank you. I'm aware of such API, and I'm using it now to loop through all existing group and remove user from each group, if previously added. Hence I was looking for a "Delete All" kind of API.
2022-04-13 06:20 PM
No such as far as I am aware.