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

Update target items (data sources) that have specified Alert assigned

Request

PATCH /v3/alerts/{alertId}/target-items
Security
API_Key
Path
alertIdinteger(int64)required
Bodyapplication/json
assignmentUpdatesArray of objectsrequired
assignmentUpdates[].​scopestringrequired

For forward-compatibility

Value"SINGLE_ITEM"
assignmentUpdates[].​itemTypestringrequired
Enum"AUDIT""WEB_JOURNEY"
assignmentUpdates[].​itemIdinteger(int64)required

ID of the item that can have assigned Alert(s) onto it. See also AlertAssignmentTypeEnum

assignmentUpdates[].​operationstringrequired

Meaning by type:

  • ASSIGN: add (if not exist) or update (if already exists) alert assignment
  • UNASSIGN: remove alert assignment. Does nothing if assignment does not exist
Enum"ASSIGN""UNASSIGN"
curl -i -X PATCH \
  'https://api.observepoint.com/v3/alerts/{alertId}/target-items' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "assignmentUpdates": [
      {
        "scope": "SINGLE_ITEM",
        "itemType": "AUDIT",
        "itemId": 0,
        "operation": "ASSIGN"
      }
    ]
  }'

Responses

Updated successfully

Response
No content

Search Alerts for assigning them to other items (audits, WJs etc)

Request

POST /v3/alerts/search/assignments
Security
API_Key
Query
sizeinteger[ 50 .. 1000 ]
Default 50
pageinteger>= 0

Page number, starts with 0

Default 0
sortBystring

Behaviour per type:

  • REPORT_METRIC: sort by name of data/report type corresponding to alert's metricType
Enum"ALERT_NAME""REPORT_METRIC"
sortDescboolean

Controls sorting order

Default false
Bodyapplication/json
targetItemobject

Item (audit/journey) alerts are assigned or not assigned to

searchstringnon-empty

When value is present it works as "alert name contains given substring" filter

labelsArray of integers(int64)non-empty

non-empty array of labels present on an alert, works as "alert has all specified labels" filter

Example: [223]
isDefaultForNewDataSourcesboolean

Makes this alert selected by default in data-source (audit/WJ) creation UI. This is a user-specific flag.

curl -i -X POST \
  'https://api.observepoint.com/v3/alerts/search/assignments?size=50&page=0&sortBy=ALERT_NAME&sortDesc=false' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "targetItem": {
      "itemType": "AUDIT",
      "itemId": 0,
      "isAssigned": true
    },
    "search": "string",
    "labels": [
      223
    ],
    "isDefaultForNewDataSources": true
  }'

Responses

Assignments

Bodyapplication/json
metadataobjectrequired

Common metadata for iterable

metadata.​paginationobjectrequired
metadata.​pagination.​totalCountintegerrequired

Total number of items available from all result pages combined

metadata.​pagination.​totalPageCountintegerrequired

Total number of pages available

metadata.​pagination.​pageSizeintegerrequired

Page size - number of items per result page configured by size query parameter or default page size

metadata.​pagination.​currentPageSizeintegerrequired

Number of items in current result page

metadata.​pagination.​currentPageNumberintegerrequired

Current page number/ordinal

alertsArray of objects>= 0 itemsrequired
alerts[].​idinteger(int64)required
alerts[].​namestringnon-emptyrequired

User-defined name of the alert

alerts[].​metricTypestringrequired

Deprecated metric types:

  • ACCOUNT_USAGE_THIS_MONTH_AUDIT_PAGE_SCANNED_COUNT
  • ACCOUNT_USAGE_12_MONTH_AUDIT_PAGE_SCANNED_COUNT
  • ACCOUNT_USAGE_12_MONTH_WJ_RUN_COUNT
  • ACCOUNT_USAGE_THIS_MONTH_WJ_RUN_COUNT
  • ACCOUNT_USAGE_LAST_30_DAYS_LOGIN_USER_COUNT
  • PAGE_SUMMARY_FAILED_RULE_COUNT
Enum"ACCOUNT_USAGE_THIS_MONTH_AUDIT_PAGE_SCANNED_COUNT""ACCOUNT_USAGE_12_MONTH_AUDIT_PAGE_SCANNED_COUNT""ACCOUNT_USAGE_12_MONTH_WJ_RUN_COUNT""ACCOUNT_USAGE_THIS_MONTH_WJ_RUN_COUNT""ACCOUNT_USAGE_LAST_30_DAYS_LOGIN_USER_COUNT""ACCOUNT_USAGE_V2_THIS_MONTH_AUDIT_PAGE_USAGE_PERCENTAGE""ACCOUNT_USAGE_V2_CURRENT_TERM_PAGE_USAGE_PERCENTAGE""ACCOUNT_USAGE_V2_CURRENT_TERM_WJ_RUN_USAGE_PERCENTAGE""ACCOUNT_USAGE_V2_THIS_MONTH_WJ_RUN_USAGE_PERCENTAGE""ACCOUNT_USAGE_V2_LAST_30_DAYS_LOGIN_USER_COUNT"
alerts[].​labelsArray of integers(int64)>= 0 itemsrequired
Example: [223]
Response
application/json
{ "metadata": { "pagination": { … } }, "alerts": [ { … } ] }

Update Alerts assigned to specified item (audit, journey etc)

Request

PATCH /v3/alerts/assignments/{itemType}/{itemId}
Security
API_Key
Path
itemTypestringrequired
Enum"AUDIT""WEB_JOURNEY"
itemIdinteger(int64)required

ID of the item that can have assigned Alert(s) onto it. See also AlertAssignmentTypeEnum

Bodyapplication/json
assignmentUpdatesArray of objectsrequired
assignmentUpdates[].​alertIdinteger(int64)required
assignmentUpdates[].​operationstringrequired

Meaning by type:

  • ASSIGN: add (if not exist) or update (if already exists) alert assignment
  • UNASSIGN: remove alert assignment. Does nothing if assignment does not exist
Enum"ASSIGN""UNASSIGN"
curl -i -X PATCH \
  'https://api.observepoint.com/v3/alerts/assignments/{itemType}/{itemId}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "assignmentUpdates": [
      {
        "alertId": 0,
        "operation": "ASSIGN"
      }
    ]
  }'

Responses

updated successfully

Response
No content

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