get.json 895 B

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