List a Team's Projects
Return a list of projects bound to a 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.
Query Parameters:
cursor
(string)A pointer to the last object fetched and its' sort order; used to retrieve the next or previous results.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:project:read
GET /api/0/teams/{organization_slug}/{team_slug}/projects/
curl https://sentry.io/api/0/teams/{organization_slug}/{team_slug}/projects/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"slug": "the-spoiled-yoghurt",
"name": "The Spoiled Yoghurt",
"hasAccess": true,
"teams": [
{
"id": "542609",
"name": "Powerful Abolitionist",
"slug": "powerful-abolitionist"
}
],
"platform": null,
"firstEvent": null,
"isMember": false,
"team": {
"id": "542609",
"name": "Powerful Abolitionist",
"slug": "powerful-abolitionist"
},
"dateCreated": "2020-08-20T14:36:34.171255Z",
"isBookmarked": false,
"id": "5398494",
"latestDeploys": null,
"features": [
"custom-inbound-filters",
"discard-groups",
"rate-limits",
"data-forwarding",
"similarity-view",
"issue-alerts-targeting",
"servicehooks",
"minidump",
"similarity-indexing"
]
}
]