returns the date and time of alerts, the type of alert, threshold value and other details to allow analysis of the alert
Elevate Tripwire API (1.2)
Currently provides read-only access to Tripwire-related entities like alerts and notifications to allow API users to automate processes linked to Tripwire usage monitoring and alerting
- Tripwire alert - returns the date and time of alerts, the type of the alerts, and any additional details that may be useful in assessing the severity of the alerts
- Tripwire notification - returns the activity that was performed when an alert was triggered, whether that's sending an email, SMS, or custom action Tripwire plan - a named tripwire plan of tripwire rules used to identify alerts and notifications
Results to return per page
Comma-delimited list of the fields to sort by - defaults to ascending order, suffix :desc to change
Comma-delimited list of the field(s) to return if only a subset is required
Filter by the triggered alert date and time
Filter by Tripwire plan identifier
Filter alerts by the quantity threshold
Filter alerts by the major currency value threshold
Filter alerts by the call count threshold
Filter alerts by product reference
Filter alerts by customer identifier
- https://rest.elevatebilling.com/v1/tripwire-alerts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/tripwire-alerts?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&triggeredDate=gt%3A2022-01-01T00%3A00%3A00Z&planId=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&analysisLevel=UPI_ROLLING_24HRS&thresholdQuantity=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&thresholdPrice=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&thresholdCallCount=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&productReference=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&customerId=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&siteId=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'OK
Tripwire analysis level used to determine ratedValueBefore/AfterDiscount (see TripwireAlert object)
Rated value in major currency before applying discounts (used by UPI_ROLLING_24HRS)
Rated value in major currency after applying discounts (used by OPEN_BILL_RUN & SINGLE_EVENT)
[ { "id": 1, "triggeredDate": "2022-01-01T00:00:00Z", "planId": 0, "planRuleName": "Daily calls exceeding £10.00", "analysisLevel": "UPI_ROLLING_24_HOUR", "thresholdQuantity": 5, "thresholdPrice": 10, "thresholdCallCount": 15, "ratedValueBeforeDiscount": 25.25, "ratedValueAfterDiscount": 15.25, "totalCallCount": 15, "productReference": "string", "customerId": 1234, "siteId": 1234 } ]