Group Management

Overview

The Group Management APIs let you load details about external SSO groups associated with your tenants.

Use Cases

  1. Load All External Groups for a Tenant
  2. Load All External Groups for Specific Members
  3. Load All Members of a Specific External Group

Examples

Example - load all groups for a tenant

Use the Load All External Groups for a Tenant endpoint to retrieve the external groups associated with a tenant. This lets administrators verify group associations and make any necessary changes via SCIM or their SSO IdP.

Was this helpful?

Search SCIM Users GET

### Search SCIM users, using a valid access key. This endpoint allows administrators to search SCIM users. These users have been created and associated to the Application and Descope tenant. The response includes an array of user objects within the Resources object. These user objects include details about the users including their email, phone, username, name, etc. It is important to note the bearer token for SCIM API endpoints. The format is `ProjectId:AccessKey` the access key must be associated with the applicable tenant and associated with the tenant admin role. ### Next Steps Once you have user data, you can utilize [Update SCIM Group](/api/management/tenants/scim/update-scim-group) to add or remove the user on groups. ### See also - See [SCIM Management](/scim) for further details on managing SCIM provisioning.

Load All External Groups for a Tenant POST

### Load all external groups for a tenant, using a valid management key. This API endpoint allows administrators to load all external groups that are associated to a tenant. The response contains an array of group objects including the group id, display name, and an array of associated members. ### Next Steps Administrators can review this information and make changes within their IdP or if necessary, [Create a SCIM Group](/api/management/tenants/scim/create-scim-group), [Update an Existing SCIM Group (adding new members)](/api/management/tenants/scim/update-scim-group), or [Delete an Existing SCIM Group](/api/management/tenants/scim/delete-scim-group) ### See also - See [SSO Configuration](/sso) for further details on managing SSO Configurations on a tenant.

On this page