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//
- Update web journey action rules
Get web journeys
Create web journey
Delete web journeys by domain or folder
Get web journey by ID
Update web journey
Delete web journey
Get web journey status
Get web journey actions
Update web journey actions
Get web journey action by ID
Update web journey action
Get web journey run status
Delete web journey run
Delete current web journey run
Get web journey notification configuration
Update web journey notification configuration
Get web journey rules
Update web journey rules
Get web journey action rules
Get web journey remote file mappings
Update web journey remote file mappings
Get action requests
Get action logs
Get all labels attached to specified web journey
Patch labels attached to specified web journey
Get journey configuration info for specified journey run
Update web journey action...
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/actions/{actionId}/rules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/actions/1001/rules \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "id": 0, "name": "string", "accountId": 0, "createdBy": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "recipients": [ … ], "checkTimes": 0, "matchAllFilters": true, "pageFilters": [ … ], "tags": [ … ], "labels": [ … ], "fromTemplate": true } ]
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/actions/{actionId}/rules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api.observepoint.com/v3/web-journeys/107239/actions/1001/rules \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '[
101,
102,
103
]'Response
application/json
[ { "id": 0, "name": "string", "accountId": 0, "createdBy": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "recipients": [ … ], "checkTimes": 0, "matchAllFilters": true, "pageFilters": [ … ], "tags": [ … ], "labels": [ … ], "fromTemplate": true } ]
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/remotefilemappings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/remotefilemappings \
-H 'Authorization: YOUR_API_KEY_HERE'Remote file mappings retrieved successfully
A user-supplied name to identify this RFM config
Example: "Google Analytics Replacement"
A string GUID used as the uploaded replacement file's "name" in S3
Example: "8c59d02b-6ebc-4893-9391-9be26c6d34cc"
The replacement URL, or else the name of the replacement file before it was uploaded
Example: "https://example.com/replacement-script.js"
The request URL to be replaced (or the regex that matches URLs to replace)
Example: "https://www.google-analytics.com/analytics.js"
Foreign key reference to accounts table. The owner of this RemoteFileMapping
Example: 343
Foreign key reference to the users table. Who created this RFM?
Example: 1362
Foreign key reference to the users table. Who updated this RFM most recently?
Example: 1362
When this RFM was last updated
Example: "2024-01-02T10:15:00.000Z"
Response
application/json
[ { "id": 123, "name": "Google Analytics Replacement", "fileId": "8c59d02b-6ebc-4893-9391-9be26c6d34cc", "fileUrl": "https://example.com/replacement-script.js", "matchType": "equals", "matchValue": "https://www.google-analytics.com/analytics.js", "accountId": 343, "createdBy": 1362, "createdAt": "2024-01-01T10:15:00.000Z", "updatedBy": 1362, "updatedAt": "2024-01-02T10:15:00.000Z" } ]