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

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

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

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