organization-release-commit-files.json 942 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "get": {
  3. "tags": ["Releases"],
  4. "description": "Retrieve files changed in a release's commits",
  5. "operationId": "Retrieve Files Changed in a Release's Commits",
  6. "parameters": [
  7. {
  8. "name": "organization_slug",
  9. "in": "path",
  10. "description": "The slug of the organization the release belongs to.",
  11. "required": true,
  12. "schema": {
  13. "type": "string"
  14. }
  15. },
  16. {
  17. "name": "version",
  18. "in": "path",
  19. "description": "The version identifier of the release.",
  20. "required": true,
  21. "schema": {
  22. "type": "string"
  23. }
  24. }
  25. ],
  26. "responses": {
  27. "200": {
  28. "description": "Success"
  29. },
  30. "403": {
  31. "description": "Forbidden"
  32. },
  33. "404": {
  34. "description": "Not Found"
  35. }
  36. },
  37. "security": [
  38. {
  39. "auth_token": ["project:releases"]
  40. }
  41. ]
  42. }
  43. }