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 resource belongs to.

team_slug (string)
REQUIRED

The slug of the team the resource belongs to.

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:admin
  • project:read
  • project:write
curl https://sentry.io/api/0/teams/{organization_slug}/{team_slug}/projects/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "team": {
      "id": "2349234102",
      "name": "Prime Mover",
      "slug": "prime-mover"
    },
    "teams": [
      {
        "id": "2349234102",
        "name": "Prime Mover",
        "slug": "prime-mover"
      },
      {
        "id": "47584447",
        "name": "Powerful Abolitionist",
        "slug": "powerful-abolitionist"
      }
    ],
    "id": "6758470122493650",
    "name": "the-spoiled-yoghurt",
    "slug": "The Spoiled Yoghurt",
    "isBookmarked": false,
    "isMember": true,
    "access": [
      "project:read",
      "event:read",
      "team:read",
      "alerts:read",
      "org:read",
      "event:write",
      "project:releases",
      "member:read"
    ],
    "hasAccess": true,
    "dateCreated": "2023-03-29T15:25:21.344565Z",
    "environments": [
      "production"
    ],
    "eventProcessing": {
      "symbolicationDegraded": false
    },
    "features": [
      "alert-filters",
      "custom-inbound-filters",
      "data-forwarding",
      "discard-groups",
      "minidump",
      "race-free-group-creation",
      "rate-limits",
      "servicehooks",
      "similarity-indexing",
      "similarity-indexing-v2",
      "similarity-view",
      "similarity-view-v2"
    ],
    "firstEvent": null,
    "firstTransactionEvent": true,
    "hasSessions": false,
    "hasProfiles": false,
    "hasReplays": false,
    "hasMonitors": false,
    "hasMinifiedStackTrace": false,
    "hasCustomMetrics": false,
    "platform": "node-express",
    "platforms": [],
    "latestRelease": null,
    "hasUserReports": false,
    "latestDeploys": null
  },
  {
    "team": {
      "id": "2349234102",
      "name": "Prime Mover",
      "slug": "prime-mover"
    },
    "teams": [
      {
        "id": "2349234102",
        "name": "Prime Mover",
        "slug": "prime-mover"
      }
    ],
    "id": "1829334501859481",
    "name": "Pump Station",
    "slug": "pump-station",
    "isBookmarked": false,
    "isMember": true,
    "access": [
      "project:read",
      "event:read",
      "team:read",
      "alerts:read",
      "org:read",
      "event:write",
      "project:releases",
      "member:read"
    ],
    "hasAccess": true,
    "dateCreated": "2023-03-29T15:21:49.943746Z",
    "environments": [
      "production"
    ],
    "eventProcessing": {
      "symbolicationDegraded": false
    },
    "features": [
      "alert-filters",
      "custom-inbound-filters",
      "data-forwarding",
      "discard-groups",
      "minidump",
      "race-free-group-creation",
      "rate-limits",
      "servicehooks",
      "similarity-indexing",
      "similarity-indexing-v2",
      "similarity-view",
      "similarity-view-v2"
    ],
    "firstEvent": "2023-04-05T21:02:08.054000Z",
    "firstTransactionEvent": false,
    "hasSessions": false,
    "hasProfiles": false,
    "hasReplays": false,
    "hasMonitors": false,
    "hasMinifiedStackTrace": true,
    "hasCustomMetrics": false,
    "platform": "javascript",
    "platforms": [
      "javascript"
    ],
    "latestRelease": null,
    "hasUserReports": false,
    "latestDeploys": null
  }
]