1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "get": {
- "tags": ["Organizations"],
- "description": "Return a list of projects bound to a organization.",
- "operationId": "List an Organization's Projects",
- "parameters": [
- {
- "name": "organization_slug",
- "in": "path",
- "description": "The slug of the organization for which the projects should be listed.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "$ref": "../../components/parameters/pagination-cursor.json#/PaginationCursor"
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "$ref": "../../components/schemas/project.json#/OrganizationProjects"
- }
- },
- "example": [
- {
- "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"
- }
- ]
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- },
- "401": {
- "description": "Unauthorized"
- },
- "404": {
- "description": "Not Found"
- }
- },
- "security": [
- {
- "auth_token": ["org: read"]
- }
- ]
- }
- }
|