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.
v3 API//
- Get all the consent categories assigned to an audit
Get list of web audits
Get latest runs for web audits
Get audit notes by ID
Update audit notes
run audit now
Get audit configuration info for specified audit run
Update the consent categories assigned to an audit
Retrieve all consent categories snapshots that are applied to a specific audit run.
Reprocess consent-category for the selected auditId and runIds
Get all the consent categ...
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/web-audits/107239/runs/33010/info?includeFilters=false' \
-H 'Authorization: YOUR_API_KEY_HERE'Audit run configuration info
When true, the audit discovers sitemaps on any domains for starting URLs and uses those to find URLs to scan
Filters used for the audit to include and exclude urls to be scanned
Location human readable name. This field maps to the db location.label
Example: "England, London"
Scan speed is the number of engines the customer requests to run the audit with Currently a value between 1-50 is supported, but not guaranteed.
Response
application/json
{ "blockThirdPartyCookies": true, "browserName": "string", "browserVersion": "string", "customProxy": "string", "discoverSitemaps": true, "sitemapData": { "sitemapsScannedCount": 0, "sitemapsScanned": [ … ], "sitemapsBrokenCount": 0, "sitemapsBrokenUrls": [ … ] }, "filters": { "includeFilters": [ … ], "excludeFilters": [ … ] }, "gpcEnabled": true, "height": 0, "loginActions": true, "locationId": 0, "locationName": "England, London", "onPageActions": true, "privacyConsentActions": true, "runDuration": 0, "scanSpeed": 0, "startingUrlCount": 0, "urlsScanned": 0, "userAgent": "string", "vpnEnabled": true, "width": 0, "technologyBlockingEnabled": true, "fileSubstitutionConfigured": true, "customHeadersApplied": true, "auditStoppedByUserId": 0 }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/consent-categories
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-audits/107239/consent-categories \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "consentCategories": [ { … } ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/consent-categories
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://api.observepoint.com/v3/web-audits/107239/consent-categories \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json-patch+json' \
-d '[
[
{
"op": "add",
"path": "/-",
"value": 1
},
{
"op": "remove",
"path": "/",
"value": 2
}
]
]'Response
application/json
{ "consentCategories": [ { … } ] }