Skip to content

startSaasAppItemsRestore

Starts an asynchronous job to restore the selected items.

Arguments

Argument Type Description
input (required) AppItemRestoreConfig! Configuration for the items to be restored.

Returns

CreateOnDemandJobReply!

Sample

mutation StartSaasAppItemsRestore($input: AppItemRestoreConfig!) {
  startSaasAppItemsRestore(input: $input) {
    jobId
    taskchainId
  }
}
{
  "input": {
    "orgId": "example-string"
  }
}
{
  "data": {
    "startSaasAppItemsRestore": {
      "jobId": 0,
      "taskchainId": "example-string"
    }
  }
}