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//
- Search for target items (audits or web journeys) for custom header assignment
Get all custom header groups
Create a custom header group
Get a custom header group by ID
Update a custom header group
Delete a custom header group by ID
Search for target items (...
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/custom-headers/{customHeaderGroupId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v3/custom-headers/{customHeaderGroupId}' \
-H 'Authorization: YOUR_API_KEY_HERE'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/custom-headers/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/custom-headers/target-items/{itemType}/search?sortBy=IS_ASSIGNED&sortDesc=false&pageSize=100&page=0' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"customHeaderGroupId": 0,
"assignedToCustomHeaderGroup": 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": [ { … } ] }