IP Filters
Create IP filter
Creates a new IP filter with the provided configuration
post/api/ip-filters
Request body
Example request
{
"address": "192\\.168\\.1\\..*",
"description": "Allow traffic from the local admin workstation"
}Response
IP filter created successfully
Example response
{
"id": "entity123",
"createdBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"updatedBy": {
"id": "abc123",
"friendlyName": "John Doe (john.doe)"
},
"createdAt": "2023-10-31T12:34:56.789Z",
"updatedAt": "2023-10-31T12:34:56.789Z",
"address": "192\\.168\\.1\\..*",
"description": "Allow traffic from the local admin workstation"
}