Skip to content

o365SaasSetupComplete

Completes a Rubrik-Hosted setup flow.

Arguments

Argument Type Description
input (required) O365SaasSetupCompleteInput! The input for the O365SaasSetupComplete mutation.

Returns

AddO365OrgResponse!

Sample

mutation O365SaasSetupComplete($input: O365SaasSetupCompleteInput!) {
  o365SaasSetupComplete(input: $input) {
    orgId
    refreshOrgTaskchainId
  }
}
{
  "input": {
    "appTypes": [
      "example-string"
    ],
    "regionName": "example-string",
    "stateToken": "example-string",
    "storeBackupInSameRegionAsData": true,
    "tenantId": "example-string"
  }
}
{
  "data": {
    "o365SaasSetupComplete": {
      "orgId": "example-string",
      "refreshOrgTaskchainId": "example-string"
    }
  }
}