I want to remove groups in Users role in a given project using api call . How can i do that? I can remove all the groups and users using
jiraSoapService.removeAllRoleActorsByProject(authToken,remoteProject);
But i want to remove only groups of Role – Users how can i do that?
Thanks
You should use removeActorsFromProjectRole method from SOAP API:
If you’d like to remove users and not groups, you should use “atlassian-user-role-actor” as the last argument for that method.