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.
- Delete specific Scheduled Export
V3 API
Scheduled Export definition
Configuration for the email sent when export completes.
List of email addresses that will receive export email.
When and how often Scheduled Export will be run.
Date of first desired start (if in range of recurrence rule).
An RFC-5545 (https://www.rfc-editor.org/rfc/rfc5545#appendix-A) compliant recurrence rule string.
Timezone identifier compliant with tz database (ex. America/New_York). https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- ObservePoint Production APIhttps://api.observepoint.com/v3/exports/scheduled/{scheduledExportId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api.observepoint.com/v3/exports/scheduled/{scheduledExportId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"exportedItemType": "saved_report",
"exportedItemId": 0,
"exportFileFormat": "csv",
"exportEmailConfig": {
"addExportFileAttachment": true,
"customMessage": "string",
"reportLinkType": "public_link"
},
"emails": [
"user@example.com"
],
"schedule": {
"dtStart": "2025-03-14T12:00:00",
"recurrenceRule": "WKST=SU;FREQ=DAILY;INTERVAL=1",
"tzId": "America/New_York",
"isPaused": true,
"exceptions": [
"2025-03-14T12:00:00"
]
}
}'Updated Scheduled Export
Configuration for the email sent when export completes.
List of email addresses that will receive export email.
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
Date of first desired start (if in range of recurrence rule).
An RFC-5545 (https://www.rfc-editor.org/rfc/rfc5545#appendix-A) compliant recurrence rule string.
Timezone identifier compliant with tz database (ex. America/New_York). https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
List of dates to skip when scheduling.
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
{ "name": "string", "exportedItemType": "saved_report", "exportedItemId": 0, "exportFileFormat": "csv", "exportEmailConfig": { "addExportFileAttachment": true, "customMessage": "string", "reportLinkType": "public_link" }, "emails": [ "user@example.com" ], "id": 0, "createdAt": "2016-08-18T17:33:00Z", "updatedAt": "2016-08-18T17:33:00Z", "owner": { "id": 123, "userName": "string" }, "schedule": { "dtStart": "2025-03-14T12:00:00", "recurrenceRule": "WKST=SU;FREQ=DAILY;INTERVAL=1", "tzId": "America/New_York", "isPaused": true, "exceptions": [ … ], "description": "Every day", "presetType": "DAILY", "nextExportAt": "2016-08-18T17:33:00Z" }, "exportedItemName": "string", "isEditable": true }
- ObservePoint Production APIhttps://api.observepoint.com/v3/exports/scheduled/{scheduledExportId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.observepoint.com/v3/exports/scheduled/{scheduledExportId}' \
-H 'Authorization: YOUR_API_KEY_HERE'