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

Alert Summary report endpoints

Operations

Audit Summary Report

Audit Summary report endpoints

Operations

Browser Logs Report

Browser Logs report endpoints

Operations

File Changes Report

File changes report endpoints

Operations

Page Details Report

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

Operations

Page Summary Report

Page Summary report endpoints

Operations

Request Privacy Report

Request Privacy report endpoints

Operations

Rule Summary Report

Rule Summary report endpoints

Operations

Tag Duplicates and Multiples Report

Tag Duplicates and Multiples report endpoints

Operations

Tag Health Report

Tag Health report endpoints

Operations

Tag Inventory Report

Tag Inventory report endpoints

Operations

Tag Privacy Report

Tag privacy report endpoints

Operations

Variable Inventory Report

Variable Inventory report endpoints

Operations

Audit Run Data

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

Operations

Account Usage Export

Export account usage data

Operations

Alert Export

Export alert data

Operations

Audit Run Export

Export audit run data

Operations

Exports Center

Access requested exports status/information

Operations

Manual Journey Run Export

Export manual journey run data

Operations

Scheduled Exports

Manage scheduled grid report data exports

Operations

Web Journey Run Export

Export web journey run data

Operations

Account's Triggered Alerts

Account-level triggered alerts

Operations

Account Usage Alerts

Alerts related to account usage

Operations

Alerts

Alert management and configuration

Operations

Email Inbox Message Alerts

Email inbox message alerts

Operations

Account Usage

Account usage data

Operations

Email Inbox Configuration

APIs for managing email inbox configurations and setting

Operations

Email Inbox Messages

Get Email Inbox message details

Operations

Email Inboxes

APIs for getting email messages and results from email inboxes

Operations

Action Set Action Rules

APIs for managing Action Set Action Rules

Operations

Action Set Actions

APIs for managing Action Set Actions

Operations

Action Sets

APIs for managing Action Sets

Operations

Audit Actions

APIs for managing audit actions

Operations

Audit Blocking Config

APIs for managing audit request blocking configuration

Operations

Audit Login Actions

APIs for managing audit login actions

Operations

Audits Management

APIs for managing audits

Operations

Custom Headers

APIs for managing custom HTTP header groups

Operations

Data Sources

APIs for managing Data Sources

Operations

Geo Locations

APIs for geo locations

Operations

Notification Center

Find and manage email subscriptions

Operations

Remote File Mappings

APIs for managing Remote File Mappings

Operations

Get remote file mappings

Request

GET /v3/remote-file-mappings

Retrieve all remote file mappings with optional account filtering

Security
API_Key
Query
accountIdinteger

Filter by account ID

Example: accountId=123
curl -i -X GET \
  'https://api.observepoint.com/v3/remote-file-mappings?accountId=123' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

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

Create remote file mapping

Request

POST /v3/remote-file-mappings

Create a new remote file mapping configuration

Security
API_Key
Query
accountIdinteger

Account ID to create the mapping for

Example: accountId=123
Bodyapplication/jsonrequired

Remote file mapping data for creation

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"
curl -i -X POST \
  'https://api.observepoint.com/v3/remote-file-mappings?accountId=123' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "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"
  }'

Responses

Remote file mapping created successfully

Bodyapplication/json
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" }

Get remote file mapping by ID

Request

GET /v3/remote-file-mappings/{rfmId}

Retrieve a specific remote file mapping by its ID

Security
API_Key
Path
rfmIdinteger(int64)required

The ID of the remote file mapping

Example: 123
curl -i -X GET \
  https://api.observepoint.com/v3/remote-file-mappings/123 \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Remote file mapping retrieved successfully

Bodyapplication/json
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" }

Rules

APIs for managing rules

Operations

Schedules

APIs for item schedules and calendars

Operations

Site Censuses

APIs for managing Site Census

Operations

User Events

APIs for managing User Events

Operations

Web Journey Blocking Config

APIs for managing web journey request blocking configuration

Operations

Web Journey Custom Headers

APIs for managing web journey custom headers

Operations

Web Journeys Management

APIs for managing Web Journeys

Operations