Get Exclusion Filters
This endpoint returns a list of exclusion filters for a particular workspace. This API is available to API keys with app_policy_management
capability.
GET /openapi/v1/applications/{application_id}/exclusion_filters
Parameters: The request URL contains the following parameters
Name |
Type |
Description |
---|---|---|
application_id |
string |
The unique identifier for the workspace. |
version |
string |
Indicates the version of the workspace for which to get the exclusion filters. |
Response object: Returns a list of exclusion filter objects for the specified workspace and version.
Sample python code
application_id = '<application-id>'
params = {'version': 'v10'}
restclient.get('/applications/%s/exclusion_filters' % application_id,
params=params)