sentry-app-external-issue-details.json 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "delete": {
  3. "tags": ["Integration"],
  4. "description": "Delete an external issue.",
  5. "operationId": "Delete an External Issue",
  6. "parameters": [
  7. {
  8. "name": "uuid",
  9. "in": "path",
  10. "description": "The uuid of the integration platform integration.",
  11. "required": true,
  12. "schema": {
  13. "type": "string"
  14. }
  15. },
  16. {
  17. "name": "external_issue_id",
  18. "in": "path",
  19. "description": "The id of the external issue.",
  20. "required": true,
  21. "schema": {
  22. "type": "string"
  23. }
  24. }
  25. ],
  26. "responses": {
  27. "204": {
  28. "description": "Success"
  29. },
  30. "403": {
  31. "description": "Forbidden"
  32. },
  33. "404": {
  34. "description": "External issue not found"
  35. }
  36. },
  37. "security": [
  38. {
  39. "auth_token": ["event:admin"]
  40. }
  41. ]
  42. }
  43. }