Skip to content

downloadReportPdfAsync

Download a report asynchronously in PDF format.

Arguments

Argument Type Description
input (required) DownloadReportPdfAsyncInput!

Returns

AsyncDownloadReply!

Sample

mutation DownloadReportPdfAsync($input: DownloadReportPdfAsyncInput!) {
  downloadReportPdfAsync(input: $input) {
    downloadId
    externalId
    jobId
    referenceId
  }
}
{
  "input": {
    "id": 0
  }
}
{
  "data": {
    "downloadReportPdfAsync": {
      "downloadId": 0,
      "externalId": "example-string",
      "jobId": 0,
      "referenceId": "example-string"
    }
  }
}