我正在尝试查找Office 365服务的区域。 Microsoft's Office 365 documentation声明数据存储区域是向客户公开的。
是否可以通过API请求找到服务的区域?
我一直在查看有关Service Communications API,reporting web service和unified API的文档,但未找到有关如何获取服务区域的文档。
谢谢!
答案 0 :(得分:1)
目前还没有API来获取服务区域。
您可以使用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 magrom@contoso.onmicrosoft.com | FL
您可以查看OrganizationId字段以查看您的租户所在的区域。