Skip to main content

Hi everyone, is there any way to get this kind of mapping (user to permission set) from aurena projection API?

 

If yes, may I know what is the API to be used?

 

Please advise

Self Answer: 

Its on Reference_UserGrants

 


Hi @hamiasmai 

 

I think you can do this with two API calls.

  1. Fetch the permission sets: <ifs_cloud_url>/main/ifsapplications/projection/v1/PermissionSetHandling.svc/PermissionSets?$select=Role
  2. Loop through the results and fetch users granted for each permission set: <ifs_cloud_url>/main/ifsapplications/projection/v1/PermissionSetHandling.svc/PermissionSets(Role='{Role}')/AllGrantedUsers?$expand=UserRef($select=Description,Active)

Hope it helps!

Damith


Reply