Query an Individual Team
Query an individual team with a SCIM Group GET Request.
- Note that the members field will only contain up to 10000 members.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
team_id
(integer)REQUIREDThe id of the team you'd like to query.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:team: read
GET /api/0/organizations/{organization_slug}/scim/v2/Groups/{team_id}
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"
}
}