POST
/v1/mgmt/group/member/all

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, 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.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/group/member/all

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

tenantIdstring

loginIdsarray<string>

userIdsarray<string>

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v1/mgmt/group/member/all" \
  -d '{
  "tenantId": "string",
  "loginIds": [
    "string"
  ],
  "userIds": [
    "string"
  ]
}'

{
  "groups": [
    {
      "id": "string",
      "display": "string",
      "members": [
        {
          "loginId": "string",
          "userId": "string",
          "display": "string"
        }
      ]
    }
  ]
}

Was this helpful?