List an Organization's Projects
Return a list of projects bound to a organization.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization for which the projects should be listed.
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:org: read
GET /api/0/organizations/{organization_slug}/projects/
curl https://sentry.io/api/0/organizations/{organization_slug}/projects/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"dateCreated": "2018-11-06T21:19:58.536Z",
"firstEvent": null,
"hasAccess": true,
"id": "3",
"isBookmarked": false,
"isMember": true,
"latestDeploys": null,
"name": "Prime Mover",
"platform": null,
"platforms": [],
"slug": "prime-mover",
"team": {
"id": "2",
"name": "Powerful Abolitionist",
"slug": "powerful-abolitionist"
},
"teams": [
{
"id": "2",
"name": "Powerful Abolitionist",
"slug": "powerful-abolitionist"
}
]
}
]