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//
- Generate a description of a schedule's recurrence
Get all schedule presets
Calculate future occurrences based on the new schedules and the old frequencies
Update calendar items' schedules using this endpoint.
Generate a description of...
V3 API
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://api.observepoint.com/v3/schedules/presets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/schedules/presets \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "freqId": "15_MIN", "friendlyName": "Every 15 Minutes", "rule": "FREQ=MINUTELY;INTERVAL=15", "groupId": "string" } ]
- ObservePoint Production APIhttps://api.observepoint.com/v3/schedules/rule-description
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v3/schedules/rule-description \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"recurrenceRule": "string"
}'Response
application/json
{ "description": "string" }
- ObservePoint Production APIhttps://api.observepoint.com/v3/schedules/calendar
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/schedules/calendar?localStartDateTime=string&localEndDateTime=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "itemName": "string", "itemId": 0, "itemType": "AUDIT", "runs": [ … ], "futureOccurrences": [ … ], "folderId": 123, "subFolderId": 0, "userId": 123, "labels": [ … ], "isMonitoredByScriptServices": true, "schedule": { … } } ]