List a Team's Projects

GET /api/0/teams/{organization_slug}/{team_slug}/projects/

Return a list of projects bound to a team.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the team belongs to.

team_slug (string)
REQUIRED

The 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

<auth_token> requires one of the following scopes:
  • project:read
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"
    ]
  }
]