123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- {
- "get": {
- "tags": ["Projects"],
- "description": "Return a list of projects available to the authenticated session.",
- "operationId": "List Your Projects",
- "parameters": [
- {
- "$ref": "../../components/parameters/pagination-cursor.json#/PaginationCursor"
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "required": [
- "avatar",
- "color",
- "dateCreated",
- "features",
- "firstEvent",
- "hasAccess",
- "id",
- "isBookmarked",
- "isInternal",
- "isMember",
- "isPublic",
- "name",
- "organization",
- "platform",
- "slug",
- "status"
- ],
- "properties": {
- "avatar": {
- "$ref": "../../components/schemas/avatar.json#/Avatar"
- },
- "color": {
- "type": "string"
- },
- "dateCreated": {
- "type": "string",
- "format": "date-time"
- },
- "features": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "firstEvent": {
- "type": "string",
- "nullable": true
- },
- "hasAccess": {
- "type": "boolean"
- },
- "id": {
- "type": "string"
- },
- "isBookmarked": {
- "type": "boolean"
- },
- "isInternal": {
- "type": "boolean"
- },
- "isMember": {
- "type": "boolean"
- },
- "isPublic": {
- "type": "boolean"
- },
- "name": {
- "type": "string"
- },
- "organization": {
- "$ref": "../../components/schemas/organization.json#/Organization"
- },
- "platform": {
- "type": "string",
- "nullable": true
- },
- "slug": {
- "type": "string"
- },
- "status": {
- "type": "string",
- "enum": [
- "active",
- "disabled",
- "pending_deletion",
- "deletion_in_progress"
- ]
- }
- }
- }
- },
- "example": [
- {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "color": "#bf6e3f",
- "dateCreated": "2018-11-06T21:20:08.064Z",
- "features": [
- "servicehooks",
- "sample-events",
- "data-forwarding",
- "rate-limits",
- "minidump"
- ],
- "firstEvent": null,
- "hasAccess": true,
- "id": "4",
- "isBookmarked": false,
- "isInternal": false,
- "isMember": true,
- "isPublic": false,
- "name": "The Spoiled Yoghurt",
- "organization": {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "dateCreated": "2018-11-06T21:19:55.101Z",
- "id": "2",
- "isEarlyAdopter": false,
- "name": "The Interstellar Jurisdiction",
- "require2FA": false,
- "slug": "the-interstellar-jurisdiction",
- "status": {
- "id": "active",
- "name": "active"
- }
- },
- "platform": null,
- "slug": "the-spoiled-yoghurt",
- "status": "active"
- },
- {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "color": "#bf5b3f",
- "dateCreated": "2018-11-06T21:19:58.536Z",
- "features": [
- "releases",
- "sample-events",
- "minidump",
- "servicehooks",
- "rate-limits",
- "data-forwarding"
- ],
- "firstEvent": null,
- "hasAccess": true,
- "id": "3",
- "isBookmarked": false,
- "isInternal": false,
- "isMember": true,
- "isPublic": false,
- "name": "Prime Mover",
- "organization": {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "dateCreated": "2018-11-06T21:19:55.101Z",
- "id": "2",
- "isEarlyAdopter": false,
- "name": "The Interstellar Jurisdiction",
- "require2FA": false,
- "slug": "the-interstellar-jurisdiction",
- "status": {
- "id": "active",
- "name": "active"
- }
- },
- "platform": null,
- "slug": "prime-mover",
- "status": "active"
- },
- {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "color": "#3fbf7f",
- "dateCreated": "2018-11-06T21:19:55.121Z",
- "features": [
- "releases",
- "sample-events",
- "minidump",
- "servicehooks",
- "rate-limits",
- "data-forwarding"
- ],
- "firstEvent": null,
- "hasAccess": true,
- "id": "2",
- "isBookmarked": false,
- "isInternal": false,
- "isMember": true,
- "isPublic": false,
- "name": "Pump Station",
- "organization": {
- "avatar": {
- "avatarType": "letter_avatar",
- "avatarUuid": null
- },
- "dateCreated": "2018-11-06T21:19:55.101Z",
- "id": "2",
- "isEarlyAdopter": false,
- "name": "The Interstellar Jurisdiction",
- "require2FA": false,
- "slug": "the-interstellar-jurisdiction",
- "status": {
- "id": "active",
- "name": "active"
- }
- },
- "platform": null,
- "slug": "pump-station",
- "status": "active"
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- }
- },
- "security": [
- {
- "auth_token": ["project:read"]
- }
- ]
- }
- }
|