This section documents the V3 API endpoints that provide access to comprehensive audit and journey data from ObservePoint. Use these endpoints to retrieve detailed reports, export data, manage alerts, configure scans and privacy settings, and analyze web performance metrics from your ObservePoint scans.
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com
Request
GET /v3/user-events
This endpoint will get all the changes made by users in the account. This endpoint is only for Admins
Security
API_Key
Query
filter events by event type
Enum"created""deleted""run-requested""uploaded""edited""overage-enabled""overage-disabled"
filter events by event item type
Enum"audit""web-journey""mobile-journey""mobile-app-file""folder""subfolder""consent-category""account""email-inbox""grid-saved-report"
filter events from this timeStamp
Example: fromTimeStamp=2021-06-01T01:30:00.000-05:00
filter events up to this timeStamp
Example: toTimeStamp=2021-06-01T01:30:00.000-05:00
Default "eventTimeStamp"
Enum"userId""userName""eventType""itemId""itemName""eventTimeStamp"
- ObservePoint Production APIhttps://api.observepoint.com/v3/user-events
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/user-events?userId=123&eventType=created&itemType=audit&itemName=string&itemId=0&fromTimeStamp=2021-06-01T01%3A30%3A00.000-05%3A00&toTimeStamp=2021-06-01T01%3A30%3A00.000-05%3A00&page=0&pageSize=100&sortBy=userId&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "nextPage": true, "userEvents": [ { … } ] }