Query an Individual Team
GET /api/0/organizations/{organization_id_or_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)REQUIREDThe ID of the team you'd like to query / update.
organization_id_or_slug(string)REQUIREDThe ID or slug of the organization the resource belongs to.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:team:adminteam:readteam:write
curl https://sentry.io/api/0/organizations/{organization_id_or_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"
  }
}