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//
- Update 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
Get all 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
Update the consent catego...
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}/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": [ { … } ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/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/runs/33010/consent-categories \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "consentCategorySnapshots": [ { … } ] }