v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBdashboardManagement
Start a report job
Schedule an asynchronous job to generate a report from a template. All items in the template will be included unless specified. See template section for more details on individual templates. Reports can be generated in Pdf or Png format and exported in various methods (ex. direct download). You will get back an asynchronous job identifier on success. Use the getAsyncReportGenerationStatus endpoint and the job identifier you got back in the response to track the status of an asynchronous report generation job.
post/v2/dashboards/reportJobs
Request body
Example request
{
"action": {
"actionType": "DirectDownloadReportAction"
},
"exportFormat": "Pdf",
"timezone": "America/Los_Angeles",
"template": {
"templateType": "DashboardTemplate"
},
"theme": "Light",
"exportWidth": 1500
}Response
Export job has been scheduled.
Example response
{
"id": "C03E086C137F38B4"
}