Skip to content

sendScheduledReportAsync

Send a scheduled report now asynchronously via email.

Arguments

Argument Type Description
input (required) SendScheduledReportAsyncInput! Input required for generating and sending report email.

Returns

AsyncDownloadReply!

Sample

mutation SendScheduledReportAsync($input: SendScheduledReportAsyncInput!) {
  sendScheduledReportAsync(input: $input) {
    downloadId
    externalId
    jobId
    referenceId
  }
}
{
  "input": {
    "reportId": 0
  }
}
{
  "data": {
    "sendScheduledReportAsync": {
      "downloadId": 0,
      "externalId": "example-string",
      "jobId": 0,
      "referenceId": "example-string"
    }
  }
}