latestOpenAPI 3.0.3MIT2026-08-124627160.3 KB

c04c2c708bf9

Access Control List

List ACLs

Fetches the list of Access Control List entries.

get/accessControlLists

Response

The list of ACL entries

totalItemsinteger

Total size of the result.

pageNumberstring

The token to be used for listing the next page

sizeinteger

The number of items per page. default is 1000

Example response

{
  "accessControlLists": [
    {
      "name": "LA Office",
      "ipRanges": [
        {
          "description": "West wing of office",
          "ipAddress": "10.0.1.1",
          "range": 32,
          "createTime": "2021-11-01T23:20:50Z",
          "updateTime": "2021-11-01T23:20:50Z"
        }
      ],
      "createTime": "2021-11-01T23:20:50Z",
      "updateTime": "2021-11-01T23:20:50Z"
    }
  ],
  "totalItems": 10000,
  "pageNumber": "1",
  "size": 2000
}