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
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/custom-headers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-journeys/107239/custom-headers \
-H 'Authorization: YOUR_API_KEY_HERE'Successfully returned a list of custom headers for the web journey
Indicates whether custom header should be applied to all requests. For GET request, indicates that the header is not just assigned to the request but also applied to all requests. For PUT request, it specifies that the header should be updated to apply to all requests, if set to true, header will not be applied to the request.
{ "assignedCustomHttpHeaders": [ { … } ] }
The Web Journey Custom Headers to update
Indicates whether custom header should be applied to all requests. For GET request, indicates that the header is not just assigned to the request but also applied to all requests. For PUT request, it specifies that the header should be updated to apply to all requests, if set to true, header will not be applied to the request.
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-journeys/{webJourneyId}/custom-headers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api.observepoint.com/v3/web-journeys/107239/custom-headers \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"assignedCustomHttpHeaders": [
{
"groupId": 0,
"isApplyToAll": true
}
]
}'Successfully updated the custom headers for the web journey
Indicates whether custom header should be applied to all requests. For GET request, indicates that the header is not just assigned to the request but also applied to all requests. For PUT request, it specifies that the header should be updated to apply to all requests, if set to true, header will not be applied to the request.
{ "assignedCustomHttpHeaders": [ { … } ] }