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

Request

DELETE /v3/alerts/{alertId}
Security
API_Key
Path
alertIdinteger(int64)required
curl -i -X DELETE \
  'https://api.observepoint.com/v3/alerts/{alertId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

deleted successfully

Response
No content

Request

PUT /v3/alerts/{alertId}/labels
Security
API_Key
Path
alertIdinteger(int64)required
Bodyapplication/json
labelsArray of integers(int64)
Example: [223]
curl -i -X PUT \
  'https://api.observepoint.com/v3/alerts/{alertId}/labels' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "labels": [
      223
    ]
  }'

Responses

alert labels updated successfully

Response
No content

Request

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

Page number, starts with 0

Default 0
sortDescboolean

Controls sorting order

Default false
sortBystring
Enum"ALERT_NAME""TARGET_ITEMS""REPORT_METRIC""UPDATED_AT""SUBSCRIBERS"
Bodyapplication/json
alertNamestringnon-empty

when present works as "alert name contains give substring` filter

metricTypestring

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"
labelsArray of integers(int64)non-empty
Example: [223]
createdByUserIdinteger

ID of a user

Example: 123
isSubscribedboolean

When true then only those alerts will be returned that have Notification Profile of a requestor user assigned onto them

Default false
curl -i -X POST \
  'https://api.observepoint.com/v3/alerts/library?size=50&page=0&sortDesc=false&sortBy=ALERT_NAME' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "alertName": "string",
    "metricType": "ACCOUNT_USAGE_THIS_MONTH_AUDIT_PAGE_SCANNED_COUNT",
    "labels": [
      223
    ],
    "createdByUserId": 123,
    "isSubscribed": false
  }'

Responses

Alerts Library items

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 objectsrequired
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]
alerts[].​updatedAtstring(date-time)required

Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:

  1. An uppercase T must separate the date and time portions.
  2. An uppercase Z must denote that a numeric time zone offset isn't present.

In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules

Example: "2016-08-18T17:33:00Z"
alerts[].​targetItemCountintegerrequired

Number of audits/journeys that have this alert configured

alerts[].​subscribedCountintegerrequired

Number of notification profiles configured for this alert

alerts[].​isOwnerbooleanrequired

Indicates whether the current user is the owner of this alert

Response
application/json
{ "metadata": { "pagination": { … } }, "alerts": [ { … } ] }

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