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

Request

GET /v3/action-sets

Retrieve all action sets in the account

Security
API_Key
Query
accountIdinteger

Filter action sets by account ID

curl -i -X GET \
  'https://api.observepoint.com/v3/action-sets?accountId=0' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action sets retrieved successfully

Bodyapplication/jsonArray [
idinteger(int64)read-only
namestringnon-emptyrequired

Name of the action set

actionsArray of objectsnon-emptyrequired

List of actions in the action set

actions[].​sequenceintegerrequired

Sequence number of the action

actions[].​idinteger(int64)read-only

ID of the action

actions[].​descriptionstring

Description of the action. Present for all actionTypes except: actionSet

actions[].​actionTypestringrequired

Type of the user action

Enum"click""input""maskedinput""select""check""uncheck""enteriframe""navto""watch""clearcookies"
actions[].​waitDurationinteger

Duration to wait in milliseconds. Present for actionTypes: navTo, click, input, select, check, uncheck, execute, watch, maskedInput, enterIFrame, exitIFrame, clearCookies, privacyOptIn, privacyOptOut

actions[].​selectorsArray of objects

List of selectors for element-based actions. Present for actionTypes: click, input, select, check, uncheck, maskedInput, enterIFrame

actions[].​preventNavigationboolean

Whether to prevent navigation after action execution. Present for actionTypes: click, input, select, check, uncheck, execute, watch, maskedInput

actions[].​valuestring

Value field with different meanings per actionType. For input/select: input value. For navTo: URL. For privacyOptIn/privacyOptOut: URL. For execute: JavaScript code. Present for actionTypes: input, select, navTo, privacyOptIn, privacyOptOut, execute

actions[].​maskedValuestring

Masked value for secure input actions. Present for actionType: maskedInput

actions[].​jsstring

JavaScript code to execute. Present for actionType: execute

actions[].​urlstring

URL for navigation and privacy actions. Present for actionTypes: navTo, privacyOptIn, privacyOptOut

actions[].​secondsinteger

Number of seconds to watch/wait. Present for actionType: watch

actions[].​isRequiredboolean

Whether privacy action is required. Present for actionTypes: privacyOptIn, privacyOptOut

actions[].​actionSetIdinteger(int64)

ID of the action set this action belongs to. For actionType 'actionSet', this contains the referenced action set ID

actions[].​pageFilterstring

Page filter pattern for the action

updatedAtstring(local-date-time)read-only

Timestamp when the action set was last updated

createdAtstring(local-date-time)read-only

Timestamp when the action set was created

accountIdintegerread-only

ID of the account the action set belongs to

userIdintegerread-only

ID of the user the action set belongs to

]
Response
application/json
[ { "id": 0, "name": "string", "actions": [ … ], "updatedAt": "string", "createdAt": "string", "accountId": 0, "userId": 0 } ]

Request

POST /v3/action-sets

Create a new action set

Security
API_Key
Query
accountIdinteger

Account ID to create action set in

Bodyapplication/jsonrequired
namestringnon-emptyrequired

Name of the action set

actionsArray of objectsnon-emptyrequired

List of actions in the action set

actions[].​sequenceintegerrequired

Sequence number of the action

actions[].​descriptionstring

Description of the action. Present for all actionTypes except: actionSet

actions[].​actionTypestringrequired

Type of the user action

Enum"click""input""maskedinput""select""check""uncheck""enteriframe""navto""watch""clearcookies"
actions[].​waitDurationinteger

Duration to wait in milliseconds. Present for actionTypes: navTo, click, input, select, check, uncheck, execute, watch, maskedInput, enterIFrame, exitIFrame, clearCookies, privacyOptIn, privacyOptOut

actions[].​selectorsArray of objects

List of selectors for element-based actions. Present for actionTypes: click, input, select, check, uncheck, maskedInput, enterIFrame

actions[].​preventNavigationboolean

Whether to prevent navigation after action execution. Present for actionTypes: click, input, select, check, uncheck, execute, watch, maskedInput

actions[].​valuestring

Value field with different meanings per actionType. For input/select: input value. For navTo: URL. For privacyOptIn/privacyOptOut: URL. For execute: JavaScript code. Present for actionTypes: input, select, navTo, privacyOptIn, privacyOptOut, execute

actions[].​maskedValuestring

Masked value for secure input actions. Present for actionType: maskedInput

actions[].​jsstring

JavaScript code to execute. Present for actionType: execute

actions[].​urlstring

URL for navigation and privacy actions. Present for actionTypes: navTo, privacyOptIn, privacyOptOut

actions[].​secondsinteger

Number of seconds to watch/wait. Present for actionType: watch

actions[].​isRequiredboolean

Whether privacy action is required. Present for actionTypes: privacyOptIn, privacyOptOut

actions[].​actionSetIdinteger(int64)

ID of the action set this action belongs to. For actionType 'actionSet', this contains the referenced action set ID

actions[].​pageFilterstring

Page filter pattern for the action

curl -i -X POST \
  'https://api.observepoint.com/v3/action-sets?accountId=0' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "actions": [
      {
        "sequence": 0,
        "description": "string",
        "actionType": "click",
        "waitDuration": 0,
        "selectors": [
          {
            "selectorType": "id",
            "value": null
          }
        ],
        "preventNavigation": true,
        "value": "string",
        "maskedValue": "string",
        "js": "string",
        "url": "string",
        "seconds": 0,
        "isRequired": true,
        "actionSetId": 0,
        "pageFilter": "string"
      }
    ]
  }'

Responses

Action set created successfully

Bodyapplication/json
idinteger(int64)read-only
namestringnon-emptyrequired

Name of the action set

actionsArray of objectsnon-emptyrequired

List of actions in the action set

actions[].​sequenceintegerrequired

Sequence number of the action

actions[].​idinteger(int64)read-only

ID of the action

actions[].​descriptionstring

Description of the action. Present for all actionTypes except: actionSet

actions[].​actionTypestringrequired

Type of the user action

Enum"click""input""maskedinput""select""check""uncheck""enteriframe""navto""watch""clearcookies"
actions[].​waitDurationinteger

Duration to wait in milliseconds. Present for actionTypes: navTo, click, input, select, check, uncheck, execute, watch, maskedInput, enterIFrame, exitIFrame, clearCookies, privacyOptIn, privacyOptOut

actions[].​selectorsArray of objects

List of selectors for element-based actions. Present for actionTypes: click, input, select, check, uncheck, maskedInput, enterIFrame

actions[].​preventNavigationboolean

Whether to prevent navigation after action execution. Present for actionTypes: click, input, select, check, uncheck, execute, watch, maskedInput

actions[].​valuestring

Value field with different meanings per actionType. For input/select: input value. For navTo: URL. For privacyOptIn/privacyOptOut: URL. For execute: JavaScript code. Present for actionTypes: input, select, navTo, privacyOptIn, privacyOptOut, execute

actions[].​maskedValuestring

Masked value for secure input actions. Present for actionType: maskedInput

actions[].​jsstring

JavaScript code to execute. Present for actionType: execute

actions[].​urlstring

URL for navigation and privacy actions. Present for actionTypes: navTo, privacyOptIn, privacyOptOut

actions[].​secondsinteger

Number of seconds to watch/wait. Present for actionType: watch

actions[].​isRequiredboolean

Whether privacy action is required. Present for actionTypes: privacyOptIn, privacyOptOut

actions[].​actionSetIdinteger(int64)

ID of the action set this action belongs to. For actionType 'actionSet', this contains the referenced action set ID

actions[].​pageFilterstring

Page filter pattern for the action

updatedAtstring(local-date-time)read-only

Timestamp when the action set was last updated

createdAtstring(local-date-time)read-only

Timestamp when the action set was created

accountIdintegerread-only

ID of the account the action set belongs to

userIdintegerread-only

ID of the user the action set belongs to

Response
application/json
{ "id": 0, "name": "string", "actions": [ { … } ], "updatedAt": "string", "createdAt": "string", "accountId": 0, "userId": 0 }

Request

GET /v3/action-sets/{actionSetId}

Retrieve a specific action set by its ID

Security
API_Key
Path
actionSetIdinteger(int64)required

ID of the action set to retrieve

curl -i -X GET \
  'https://api.observepoint.com/v3/action-sets/{actionSetId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action set retrieved successfully

Bodyapplication/json
idinteger(int64)read-only
namestringnon-emptyrequired

Name of the action set

actionsArray of objectsnon-emptyrequired

List of actions in the action set

actions[].​sequenceintegerrequired

Sequence number of the action

actions[].​idinteger(int64)read-only

ID of the action

actions[].​descriptionstring

Description of the action. Present for all actionTypes except: actionSet

actions[].​actionTypestringrequired

Type of the user action

Enum"click""input""maskedinput""select""check""uncheck""enteriframe""navto""watch""clearcookies"
actions[].​waitDurationinteger

Duration to wait in milliseconds. Present for actionTypes: navTo, click, input, select, check, uncheck, execute, watch, maskedInput, enterIFrame, exitIFrame, clearCookies, privacyOptIn, privacyOptOut

actions[].​selectorsArray of objects

List of selectors for element-based actions. Present for actionTypes: click, input, select, check, uncheck, maskedInput, enterIFrame

actions[].​preventNavigationboolean

Whether to prevent navigation after action execution. Present for actionTypes: click, input, select, check, uncheck, execute, watch, maskedInput

actions[].​valuestring

Value field with different meanings per actionType. For input/select: input value. For navTo: URL. For privacyOptIn/privacyOptOut: URL. For execute: JavaScript code. Present for actionTypes: input, select, navTo, privacyOptIn, privacyOptOut, execute

actions[].​maskedValuestring

Masked value for secure input actions. Present for actionType: maskedInput

actions[].​jsstring

JavaScript code to execute. Present for actionType: execute

actions[].​urlstring

URL for navigation and privacy actions. Present for actionTypes: navTo, privacyOptIn, privacyOptOut

actions[].​secondsinteger

Number of seconds to watch/wait. Present for actionType: watch

actions[].​isRequiredboolean

Whether privacy action is required. Present for actionTypes: privacyOptIn, privacyOptOut

actions[].​actionSetIdinteger(int64)

ID of the action set this action belongs to. For actionType 'actionSet', this contains the referenced action set ID

actions[].​pageFilterstring

Page filter pattern for the action

updatedAtstring(local-date-time)read-only

Timestamp when the action set was last updated

createdAtstring(local-date-time)read-only

Timestamp when the action set was created

accountIdintegerread-only

ID of the account the action set belongs to

userIdintegerread-only

ID of the user the action set belongs to

Response
application/json
{ "id": 0, "name": "string", "actions": [ { … } ], "updatedAt": "string", "createdAt": "string", "accountId": 0, "userId": 0 }

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