delete.json 622 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "operationId": "deleteProxyHost",
  3. "summary": "Delete a Proxy Host",
  4. "tags": ["proxy-hosts"],
  5. "security": [
  6. {
  7. "bearerAuth": ["proxy_hosts.manage"]
  8. }
  9. ],
  10. "parameters": [
  11. {
  12. "in": "path",
  13. "name": "hostID",
  14. "description": "The ID of the Proxy Host",
  15. "schema": {
  16. "type": "integer",
  17. "minimum": 1
  18. },
  19. "required": true,
  20. "example": 2
  21. }
  22. ],
  23. "responses": {
  24. "200": {
  25. "description": "200 response",
  26. "content": {
  27. "application/json": {
  28. "examples": {
  29. "default": {
  30. "value": true
  31. }
  32. },
  33. "schema": {
  34. "type": "boolean"
  35. }
  36. }
  37. }
  38. }
  39. }
  40. }