Skip to content

V3 API

This section documents the V3 Reporting API endpoints that provide access to comprehensive audit and journey data from ObservePoint. Use these endpoints to retrieve detailed reports, export data, manage alerts, and analyze web performance metrics from your ObservePoint scans.

Languages
Servers
ObservePoint Production API

https://api.observepoint.com/

Audit Run Data

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

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

Audit Summary Report

Audit Summary report endpoints

Operations

Alert Summary Report

Alert Summary report endpoints

Operations

Rule Summary Report

Rule Summary report endpoints

Operations

Tag Inventory Report

Tag Inventory report endpoints

Operations

Tag Health Report

Tag Health report endpoints

Operations

Tag Duplicates and Multiples Report

Tag Duplicates and Multiples report endpoints

Operations

Variable Inventory Report

Variable Inventory report endpoints

Operations

Browser Logs Report

Browser Logs report endpoints

Operations

File Changes Report

File changes report endpoints

Operations

Tag Privacy Report

Tag privacy report endpoints

Operations

Request Privacy Report

Request Privacy report endpoints

Operations

Exports Center

Access requested exports status/information

Operations

Scheduled Exports

Manage scheduled grid report data exports

Operations

Audit Run Export

Export audit run data

Operations

Web Journey Run Export

Export web journey run data

Operations

Manual Journey Run Export

Export manual journey run data

Operations

Alerts

Alert management and configuration

Operations

Account's Triggered Alerts

Account-level triggered alerts

Operations
Operations
Operations

Account Usage Alerts

Alerts related to account usage

Operations

Account Usage Export

Export account usage data

Operations

Notification Center

Find and manage email subscriptions

Operations

Request

GET /v3/notification-center/emails
Security
API_Key
curl -i -X GET \
  https://api.observepoint.com/v3/notification-center/emails \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

All emails in account, their usage and corresponding users

Bodyapplication/json
emailsArray of objects>= 0 itemsrequired
emails[].​emailstringrequired
emails[].​usageobjectrequired
emails[].​usage.​auditCountintegerrequired
emails[].​usage.​webJourneyCountintegerrequired
emails[].​usage.​ruleCountintegerrequired
emails[].​usage.​alertCountintegerrequired

Number of alerts excluding usage alerts

emails[].​usage.​usageAlertCountinteger
emails[].​usage.​emailInboxMessageReceivedCountintegerrequired
emails[].​usage.​emailInboxMessageProcessedCountintegerrequired
emails[].​usage.​scheduledExportCountinteger
Response
application/json
{ "emails": [ {} ] }

Get emails subscribed to given items

Request

POST /v3/notification-center/emails
Security
API_Key
Bodyapplication/jsonrequired
itemTypestringrequired
Value"AUDIT"
itemIdsArray of integers(int64)non-emptyrequired

Non-empty array of item IDs. Emails for selected items only will be shown

Example: [107239]
curl -i -X POST \
  https://api.observepoint.com/v3/notification-center/emails \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "itemType": "AUDIT",
    "itemIds": [
      107239
    ]
  }'

Responses

List of emails subscribed to given items that accessible by user

Bodyapplication/json
emailsArray of objects>= 0 itemsrequired
emails[].​emailstringrequired
emails[].​usageobjectrequired
emails[].​usage.​auditCountintegerrequired
emails[].​usage.​webJourneyCountintegerrequired
emails[].​usage.​ruleCountintegerrequired
emails[].​usage.​alertCountintegerrequired

Number of alerts excluding usage alerts

emails[].​usage.​usageAlertCountinteger
emails[].​usage.​emailInboxMessageReceivedCountintegerrequired
emails[].​usage.​emailInboxMessageProcessedCountintegerrequired
emails[].​usage.​scheduledExportCountinteger
Response
application/json
{ "emails": [ {} ] }

Search assignable items (audits, journeys, rules etc) for specified email

Request

POST /v3/notification-center/target-items/{itemType}/search
Security
API_Key
Path
itemTypestringrequired
Enum"AUDIT""WEB_JOURNEY""RULE""ALERT""USAGE_ALERT""EMAIL_INBOX_MESSAGE_RECEIVED""EMAIL_INBOX_MESSAGE_PROCESSED""SCHEDULED_EXPORT"
Query
sizeinteger[ 50 .. 1000 ]
Default 50
sortBystring
Enum"IS_ASSIGNED""ITEM_NAME""RUN_DATE"
pageinteger>= 0

Number of results page of an endpoint with paginated results

Default 0
sortDescboolean

Controls sorting order

Default false
Bodyapplication/jsonrequired
emailstringnon-emptyrequired

email to search for

itemNamestringnon-empty

optional "item name contains substring" filter

itemLabelsArray of integers(int64)non-empty

non-empty array of labels present on an item. When multiple labels specified, target item is expected to have all of them (condition works as "AND" for all labels specified)

isAssignedboolean
  • when TRUE - only target items with the specified email currently assigned will be returned;
  • when FALSE - only target items with the specified email currently NOT assigned will be returned;
  • when UNDEFINED or NULL - flag is ignored.
curl -i -X POST \
  'https://api.observepoint.com/v3/notification-center/target-items/{itemType}/search?size=50&sortBy=IS_ASSIGNED&page=0&sortDesc=false' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "itemName": "string",
    "itemLabels": [
      0
    ],
    "isAssigned": true
  }'

Responses

Items that have specified email both assigned and not assigned

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

itemsArray of objectsrequired
items[].​isAssignedbooleanrequired

TRUE if specified email is assigned to this item, FALSE otherwise

items[].​isEditablebooleanrequired

TRUE if specified email can be assigned or unassigned from this item, FALSE otherwise

items[].​itemTypestringrequired
Enum"AUDIT""WEB_JOURNEY""RULE""ALERT""USAGE_ALERT""EMAIL_INBOX_MESSAGE_RECEIVED""EMAIL_INBOX_MESSAGE_PROCESSED""SCHEDULED_EXPORT"
items[].​itemIdinteger(int64)required

ID of a data collector, see ItemType

Example: 107239
items[].​itemNamestringrequired

Name of audit/WJ/rule/alert etc

items[].​itemLastRunAtstring(date-time)

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"
items[].​itemLabelsArray of integers(int64)>= 0 items

may be absent if item does not support labels

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

Email Inbox Messages

Get Email Inbox message details

Operations

Email Inbox Message Alerts

Email inbox message alerts

Operations