Retrieves the details of a group for a specified tenant.

Entitlement required: readUserGroups (Read users and groups), or manageUserGroups (Manage users and groups), or manageAllUserGroups (Synchronize users and groups), or manageUserStandardGroups (Manage users and standard groups), or readGroups (Read all groups but not their members), or readStandardGroups (Read standard groups but not their members), or readGroupMembers (Read all groups and their members), or readStandardGroupMembers (Read standard groups and their members), or manageGroups (Manage all groups but not their members), or manageStandardGroups (Manage standard groups but not their members),or manageGroupMembers (Manage all group and their members), or manageStandardGroupMembers (Manage standard groups and their members).
Note: You only need one entitlement, but you can have more than one.

On Success, the returned response contains the members and details of the group.

Limitations for tenants that do not support large groups:
When specifying the allNestedUsers membershipType, if the number of nested users exceeds 10,000 then the LargeGroupResponse (HTTP Status Code 207) is returned. If the total number of nested users cannot be determined, the totalMembers value is set to -1. When specifying a membershipType other than allNestedUsers, if the group has more than 10,000 members, then the LargeGroupResponse (HTTP Status Code 207) is returned. When the LargeGroupResponse is returned, the memberAttributes, memberCount, and memberStartIndex parameters are ignored.

Tenants that support large groups can page through all the members of a group for all membershipType queries. Each call to the endpoint returns at most 2,500 members of the group. If more members of the group exist that were not returned, an additional element called "bookmark" is returned in the response payload. To get the next set of members, the caller makes an additional call to the same endpoint, and passes the bookmark value as a query parameter named "nextPage". For example ?nextPage=XASDGAJDGKAWHGI=. The caller continues to make calls to the endpoint until no bookmark element are returned in the response payload, which indicates that all group members were returned. The memberStartIndex and memberCount are supported within the 2,500 members returned.

To check whether the tenant supports large groups, run the GET /v2.0/SCIM/capabilities API.

Path Params
string
required

The unique identifier of the group whose details are to be retrieved. This identifier is passed in the path of the URL.

Query Params
string
Defaults to firstLevelUsersAndGroups

Type of members of the group to retrieve:
"firstLevelUsersAndGroups" (default) returns the users and groups directly contained in the group."allNestedUsers" returns all the users (including nested users) contained in the group."firstLevelUsers" returns the users directly contained in the group."firstLevelGroups" returns the groups directly contained in the group.

string

The list of attributes that are passed in as comma-separated values for returning the members of the groups when passing the result back to the caller. To improve performance, specify in the list only the attributes that you want returned. If no list is provided, the default action is to return all attributes.

string

The count that indicates the number of members from this group that will be returned. A negative value is interpreted as 0. A value of 0 indicates that no member results are to be returned, except for totalMembers.

string

A 1-based index that indicates the start index that is used when the members in the group are returned. A value less than 1 is interpreted as 1.

string

The bookmark that indicates the next page of members to be returned.

Responses

Language
URL
Choose an example:
application/scim+json