issue-events.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "get": {
  3. "tags": [
  4. "Events"
  5. ],
  6. "description": "This endpoint lists an issue's events.",
  7. "operationId": "List a issue's events",
  8. "parameters": [
  9. {
  10. "name": "issue_id",
  11. "in": "path",
  12. "description": "The ID of the issue to retrieve.",
  13. "required": true,
  14. "schema": {
  15. "type": "string"
  16. }
  17. },
  18. {
  19. "name": "full",
  20. "in": "query",
  21. "description": "If this is set to true then the event payload will include the full event body, including the stacktrace. \nSet to true to enable.",
  22. "schema": {
  23. "type": "boolean"
  24. }
  25. }
  26. ],
  27. "responses": {
  28. "200": {
  29. "description": "Success.",
  30. "content": {
  31. "application/json": {
  32. "schema": {
  33. "type": "array",
  34. "items": {
  35. "$ref": "../../components/schemas/event.json#/Event"
  36. }
  37. }
  38. }
  39. }
  40. },
  41. "403": {
  42. "description": "Forbidden"
  43. }
  44. },
  45. "security": [
  46. {
  47. "auth_token": [
  48. "event:read"
  49. ]
  50. }
  51. ]
  52. }
  53. }