123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "get": {
- "tags": ["Releases"],
- "description": "List an organization release's commits.",
- "operationId": "List an Organization Release's Commits",
- "parameters": [
- {
- "name": "organization_id_or_slug",
- "in": "path",
- "description": "The id or slug of the organization the release belongs to.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "version",
- "in": "path",
- "description": "The version identifier of the release.",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "$ref": "../../components/schemas/releases/commit.json#/MinimalCommit"
- }
- },
- "example": [
- {
- "dateCreated": "2018-11-06T21:19:58.536Z",
- "id": "acbafc639127fd89d10f474520104517ff1d709e",
- "message": "Initial commit from Create Next App"
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- },
- "404": {
- "description": "Not Found"
- }
- },
- "security": [
- {
- "auth_token": ["project:releases"]
- }
- ]
- }
- }
|