123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {
- "get": {
- "tags": ["Teams"],
- "description": "Return a list of projects bound to a team.",
- "operationId": "List a Team's Projects",
- "parameters": [
- {
- "name": "organization_slug",
- "in": "path",
- "description": "The slug of the organization the team belongs to.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "team_slug",
- "in": "path",
- "description": "The slug of the team to get.",
- "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#/TeamProjects"
- }
- },
- "example": [
- {
- "slug": "the-spoiled-yoghurt",
- "name": "The Spoiled Yoghurt",
- "hasAccess": true,
- "teams": [
- {
- "id": "542609",
- "name": "Powerful Abolitionist",
- "slug": "powerful-abolitionist"
- }
- ],
- "platform": null,
- "firstEvent": null,
- "isMember": false,
- "team": {
- "id": "542609",
- "name": "Powerful Abolitionist",
- "slug": "powerful-abolitionist"
- },
- "dateCreated": "2020-08-20T14:36:34.171255Z",
- "isBookmarked": false,
- "id": "5398494",
- "latestDeploys": null,
- "features": [
- "custom-inbound-filters",
- "discard-groups",
- "rate-limits",
- "data-forwarding",
- "similarity-view",
- "issue-alerts-targeting",
- "servicehooks",
- "minidump",
- "similarity-indexing"
- ]
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- },
- "404": {
- "description": "Team not found"
- }
- },
- "security": [
- {
- "auth_token": ["project:read"]
- }
- ]
- }
- }
|