IP Filters
Retrieve the IP address list for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be updated
Success
Unauthorized
Not Found
GET /api/PubItems/{id}/IPFilters HTTP/1.1
Host:
Accept: */*
{
"allowedIP4s": [
{
"from": "text",
"to": "text"
}
],
"allowedIP6s": [
{
"from": "text",
"to": "text"
}
]
}
Add an IP address to the filter of type 'IP Address' for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be updated
Add an IP address to the filter of type 'IP Address' for the specified published resource
The IP address to add to the filter.
Created
No content
Unauthorized
Not Found
Conflict
POST /api/PubItems/{id}/IPFilters HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 13
{
"ip": "text"
}
No content
Delete an IP address from the filter of type 'IP Address' for the specified published resource. Deprecated path - Use Criteria section instead.
ID of the published resource to be updated
IP to be deleted from the IP filter
No Content
No content
Unauthorized
Not Found
DELETE /api/PubItems/{id}/IPFilters/{ip} HTTP/1.1
Host:
Accept: */*
No content
Was this helpful?