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.
Web Journeys Management
v3 API Endpoints
Alert Summary Report
Audit Summary Report
Browser Logs Report
Cookie Inventory Report
Cookie Privacy report endpoints
File Changes Report
Page Details Report
Page Summary Report
Request Privacy Report
Rule Summary Report
Tag Duplicates and Multiples Report
Tag Health Report
Tag Inventory Report
Tag Privacy Report
Variable Inventory Report
Audit Run Data
Web Journey Cookie Report
Account Usage Export
Alert Export
Audit Run Export
Consent Category Export
Exports Center
Manual Journey Run Export
Scheduled Exports
Web Journey Run Export
Account's Triggered Alerts
Account Usage Alerts
Alerts
Email Inbox Message Alerts
Account Usage
Email Inbox Configuration
Email Inbox Messages
Email Inboxes
Action Set Action Rules
Action Set Actions
Action Sets
Audit Actions
Audit Blocking Config
Audit Login Actions
Audits Consent Category
Audits Management
Consent Categories
Custom Headers
Data Sources
Geo Locations
Notification Center
Remote File Mappings
Rules
Schedules
Site Censuses
User Events
Web Journey Blocking Config
Web Journey Custom Headers
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/web-journeys?domainId=123&monitored=true&accountId=456' \
-H 'Authorization: YOUR_API_KEY_HERE'List of web journeys retrieved successfully
Frequency options for web journey execution
Enum"paused""once""15 minutes""1 hour""6 hours""12 hours""daily""weekly""biweekly""monthly"
Example: "daily"
Human-readable description of the user agent
Example: "Chrome Browser"
Whether this journey is monitored by script services
Example: true
When the next execution is scheduled
Example: "2023-06-02T10:30:00Z"
Response
application/json
[ { "id": 12345, "name": "E-commerce Checkout Flow", "notes": "Tests the complete checkout process", "domainId": 123, "userId": 456, "folderId": 789, "browserWidth": 1920, "browserHeight": 1080, "loadVideos": true, "vpnEnabled": false, "gpcEnabled": true, "blockThirdPartyCookies": false, "frequency": "daily", "location": "US-West", "userAgent": "Chrome/91.0.4472.124", "userAgentDescription": "Chrome Browser", "customProxy": "proxy.example.com:8080", "monitoredByScriptServices": true, "createdAt": "2023-06-01T10:30:00Z", "nextCheck": "2023-06-02T10:30:00Z", "schedule": { … } } ]
Bodyapplication/jsonrequired
Web journey data for creation
Frequency options for web journey execution
Enum"paused""once""15 minutes""1 hour""6 hours""12 hours""daily""weekly""biweekly""monthly"
Example: "daily"
Human-readable description of the user agent
Example: "Chrome Browser"
Whether this journey is monitored by script services
Example: true
When the next execution is scheduled
Example: "2023-06-02T10:30:00Z"
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v3/web-journeys \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "E-commerce Checkout Flow",
"notes": "Tests the complete checkout process",
"domainId": 123,
"userId": 456,
"folderId": 789,
"browserWidth": 1920,
"browserHeight": 1080,
"loadVideos": true,
"vpnEnabled": false,
"gpcEnabled": true,
"blockThirdPartyCookies": false,
"frequency": "daily",
"location": "US-West",
"userAgent": "Chrome/91.0.4472.124",
"userAgentDescription": "Chrome Browser",
"customProxy": "proxy.example.com:8080",
"monitoredByScriptServices": true,
"nextCheck": "2023-06-02T10:30:00Z",
"schedule": {
"dtStart": "string",
"tzId": "string",
"recurrenceRule": "string",
"isPaused": true
}
}'Web journey created successfully
Frequency options for web journey execution
Enum"paused""once""15 minutes""1 hour""6 hours""12 hours""daily""weekly""biweekly""monthly"
Example: "daily"
Human-readable description of the user agent
Example: "Chrome Browser"
Whether this journey is monitored by script services
Example: true
When the next execution is scheduled
Example: "2023-06-02T10:30:00Z"
Response
application/json
{ "id": 12345, "name": "E-commerce Checkout Flow", "notes": "Tests the complete checkout process", "domainId": 123, "userId": 456, "folderId": 789, "browserWidth": 1920, "browserHeight": 1080, "loadVideos": true, "vpnEnabled": false, "gpcEnabled": true, "blockThirdPartyCookies": false, "frequency": "daily", "location": "US-West", "userAgent": "Chrome/91.0.4472.124", "userAgentDescription": "Chrome Browser", "customProxy": "proxy.example.com:8080", "monitoredByScriptServices": true, "createdAt": "2023-06-01T10:30:00Z", "nextCheck": "2023-06-02T10:30:00Z", "schedule": { "dtStart": "string", "tzId": "string", "recurrenceRule": "string", "isPaused": true, "description": "string", "presetType": "12_HOUR" } }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v3/web-journeys?domainId=123&folderId=456' \
-H 'Authorization: YOUR_API_KEY_HERE'