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.
Data Sources
v3 API Endpoints
Alert Summary Report
Audit Summary Report
Browser Logs Report
Cookie Inventory Report
Cookie Privacy report endpoints
File Changes Report
Page Details Report
Page Summary Report
Request Privacy Report
Rule Summary Report
Tag Duplicates and Multiples Report
Tag Health Report
Tag Inventory Report
Tag Privacy Report
Variable Inventory Report
Audit Run Data
Web Journey Cookie Report
Account Usage Export
Alert Export
Audit Run Export
Consent Category Export
Exports Center
Manual Journey Run Export
Scheduled Exports
Web Journey Run Export
Account's Triggered Alerts
Account Usage Alerts
Alerts
Email Inbox Message Alerts
Account Usage
Email Inbox Configuration
Email Inbox Messages
Email Inboxes
Action Set Action Rules
Action Set Actions
Action Sets
Audit Actions
Audit Blocking Config
Audit Login Actions
Audits Consent Category
Audits Management
Consent Categories
Custom Headers
Geo Locations
Notification Center
Remote File Mappings
Rules
Schedules
Site Censuses
User Events
Web Journey Blocking Config
Web Journey Custom Headers
Web Journeys Management
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
Query
if true - response will only include data sources that have at least one run, if false - only data sources that have no runs. All data sources if not set.
if true - response will include labels for each data source, if false - only the data source id. All data sources if not set. Disabling labels will improve performance.
Default true
- ObservePoint Production APIhttps://api.observepoint.com/v3/data-sources
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/data-sources?page=0&pageSize=100&sortBy=itemName&sortDesc=false&itemName=string&labelIds=0&itemType=audit&withRuns=true&withLabels=true&withConsentCategories=true' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "metadata": { "pagination": { … } }, "dataSources": [ { … } ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/data-sources/search
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v3/data-sources/search?page=0&pageSize=100&sortBy=itemName&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"itemName": "string",
"labelIds": [
0
],
"itemIds": [
0
],
"itemType": "audit",
"withRuns": true
}'Response
application/json
{ "metadata": { "pagination": { … } }, "dataSources": [ { … } ] }
Bodyapplication/json
non-empty array of labels present on an item, works as "item has all specified labels" filter
Example: [223]
- ObservePoint Production APIhttps://api.observepoint.com/v3/data-sources/target-items/{itemType}/search
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v3/data-sources/target-items/{itemType}/search?sortBy=ITEM_NAME&sortDesc=false&pageSize=100&page=0' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"searchItemType": "ALERT",
"searchedItemId": 0,
"assignedToSearchedItem": true,
"itemName": "string",
"itemLabels": [
223
],
"folders": {
"folders": [
{
"folderId": 123,
"domains": [
123
]
}
]
}
}'Response
application/json
{ "metadata": { "totalCount": 0, "totalPageCount": 0, "pageSize": 0, "currentPageSize": 0, "currentPageNumber": 0 }, "items": [ { … } ] }