0
votes

I am trying to find the region of an Office 365 service. Microsoft's Office 365 documentation states that the data storage regions are disclosed to the customer.

Is it possible to find a service's region via an API request?

I've been looking through documentation on the Service Communications API, the reporting web service, and the unified API, but have found no mention on how to get the service's region.

Thanks!

1

1 Answers

1
votes

There currently isn't an API to get the service region.

You can get this information using powershell: $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session Get-Mailbox -Identity [email protected] | fl

You can look at the OrganizationId field to see which region your tenant is in.