v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Portals IP Allow List

List the IP allow list for portal

Lists the IP allow list configuration for a portal.

get/v3/portals/{portalId}/ip-allow-list

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[before]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ

Request the next page of data, starting with the item before this parameter.

page[after]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ

Request the next page of data, starting with the item after this parameter.

Response

The portal's IP allow list configuration.

Example response

{
  "meta": {
    "size": 10
  },
  "data": [
    {
      "id": "660e8400-e29b-41d4-a716-446655440000",
      "allowed_ips": [
        "192.168.1.1"
      ]
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "allowed_ips": [
        "192.168.1.0/22",
        "192.168.1.52"
      ]
    }
  ]
}