delete.json 569 B

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