列出 organizations
命名空间:microsoft.graph
检索组织对象列表。 集合中只有一个组织对象。
此 API 可用于以下国家级云部署。
全局服务 | 美国政府 L4 | 美国政府 L5 (DOD) | 由世纪互联运营的中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
权限
要调用此 API,需要以下权限之一。 若要了解详细信息,包括如何选择权限的信息,请参阅权限。
权限类型 | 权限(从最低特权到最高特权) |
---|---|
委派(工作或学校帐户) | User.Read、Organization.Read.All、Directory.Read.All、Organization.ReadWrite.All、Directory.ReadWrite.All |
委派(个人 Microsoft 帐户) | 不支持。 |
应用程序 | Organization.Read.All、Directory.Read.All、Organization.ReadWrite.All、Directory.ReadWrite.All |
重要
授予 User.Read 权限的应用程序只能读取组织的 id、 displayName 和 verifiedDomains 属性。 所有其他属性返回值 null
。 若要读取所有属性,请至少使用 Organization.Read.All。
在具有工作或学校帐户的委托方案中,必须为登录用户分配受支持的Microsoft Entra角色或具有支持的角色权限的自定义角色。 此操作支持以下最低特权角色。
- AdHoc 许可证管理员
- 应用程序管理员
- 身份验证管理员
- Azure 信息保护管理员
- Azure 信息保护管理员
- 帐务管理员
- 云应用程序管理员
- 合规数据管理员
- 客户密码箱访问审批者
- 客户密码箱访问审批者
- 桌面分析管理员
- 目录读取器
- 目录审阅者
- 目录同步帐户 - 用于 Microsoft Entra Connect 和 Microsoft Entra Cloud Sync 服务
- 目录作者
- Dynamics 365管理员
- Dynamics 365管理员
- 全局读取者
- 来宾用户
- 帮助台管理员
- 混合标识管理员
- Insights 管理员
- Kaizala 管理员
- 许可证管理员
- 邮箱管理员
- Microsoft托管桌面管理员
- 适用于企业的 Microsoft Store用户
- 新式商务管理员
- Power BI 管理员
- Power BI 管理员
- 特权身份验证管理员
- 特权角色管理员
- 受限来宾用户
- 安全管理员
- 安全操作员
- 安全信息读取者
- 服务支持管理员
- Teams 管理员
- Teams 通信管理员
- Teams 通信支持工程师
- Teams 通信支持专家
- 用户
- 用户管理员
- 批量许可业务中心用户
- 批量许可服务中心用户
HTTP 请求
GET /organization
可选的查询参数
此方法支持 $select
OData 查询参数 来帮助自定义响应。
请求标头
名称 | 类型 | 说明 |
---|---|---|
Authorization | string | 持有者 {token}。 必填。 详细了解 身份验证和授权。 |
请求正文
请勿提供此方法的请求正文。
响应
如果成功,此方法在响应正文中返回 200 OK
响应代码和 organization 对象集合。 集合中仅返回一个 对象。
示例
请求
以下示例显示了一个请求。
GET https://graph.microsoft.com/v1.0/organization
响应
以下示例显示了相应的响应。
注意:为了提高可读性,可能缩短了此处显示的响应对象。
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#organization",
"value": [
{
"id": "84841066-274d-4ec0-a5c1-276be684bdd3",
"deletedDateTime": null,
"businessPhones": [
"425-555-0100"
],
"city": null,
"country": null,
"countryLetterCode": "NL",
"createdDateTime": "2021-08-02T10:30:06Z",
"defaultUsageLocation": "String",
"displayName": "Contoso",
"isMultipleDataLocationsForServicesEnabled": null,
"marketingNotificationEmails": [],
"onPremisesLastSyncDateTime": null,
"onPremisesSyncEnabled": null,
"partnerTenantType": "ResellerPartnerDelegatedAdmin",
"postalCode": null,
"preferredLanguage": "en",
"securityComplianceNotificationMails": [],
"securityComplianceNotificationPhones": [],
"state": null,
"street": null,
"technicalNotificationMails": [
"admin@contoso.com"
],
"tenantType": "AAD",
"directorySizeQuota": {
"used": 698,
"total": 50000
},
"assignedPlans": [
{
"assignedDateTime": "2022-04-03T02:46:42Z",
"capabilityStatus": "Deleted",
"service": "Adallom",
"servicePlanId": "932ad362-64a8-4783-9106-97849a1a30b9"
},
{
"assignedDateTime": "2022-04-03T02:46:42Z",
"capabilityStatus": "Deleted",
"service": "MultiFactorService",
"servicePlanId": "8a256a2b-b617-496d-b51b-e76466e88db0"
},
{
"assignedDateTime": "2021-08-02T10:36:57Z",
"capabilityStatus": "Enabled",
"service": "exchange",
"servicePlanId": "113feb6c-3fe4-4440-bddc-54d774bf0318"
},
{
"assignedDateTime": "2021-08-02T10:36:02Z",
"capabilityStatus": "Deleted",
"service": "SCO",
"servicePlanId": "882e1d05-acd1-4ccb-8708-6ee03664b117"
}
],
"privacyProfile": {
"contactEmail": "",
"statementUrl": ""
},
"provisionedPlans": [
{
"capabilityStatus": "Deleted",
"provisioningStatus": "Success",
"service": "Adallom"
},
{
"capabilityStatus": "Enabled",
"provisioningStatus": "Success",
"service": "exchange"
}
],
"verifiedDomains": [
{
"capabilities": "Email, OfficeCommunicationsOnline",
"isDefault": true,
"isInitial": true,
"name": "contoso.com",
"type": "Managed"
}
]
}
]
}