get.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "operationId": "getAccessList",
  3. "summary": "Get a access List",
  4. "tags": [
  5. "access-lists"
  6. ],
  7. "security": [
  8. {
  9. "bearerAuth": [
  10. "access_lists.view"
  11. ]
  12. }
  13. ],
  14. "parameters": [
  15. {
  16. "in": "path",
  17. "name": "listID",
  18. "description": "Access List ID",
  19. "schema": {
  20. "type": "integer",
  21. "minimum": 1
  22. },
  23. "required": true,
  24. "example": 1
  25. }
  26. ],
  27. "responses": {
  28. "200": {
  29. "description": "200 response",
  30. "content": {
  31. "application/json": {
  32. "examples": {
  33. "default": {
  34. "value": {
  35. "id": 1,
  36. "created_on": "2025-10-28T04:06:55.000Z",
  37. "modified_on": "2025-10-29T22:48:20.000Z",
  38. "owner_user_id": 1,
  39. "name": "My Access List",
  40. "meta": {},
  41. "satisfy_any": false,
  42. "pass_auth": false,
  43. "proxy_host_count": 1
  44. }
  45. }
  46. },
  47. "schema": {
  48. "$ref": "../../../../components/access-list-object.json"
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }