Skip to content

m365OrgBackupLocations

Returns the backup locations of an M365 organization.

Arguments

Argument Type Description
orgId (required) UUID! Org UUID.

Returns

M365OrgBackupLocations!

Sample

query M365OrgBackupLocations($orgId: UUID!) {
  m365OrgBackupLocations(orgId: $orgId)
}
{
  "orgId": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "m365OrgBackupLocations": {
      "primaryLocation": {
        "code": "example-string",
        "name": "example-string"
      },
      "secondaryLocations": [
        {
          "code": "example-string",
          "name": "example-string"
        }
      ]
    }
  }
}