Filter Profiles API
Describes Philter's API methods for managing filter profiles.
The
curl
example commands shown on this page are written assuming Philter has been enabled for SSL. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS Settings for more information.get
https://philter:8080
/api/profiles
Example request:
curl -k https://localhost:8080/api/profiles
get
https://philter:8080
/api/profiles/{filterProfileName}
Get a Filter Profile
Example request:
curl -k https://localhost:8080/api/profiles/my-profile
put
https://philter:8080
/api/profiles
Upload a Filter Profile
Example request:
curl -k https://localhost:8080/api/profiles -d @profile.json
delete
https://philter:8080
/api/profiles/{filterProfileName}
Delete a Filter Profile
Example request:
curl -k https://localhost:8080/api/profiles/exprofile
Last modified 4mo ago