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//
- Create blocking configuration for a web journey
Get blocking configuration for a web journey
Create blocking configura...
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/blocking-configuration
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/blocking-configuration \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "tagIds": [ 0 ], "tagCategoryIds": [ 0 ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/blocking-configuration
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api.observepoint.com/v3/web-journeys/107239/blocking-configuration \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"tagIds": [
0
],
"tagCategoryIds": [
0
]
}'Response
application/json
{ "tagIds": [ 0 ], "tagCategoryIds": [ 0 ] }