Skip to content

sendPdfReport

DHRC PDF report generation.

Arguments

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

Returns

SendPdfReportReply!

Sample

mutation SendPdfReport($input: SendPdfReportInput!) {
  sendPdfReport(input: $input) {
    taskchainUuid
  }
}
{
  "input": {
    "nonRubrikRecipientEmailIds": [
      "example-string"
    ],
    "password": "example-string",
    "rubrikRecipientUserIds": [
      "example-string"
    ]
  }
}
{
  "data": {
    "sendPdfReport": {
      "taskchainUuid": "example-string"
    }
  }
}