List Exclusions
Retrieve all exclusion rules configured for an account.Path Parameters
string
required
Account identifier (format:
acc_ followed by 27 alphanumeric characters)Headers
string
required
Bearer token for authentication
Response
boolean
Indicates if there are more records to paginate through
array
Get Exclusion
Retrieve details of a specific exclusion rule.Path Parameters
string
required
Account identifier
string
required
Exclusion rule identifier
Headers
string
required
Bearer token for authentication
Response
Returns a single exclusion object with the same structure as described in the List Exclusions response.Create Exclusion
Create a new exclusion rule to filter out unwanted requests from monitoring.Path Parameters
string
required
Account identifier
Headers
string
required
Bearer token for authentication
Request Body
string
required
Name of the exclusion rule
string
Description of what this rule excludes
string
required
URL path pattern to match. Supports wildcards (*) and exact matches
string
required
HTTP method to match (GET, POST, PUT, DELETE, etc.) or * for all methods
number
HTTP status code to match (optional, null means all status codes)
boolean
Whether this exclusion rule should be active (default: true)
Response
Returns the created exclusion object.Update Exclusion
Update an existing exclusion rule.Path Parameters
string
required
Account identifier
string
required
Exclusion rule identifier
Headers
string
required
Bearer token for authentication
Request Body
string
required
Name of the exclusion rule
string
Description of what this rule excludes
string
required
URL path pattern to match
string
required
HTTP method to match or * for all methods
number
HTTP status code to match (optional)
boolean
required
Whether this exclusion rule should be active
Response
Returns the updated exclusion object.Delete Exclusion
Delete an exclusion rule.Path Parameters
string
required
Account identifier
string
required
Exclusion rule identifier
Headers
string
required
Bearer token for authentication
Response
string
ID of the deleted exclusion rule
boolean
Flag indicating the exclusion rule was successfully deleted