curl --request POST \
--url https://{instance}.domo.com/api/content/v1/reportschedules \
--header 'Content-Type: application/json' \
--header 'X-DOMO-Developer-Token: <api-key>' \
--data '
{
"title": "Weekly Performance Report",
"pageId": 345678,
"viewId": 789012,
"schedule": {
"frequency": "WEEKLY",
"daysToRun": "MON",
"hourOfDay": 8,
"minOfHour": 0,
"timezone": "America/New_York",
"enabled": true,
"additionalRecipients": [
{
"type": "EMAIL",
"value": "user@example.com"
}
]
},
"attachmentInclude": true
}
'{
"id": 123457,
"reportViewId": 789012,
"pageId": 345678,
"title": "Weekly Performance Report",
"schedule": {
"frequency": "WEEKLY",
"daysToRun": "MON",
"hourOfDay": 8,
"minOfHour": 0,
"enabled": true,
"nextRunDate": 1700481600000
}
}curl --request POST \
--url https://{instance}.domo.com/api/content/v1/reportschedules \
--header 'Content-Type: application/json' \
--header 'X-DOMO-Developer-Token: <api-key>' \
--data '
{
"title": "Weekly Performance Report",
"pageId": 345678,
"viewId": 789012,
"schedule": {
"frequency": "WEEKLY",
"daysToRun": "MON",
"hourOfDay": 8,
"minOfHour": 0,
"timezone": "America/New_York",
"enabled": true,
"additionalRecipients": [
{
"type": "EMAIL",
"value": "user@example.com"
}
]
},
"attachmentInclude": true
}
'{
"id": 123457,
"reportViewId": 789012,
"pageId": 345678,
"title": "Weekly Performance Report",
"schedule": {
"frequency": "WEEKLY",
"daysToRun": "MON",
"hourOfDay": 8,
"minOfHour": 0,
"enabled": true,
"nextRunDate": 1700481600000
}
}ReportScheduleInfo object