v3 API//
- Update specific Scheduled Export
Get Scheduled Exports
Create scheduled export
Get specific Scheduled Export
Delete specific Scheduled Export
Update specific Scheduled...
PUT /v3/exports/scheduled/{scheduledExportId}
Security
API_Key
Scheduled Export definition
List of email addresses that will receive export email. If empty, no emails will be sent. If omitted, emails will not be changed (update only).
PUT
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",
"suppressEmailWhenNoData": false
},
"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
List of email addresses that will receive export email. If empty, no emails will be sent. If omitted, emails will not be changed (update only).
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
Example:"2016-08-18T17:33:00Z"
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
Example:"2016-08-18T17:33:00Z"
Response
{ "name": "string", "exportedItemType": "saved_report", "exportedItemId": 0, "exportFileFormat": "csv", "exportEmailConfig": { "addExportFileAttachment": true, "customMessage": "string", "reportLinkType": "public_link", "suppressEmailWhenNoData": false }, "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 }