Retrieve a Team
GET /api/0/teams/{organization_slug}/{team_slug}/
Return details on an individual team.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the team belongs to.
team_slug
(string)REQUIREDThe slug of the team to get.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:team:read
curl https://sentry.io/api/0/teams/{organization_slug}/{team_slug}/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
"avatar": {
"avatarType": "letter_avatar",
"avatarUuid": null
},
"dateCreated": "2018-11-06T21:19:55.114Z",
"hasAccess": true,
"id": "2",
"isMember": true,
"isPending": false,
"memberCount": 1,
"name": "Powerful Abolitionist",
"organization": {
"avatar": {
"avatarType": "letter_avatar",
"avatarUuid": null
},
"dateCreated": "2018-11-06T21:19:55.101Z",
"id": "2",
"isEarlyAdopter": false,
"name": "The Interstellar Jurisdiction",
"require2FA": false,
"slug": "the-interstellar-jurisdiction",
"status": {
"id": "active",
"name": "active"
}
},
"slug": "powerful-abolitionist"
}