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

Request

GET /v3/exports/scheduled
Security
API_Key
Query
searchstring

Return Scheduled Exports which contain the provided text in their name, schedule description, owner user name, or exported item name.

exportedItemTypestring

Return Scheduled Exports with specified exported item type.

Value"saved_report"
exportedItemIdinteger(int64)

Return Scheduled Exports for a specific exported item. Should be used together with exportedItemType parameter.

sizeinteger[ 50 .. 1000 ]
Default 50
sortBystring
Enum"name""schedule_description""schedule_is_paused""owner_user_name""exported_item_type""exported_item_name""is_editable""created_at""updated_at"
pageinteger>= 0

Page number, starts with 0

Default 0
sortDescboolean

Controls sorting order

Default false
curl -i -X GET \
  'https://api.observepoint.com/v3/exports/scheduled?search=string&exportedItemType=saved_report&exportedItemId=0&size=50&sortBy=name&page=0&sortDesc=false' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Paginated list of Scheduled Exports

Bodyapplication/json
metadataobject

Common metadata for iterable

scheduledExportsArray of objects
Response
application/json
{ "metadata": { "pagination": { … } }, "scheduledExports": [ { … } ] }

Request

POST /v3/exports/scheduled
Security
API_Key
Bodyapplication/jsonrequired

Scheduled Export definition

namestringrequired
exportedItemTypestringrequired
Value"saved_report"
exportedItemIdinteger(int64)required
exportFileFormatstringrequired
Enum"csv""tsv""xlsx""parquet"
exportEmailConfigobjectrequired

Configuration for the email sent when export completes.

exportEmailConfig.​addExportFileAttachmentbooleanrequired
exportEmailConfig.​customMessagestring
exportEmailConfig.​reportLinkTypestring
Enum"public_link""regular_link"
emailsArray of strings(email)non-emptyrequired

List of email addresses that will receive export email.

Example: ["user@example.com"]
scheduleobjectrequired

When and how often Scheduled Export will be run.

schedule.​dtStartstring(local-date-time)required

Date of first desired start (if in range of recurrence rule).

Example: "2025-03-14T12:00:00"
schedule.​recurrenceRulestringrequired

An RFC-5545 (https://www.rfc-editor.org/rfc/rfc5545#appendix-A) compliant recurrence rule string.

Example: "WKST=SU;FREQ=DAILY;INTERVAL=1"
schedule.​tzIdstringrequired

Timezone identifier compliant with tz database (ex. America/New_York). https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Example: "America/New_York"
schedule.​isPausedbooleanrequired

Whether the schedule is paused or not.

schedule.​exceptionsArray of strings(local-date-time)non-empty

List of dates to skip when scheduling.

Example: ["2025-03-14T12:00:00"]
curl -i -X POST \
  https://api.observepoint.com/v3/exports/scheduled \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "exportedItemType": "saved_report",
    "exportedItemId": 0,
    "exportFileFormat": "csv",
    "exportEmailConfig": {
      "addExportFileAttachment": true,
      "customMessage": "string",
      "reportLinkType": "public_link"
    },
    "emails": [
      "user@example.com"
    ],
    "schedule": {
      "dtStart": "2025-03-14T12:00:00",
      "recurrenceRule": "WKST=SU;FREQ=DAILY;INTERVAL=1",
      "tzId": "America/New_York",
      "isPaused": true,
      "exceptions": [
        "2025-03-14T12:00:00"
      ]
    }
  }'

Responses

Created Scheduled Export

Bodyapplication/json
namestringrequired
exportedItemTypestringrequired
Value"saved_report"
exportedItemIdinteger(int64)required
exportFileFormatstringrequired
Enum"csv""tsv""xlsx""parquet"
exportEmailConfigobjectrequired

Configuration for the email sent when export completes.

exportEmailConfig.​addExportFileAttachmentbooleanrequired
exportEmailConfig.​customMessagestring
exportEmailConfig.​reportLinkTypestring
Enum"public_link""regular_link"
emailsArray of strings(email)non-emptyrequired

List of email addresses that will receive export email.

Example: ["user@example.com"]
idinteger(int64)required
createdAtstring(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"
updatedAtstring(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"
ownerobject
scheduleobjectrequired

When and how often Scheduled Export will be run.

schedule.​dtStartstring(local-date-time)required

Date of first desired start (if in range of recurrence rule).

Example: "2025-03-14T12:00:00"
schedule.​recurrenceRulestringrequired

An RFC-5545 (https://www.rfc-editor.org/rfc/rfc5545#appendix-A) compliant recurrence rule string.

Example: "WKST=SU;FREQ=DAILY;INTERVAL=1"
schedule.​tzIdstringrequired

Timezone identifier compliant with tz database (ex. America/New_York). https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Example: "America/New_York"
schedule.​isPausedbooleanrequired

Whether the schedule is paused or not.

schedule.​exceptionsArray of strings(local-date-time)non-empty

List of dates to skip when scheduling.

Example: ["2025-03-14T12:00:00"]
schedule.​descriptionstringrequired
Example: "Every day"
schedule.​presetTypestringrequired
Example: "DAILY"
schedule.​nextExportAtstring(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"
exportedItemNamestringrequired
isEditablebooleanrequired
Response
application/json
{ "name": "string", "exportedItemType": "saved_report", "exportedItemId": 0, "exportFileFormat": "csv", "exportEmailConfig": { "addExportFileAttachment": true, "customMessage": "string", "reportLinkType": "public_link" }, "emails": [ "user@example.com" ], "id": 0, "createdAt": "2016-08-18T17:33:00Z", "updatedAt": "2016-08-18T17:33:00Z", "owner": { "id": 123, "userName": "string" }, "schedule": { "dtStart": "2025-03-14T12:00:00", "recurrenceRule": "WKST=SU;FREQ=DAILY;INTERVAL=1", "tzId": "America/New_York", "isPaused": true, "exceptions": [ … ], "description": "Every day", "presetType": "DAILY", "nextExportAt": "2016-08-18T17:33:00Z" }, "exportedItemName": "string", "isEditable": true }

Request

GET /v3/exports/scheduled/{scheduledExportId}
Security
API_Key
Path
scheduledExportIdinteger(int64)required
curl -i -X GET \
  'https://api.observepoint.com/v3/exports/scheduled/{scheduledExportId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Scheduled Export definition

Bodyapplication/json
namestringrequired
exportedItemTypestringrequired
Value"saved_report"
exportedItemIdinteger(int64)required
exportFileFormatstringrequired
Enum"csv""tsv""xlsx""parquet"
exportEmailConfigobjectrequired

Configuration for the email sent when export completes.

exportEmailConfig.​addExportFileAttachmentbooleanrequired
exportEmailConfig.​customMessagestring
exportEmailConfig.​reportLinkTypestring
Enum"public_link""regular_link"
emailsArray of strings(email)non-emptyrequired

List of email addresses that will receive export email.

Example: ["user@example.com"]
idinteger(int64)required
createdAtstring(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"
updatedAtstring(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"
ownerobject
scheduleobjectrequired

When and how often Scheduled Export will be run.

schedule.​dtStartstring(local-date-time)required

Date of first desired start (if in range of recurrence rule).

Example: "2025-03-14T12:00:00"
schedule.​recurrenceRulestringrequired

An RFC-5545 (https://www.rfc-editor.org/rfc/rfc5545#appendix-A) compliant recurrence rule string.

Example: "WKST=SU;FREQ=DAILY;INTERVAL=1"
schedule.​tzIdstringrequired

Timezone identifier compliant with tz database (ex. America/New_York). https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Example: "America/New_York"
schedule.​isPausedbooleanrequired

Whether the schedule is paused or not.

schedule.​exceptionsArray of strings(local-date-time)non-empty

List of dates to skip when scheduling.

Example: ["2025-03-14T12:00:00"]
schedule.​descriptionstringrequired
Example: "Every day"
schedule.​presetTypestringrequired
Example: "DAILY"
schedule.​nextExportAtstring(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"
exportedItemNamestringrequired
isEditablebooleanrequired
Response
application/json
{ "name": "string", "exportedItemType": "saved_report", "exportedItemId": 0, "exportFileFormat": "csv", "exportEmailConfig": { "addExportFileAttachment": true, "customMessage": "string", "reportLinkType": "public_link" }, "emails": [ "user@example.com" ], "id": 0, "createdAt": "2016-08-18T17:33:00Z", "updatedAt": "2016-08-18T17:33:00Z", "owner": { "id": 123, "userName": "string" }, "schedule": { "dtStart": "2025-03-14T12:00:00", "recurrenceRule": "WKST=SU;FREQ=DAILY;INTERVAL=1", "tzId": "America/New_York", "isPaused": true, "exceptions": [ … ], "description": "Every day", "presetType": "DAILY", "nextExportAt": "2016-08-18T17:33:00Z" }, "exportedItemName": "string", "isEditable": true }

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