List a Team's Projects

GET /api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/projects/

Return a list of projects bound to a team.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

team_id_or_slug (string)
REQUIRED

The ID or 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
Copied
curl https://sentry.io/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/projects/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
[ { "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, "hasFeedbacks": false, "hasNewFeedbacks": false, "hasMinifiedStackTrace": false, "hasCustomMetrics": false, "hasInsightsHttp": true, "hasInsightsDb": false, "hasInsightsAssets": false, "hasInsightsAppStart": false, "hasInsightsScreenLoad": false, "hasInsightsVitals": false, "hasInsightsCaches": true, "hasInsightsQueues": true, "hasInsightsLlmMonitoring": 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, "hasFeedbacks": false, "hasNewFeedbacks": false, "hasMinifiedStackTrace": true, "hasCustomMetrics": false, "hasInsightsHttp": false, "hasInsightsDb": false, "hasInsightsAssets": false, "hasInsightsAppStart": false, "hasInsightsScreenLoad": false, "hasInsightsVitals": false, "hasInsightsCaches": false, "hasInsightsQueues": false, "hasInsightsLlmMonitoring": true, "platform": "javascript", "platforms": [ "javascript" ], "latestRelease": null, "hasUserReports": false, "latestDeploys": null } ]