User Management API - Retreive Plans Associated with a USER_GROUP
Hello All
I hope you can help, I have a question regarding the Adobe Creative Cloud User Management API.
I have an app that is retrieving all user groups and product profiles with:
GET /v2/usermanagement/groups/{orgId}/{page}
And all user in the organisation with:
GET /v2/usermanagement/users/{orgId}/{page}
I am now attempting to rationalise these lists so I can determine which products each user has been assigned, either directly or through user groups. The challenge seems to be with user groups, I can link a user:
{
"email": "user1@domain.com",
"status": "active",
"groups": ["Default Acrobat Pro DC configuration_5ED31C8-provisioning", "Project Management Team", "Technical Consultants"],
"username": "user1@domain.com",
"domain": "domain.com",
"firstname": "User",
"lastname": "One",
"country": "GB",
"type": "federatedID"
}
To a group:
{
"groupName": "Project Management Team",
"type": "USER_GROUP",
"adminGroupName": "_admin_Project Management Team",
"memberCount": 3
}
But I cannot find how to link the user group to a product. In the Admin Console for this user I see that they have been assigned ‘Default Acrobat Pro DC configuration’ that is linked to ‘Acrobat Pro DC’ product through the 'Project Management Team' group.
So, how do I determine via the API which plans are associated to the user groups?
Thanks
Gary
-=-
