Authorization
Descope Project ID and Management Key Project ID:Management Key as bearer token.
In: header
Request Body
application/json
Load all members of a specific External group, using a valid management key.
This API endpoint allows administrators to load all members of a specific external group that is 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, Update an Existing SCIM Group (adding new members), or Delete an Existing SCIM Group
See also
- See SSO Configuration for further details on managing SSO Configurations on a tenant.
curl -X POST "https://api.descope.com/v1/mgmt/group/members" \ -H "Content-Type: application/json" \ -d '{}'{ "groups": [ { "id": "string", "display": "string", "members": [ { "loginId": "string", "userId": "string", "display": "string" } ] } ]}export interface Response {groups?: Group[]}export interface Group {id?: stringdisplay?: stringmembers?: GroupMember[]}export interface GroupMember {loginId?: stringuserId?: stringdisplay?: string}Load All External Groups for Specific Members POST
### Load all external group for specific members, using a valid management key. This API endpoint allows administrators to load all external groups for specific members associated with a specific tenant. The tenantId is required and the loginId or userId are optional for further filtering. 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.
Permissions Management API Overview
Use the Descope API to create, update, and delete permissions.