Query an Individual Team

GET /api/0/organizations/{organization_slug}/scim/v2/Groups/{team_id}

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 (integer)
REQUIRED

The ID of the team you'd like to query / update.

organization_slug (string)
REQUIRED

The slug of the organization the resource belongs to.

Scopes

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