get.json 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "operationId": "getAccessLists",
  3. "summary": "Get all access lists",
  4. "tags": ["Access Lists"],
  5. "security": [
  6. {
  7. "BearerAuth": ["access_lists"]
  8. }
  9. ],
  10. "parameters": [
  11. {
  12. "in": "query",
  13. "name": "expand",
  14. "description": "Expansions",
  15. "schema": {
  16. "type": "string",
  17. "enum": ["owner", "items", "clients", "proxy_hosts"]
  18. }
  19. }
  20. ],
  21. "responses": {
  22. "200": {
  23. "description": "200 response",
  24. "content": {
  25. "application/json": {
  26. "examples": {
  27. "default": {
  28. "value": [
  29. {
  30. "id": 1,
  31. "created_on": "2024-10-08T22:15:40.000Z",
  32. "modified_on": "2024-10-08T22:15:40.000Z",
  33. "owner_user_id": 1,
  34. "name": "test1234",
  35. "meta": {},
  36. "satisfy_any": true,
  37. "pass_auth": false,
  38. "proxy_host_count": 0
  39. }
  40. ]
  41. }
  42. },
  43. "schema": {
  44. "$ref": "../../../components/access-list-object.json"
  45. }
  46. }
  47. }
  48. }
  49. }
  50. }