Skip to content

V3 API

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.

Download OpenAPI description
Languages
Servers
ObservePoint Production API
https://api.observepoint.com

Alert Summary report endpoints

Operations

Audit Summary report endpoints

Operations

Browser Logs report endpoints

Operations

File changes report endpoints

Operations

Detailed information about specific pages including tags, cookies, request logs, and console logs

Operations

Page Summary report endpoints

Operations

Request Privacy report endpoints

Operations

Rule Summary report endpoints

Operations

Tag Duplicates and Multiples Report

Tag Duplicates and Multiples report endpoints

Operations

Tag Health report endpoints

Operations

Tag Inventory report endpoints

Operations

Tag privacy report endpoints

Operations

Variable Inventory report endpoints

Operations

Retrieve audit run data including pages, cookies, geo-locations, network requests, JS variables and failures for web audit runs

Operations

Export account usage data

Operations
Operations

Export audit run data

Operations

Access requested exports status/information

Operations

Export manual journey run data

Operations

Manage scheduled grid report data exports

Operations

Export web journey run data

Operations

Account-level triggered alerts

Operations

Alerts related to account usage

Operations

Alert management and configuration

Operations

Email inbox message alerts

Operations
Operations

APIs for managing email inbox configurations and setting

Operations

Get Email Inbox message details

Operations

APIs for getting email messages and results from email inboxes

Operations

APIs for managing Action Set Action Rules

Operations

APIs for managing Action Set Actions

Operations

APIs for managing Action Sets

Operations

APIs for managing audit actions

Operations

APIs for managing audit request blocking configuration

Operations

APIs for managing audit login actions

Operations

APIs for managing audits

Operations

APIs for managing custom HTTP header groups

Operations

APIs for managing Data Sources

Operations

APIs for geo locations

Operations

Find and manage email subscriptions

Operations

APIs for managing Remote File Mappings

Operations
Operations

APIs for item schedules and calendars

Operations

APIs for managing Site Census

Operations

APIs for managing User Events

Operations

APIs for managing web journey request blocking configuration

Operations

APIs for managing web journey custom headers

Operations

APIs for managing Web Journeys

Operations

Get web journey remote file mappings

Request

GET /v3/web-journeys/{webJourneyId}/remotefilemappings

Retrieve all remote file mappings associated with a web journey

Security
API_Key
Path
webJourneyIdinteger(int64)required

Unique identification number for web journey item

Example: 107239
curl -i -X GET \
  https://api.observepoint.com/v3/web-journeys/107239/remotefilemappings \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Remote file mappings retrieved successfully

Bodyapplication/jsonArray [
idinteger(int64)required

Simple surrogate key in the database for this RFM config

Example: 123
namestring<= 255 charactersrequired

A user-supplied name to identify this RFM config

Example: "Google Analytics Replacement"
fileIdstring or null

A string GUID used as the uploaded replacement file's "name" in S3

Example: "8c59d02b-6ebc-4893-9391-9be26c6d34cc"
fileUrlstring or null<= 5000 characters

The replacement URL, or else the name of the replacement file before it was uploaded

Example: "https://example.com/replacement-script.js"
matchTypestringrequired

Either "regex" or "equals"

Enum"equals""regex"
Example: "equals"
matchValuestringrequired

The request URL to be replaced (or the regex that matches URLs to replace)

Example: "https://www.google-analytics.com/analytics.js"
accountIdintegerrequired

Foreign key reference to accounts table. The owner of this RemoteFileMapping

Example: 343
createdByintegerrequired

Foreign key reference to the users table. Who created this RFM?

Example: 1362
createdAtstring(date-time)required

When this RFM was created

Example: "2024-01-01T10:15:00.000Z"
updatedByintegerrequired

Foreign key reference to the users table. Who updated this RFM most recently?

Example: 1362
updatedAtstring(date-time)required

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" } ]

Update web journey remote file mappings

Request

PUT /v3/web-journeys/{webJourneyId}/remotefilemappings

Bind remote file mappings to a web journey

Security
API_Key
Path
webJourneyIdinteger(int64)required

Unique identification number for web journey item

Example: 107239
Bodyapplication/jsonrequired

Set of remote file mapping IDs to bind

Array [
integer(int64)
]
curl -i -X PUT \
  https://api.observepoint.com/v3/web-journeys/107239/remotefilemappings \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '[
    201,
    202,
    203
  ]'

Responses

Remote file mappings updated successfully

Bodyapplication/jsonArray [
integer(int64)
]
Response
application/json
[ 201, 202, 203 ]

Request

GET /v3/web-journeys/{webJourneyId}/runs/{runId}/actions/{actionSequenceId}/requests

Retrieve all network requests made during an action execution

Security
API_Key
Path
webJourneyIdinteger(int64)required

Unique identification number for web journey item

Example: 107239
runIdinteger(int64)required

The ID of the web journey run

Example: 12345
actionSequenceIdinteger(int64)required

The sequence ID of the action

Example: 1
curl -i -X GET \
  https://api.observepoint.com/v3/web-journeys/107239/runs/12345/actions/1/requests \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action requests retrieved successfully

Bodyapplication/jsonArray [
pagerefstring
startedDateTimestring(date-time)

The full date and time, according to ISO-8601 (e. g. 2020-08-25T21:15:43Z)

timeinteger>= 0

Request's duration in milliseconds

requestobject
responseobject
cacheobject or null
timingsobject
serverIPAddressstring
connectionstring
commentstring
resourceTypestring

Resource type (script, xhr, image, document, font, ping, etc.)

locationDataobject
tagobject

Tag information object containing category and tag details

tagIdinteger
]
Response
application/json
[ { "pageref": "string", "startedDateTime": "2019-08-24T14:15:22Z", "time": 0, "request": {}, "response": {}, "cache": {}, "timings": {}, "serverIPAddress": "string", "connection": "string", "comment": "string", "resourceType": "string", "locationData": {}, "tag": {}, "tagId": 0 } ]