project-issues-resolved-in-release.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "get": {
  3. "tags": ["Releases"],
  4. "description": "List issues to be resolved in a particular release.",
  5. "operationId": "List Issues to be Resolved in a Particular Release",
  6. "parameters": [
  7. {
  8. "name": "organization_slug",
  9. "in": "path",
  10. "description": "The slug of the organization.",
  11. "required": true,
  12. "schema": {
  13. "type": "string"
  14. }
  15. },
  16. {
  17. "name": "project_slug",
  18. "in": "path",
  19. "description": "The slug of the project.",
  20. "required": true,
  21. "schema": {
  22. "type": "string"
  23. }
  24. },
  25. {
  26. "name": "version",
  27. "in": "path",
  28. "description": "The version identifier of the release.",
  29. "required": true,
  30. "schema": {
  31. "type": "string"
  32. }
  33. }
  34. ],
  35. "responses": {
  36. "200": {
  37. "description": "Success"
  38. },
  39. "403": {
  40. "description": "Forbidden"
  41. },
  42. "404": {
  43. "description": "Not Found"
  44. }
  45. },
  46. "security": [
  47. {
  48. "auth_token": ["project:releases"]
  49. }
  50. ]
  51. }
  52. }