Skip to main content

Get Users By Group

Gets a paged list of users in a specific group of an organization along with information about them.

Parameters

ParameterDescription
Direct MembershipControls whether the groups field in the returned user structure contains only those product profiles of which that user is a direct member.
If false, returns all groups (user groups, product profiles, and admin groups) containing the user.
Group NameThe user group, product profile name or an administrative group.
For an admin group, the name can be one of the fixed groups _org_admin, _deployment_admin, or _support_admin; or a group-specific admin group.
These are identified with a prefix on the group name _admin_groupName , _product_admin_productName, _developer_groupName.
If the group exists but the admin group does not, an empty list is returned.
Page NumberThe page number being requested. If greater than existing number of pages, returns the last page of users.

Example Output

{
"lastPage": false,
"result": "success",
"groupName": "Document Cloud 1",
"users": [
{
"email": "john@example.com",
"status": "active",
"groups": [
"Document Cloud 1"
],
"username": "john",
"domain": "example.com",
"country": "US",
"type": "federatedID"
},
{
"email": "jane@example.com",
"status": "active",
"groups": [
"Document Cloud 1",
"Support for AEM Mobile",
"_admin_Document Cloud 1",
"_admin_Support for AEM Mobile",
"_admin_Default Support profile",
"_admin_Creative Cloud 1",
"_deployment_admin",
"_developer_Document Cloud 1"
],
"username": "jane",
"domain": "example.com",
"country": "US",
"type": "federatedID"
},
{
"email": "bob@example.com",
"status": "active",
"groups": [
"Document Cloud 1",
"Creative Cloud 1"
],
"username": "bob",
"domain": "example.com",
"country": "US",
"type": "federatedID"
}
]
}

Workflow Library Example

Get Users by Group with Adobe Cloud and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop