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

Get all the consent categories assigned to an audit

Request

GET /v3/web-audits/{auditId}/consent-categories
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

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

Responses

OK, return a list of consent-categories assigned to an audit

Bodyapplication/json
consentCategoriesArray of objectsrequired
consentCategories[].​namestring
consentCategories[].​notesstring
consentCategories[].​typestring
Enum"approved""unapproved"
consentCategories[].​idinteger

ID of consent category

Example: 3301
consentCategories[].​isDefaultCCboolean

If true, this is the default consent category

consentCategories[].​cmpDataobject
consentCategories[].​updatedTypestring
Enum"ONETRUST_IMPORT""FILE_IMPORT""APP_CREATE"
consentCategories[].​updatedAtstring(date-time)

The last time this consent category was updated in UTC timezone

Response
application/json
{ "consentCategories": [ { … } ] }

Update the consent categories assigned to an audit

Request

PATCH /v3/web-audits/{auditId}/consent-categories

Update the consent categories assigned to an audit. The request will be rejected if trying to assign conflicting consent category types to the same audit

Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
Bodyapplication/json-patch+jsonrequiredArray [
opstring

The operation to be performed

Enum"add""remove"
pathstring
valueinteger

id of the item to assign

]
curl -i -X PATCH \
  https://api.observepoint.com/v3/web-audits/107239/consent-categories \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json-patch+json' \
  -d '[
    [
      {
        "op": "add",
        "path": "/-",
        "value": 1
      },
      {
        "op": "remove",
        "path": "/",
        "value": 2
      }
    ]
  ]'

Responses

OK, return the modified consent category assignments

Bodyapplication/json
consentCategoriesArray of objectsrequired
consentCategories[].​namestring
consentCategories[].​notesstring
consentCategories[].​typestring
Enum"approved""unapproved"
consentCategories[].​idinteger

ID of consent category

Example: 3301
consentCategories[].​isDefaultCCboolean

If true, this is the default consent category

consentCategories[].​cmpDataobject
consentCategories[].​updatedTypestring
Enum"ONETRUST_IMPORT""FILE_IMPORT""APP_CREATE"
consentCategories[].​updatedAtstring(date-time)

The last time this consent category was updated in UTC timezone

Response
application/json
{ "consentCategories": [ { … } ] }

Retrieve all consent categories snapshots that are applied to a specific audit run.

Request

GET /v3/web-audits/{auditId}/runs/{runId}/consent-categories
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
curl -i -X GET \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/consent-categories \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK, return a list of consent category snapshots assigned to this run

Bodyapplication/json
consentCategorySnapshotsArray of objects
Response
application/json
{ "consentCategorySnapshots": [ { … } ] }

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