v70

latestOpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-031426201.0 MB
IP Filters

Update IP filter

Updates an existing IP filter with new configuration

put/api/ip-filters/{ipFilterId}

Path parameters

ipFilterIdstring required

Request body

addressstring required

A regex pattern matched against the remote client's IP address. A plain IP address (e.g. 192.168.1.1) is treated as a literal pattern. Use * to allow all addresses, or a regex prefix like 192\.168\. to allow an entire subnet. Both IPv4 and IPv6 addresses (including IPv4-mapped IPv6) are supported.

descriptionstring required

A description of the purpose or reason for this IP filter.

Example request

{
  "address": "192\\.168\\.1\\..*",
  "description": "Allow traffic from the local admin workstation"
}

Response

IP filter updated successfully