Getting role assignments for members of a RAM community
I need to find the role assignments for all members of a RAM community. I would prefer to use the Java API but I can't find a suitable method there. The web service appears to return this method via getRoles, however I never find any role assignments this way. What API should I be using?
Thanks,
Andrew
RAMClient client = new RAMClient(...);
RAM1 ramWS = client.getRAM1Webservice();
RoleSO[] allRamRoles = ramWS.getRoles(communityId);
for(RoleSO ramRole : allRamRoles) {
String[] assignedUsers = ramRole.getUserIDs(); //always String[0]
}
Thanks,
Andrew