List an Organization's Projects

GET /api/0/organizations/{organization_slug}/projects/

Return a list of projects bound to a organization.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization 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:
  • org:admin
  • org:read
  • org:write
curl https://sentry.io/api/0/organizations/{organization_slug}/projects/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "slug": "prime-mover",
    "name": "Prime Mover",
    "dateCreated": "2018-11-06T21:19:58.536Z",
    "firstEvent": null,
    "access": [],
    "hasAccess": true,
    "id": "3",
    "isBookmarked": false,
    "isMember": true,
    "platform": "",
    "platforms": [],
    "team": {
      "id": "2",
      "name": "Powerful Abolitionist",
      "slug": "powerful-abolitionist"
    },
    "teams": [
      {
        "id": "2",
        "name": "Powerful Abolitionist",
        "slug": "powerful-abolitionist"
      }
    ],
    "environments": [
      "local"
    ],
    "eventProcessing": {
      "symbolicationDegraded": false
    },
    "features": [
      "releases"
    ],
    "firstTransactionEvent": true,
    "hasSessions": true,
    "hasProfiles": true,
    "hasReplays": true,
    "hasMinifiedStackTrace": false,
    "hasMonitors": true,
    "hasCustomMetrics": false,
    "hasUserReports": false,
    "latestRelease": null
  }
]