Query an Individual Team

GET /api/0/organizations/{organization_id_or_slug}/scim/v2/Groups/{team_id_or_slug}

Query an individual team with a SCIM Group GET Request.

  • Note that the members field will only contain up to 10000 members.

Path Parameters

team_id_or_slug (string)
REQUIRED

The ID or slug of the team the resource belongs to.

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

Scopes

<auth_token> requires one of the following scopes:
  • team:admin
  • team:read
  • team:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups/{team_id_or_slug} \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "id": "23232", "displayName": "test-scimv2", "members": [], "meta": { "resourceType": "Group" } }
Was this helpful?