123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "get": {
- "tags": ["Organizations"],
- "description": "Return a list of version control repositories for a given organization.",
- "operationId": "List an Organization's Repositories",
- "parameters": [
- {
- "name": "organization_slug",
- "in": "path",
- "description": "The organization short name.",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "type": "object",
- "required": ["dateCreated", "id", "name"],
- "properties": {
- "dateCreated": {
- "type": "string"
- },
- "id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- }
- }
- },
- "example": [
- {
- "dateCreated": "2018-11-06T21:19:58.536Z",
- "id": "3",
- "name": "sentry/sentry"
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- },
- "404": {
- "description": "Not Found"
- }
- },
- "security": [
- {
- "auth_token": ["org: read"]
- }
- ]
- }
- }
|