Skip to content

backupM365Onedrive

Take on-demand snapshot for Onedrive.

Arguments

Argument Type Description
input (required) BackupM365OnedriveInput! The input for BackupM365Onedrive.

Returns

[CreateOnDemandJobReply!]!

Sample

mutation BackupM365Onedrive($input: BackupM365OnedriveInput!) {
  backupM365Onedrive(input: $input) {
    jobId
    taskchainId
  }
}
{
  "input": {
    "workloadUuids": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "backupM365Onedrive": [
      {
        "jobId": 0,
        "taskchainId": "example-string"
      }
    ]
  }
}