Groups - Get Group Users
返回有权访问指定工作区的用户的列表。
权限
此 API 调用可由服务主体配置文件调用。 有关详细信息,请参阅:Power BI Embedded中的服务主体配置文件。
所需范围
Workspace.Read.All 或 Workspace.ReadWrite.All
局限性
- 工作区的用户权限需要一段时间才能更新,在使用 API 调用时可能不会立即可用。 若要刷新用户权限,请使用 刷新用户权限 API 调用。
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/users
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/users?$top={$top}&$skip={$skip}
URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 |
|---|---|---|---|---|
|
group
|
path | True |
string (uuid) |
工作区 ID |
|
$skip
|
query |
integer (int32) |
跳过前 n 个结果 |
|
|
$top
|
query |
integer (int32) |
仅返回前 n 个结果 |
响应
| 名称 | 类型 | 说明 |
|---|---|---|
| 200 OK |
还行 |
示例
Example
示例请求
GET https://api.powerbi.com/v1.0/myorg/groups/f089354e-8366-4e18-aea3-4cb4a3a50b48/users
示例响应
{
"value": [
{
"displayName": "John Nick",
"emailAddress": "john@contoso.com",
"groupUserAccessRight": "Admin",
"identifier": "john@contoso.com",
"principalType": "User"
},
{
"displayName": "Adam Wood",
"emailAddress": "Adam@contoso.com",
"groupUserAccessRight": "Member",
"identifier": "Adam@contoso.com",
"principalType": "User"
},
{
"displayName": "ContosoTestApp",
"groupUserAccessRight": "Admin",
"identifier": "3d9b93c6-7b6d-4801-a491-1738910904fd",
"principalType": "App"
}
]
}
定义
| 名称 | 说明 |
|---|---|
|
Group |
有权访问工作区的 Power BI 用户 |
|
Group |
用户对工作区拥有的访问权限(权限级别) |
|
Group |
有权访问工作区的 Power BI 用户列表的 OData 响应包装器 |
|
Principal |
主体类型 |
|
Service |
Power BI 服务主体配置文件。 仅适用于 Power BI Embedded 多租户解决方案。 |
GroupUser
有权访问工作区的 Power BI 用户
| 名称 | 类型 | 说明 |
|---|---|---|
| displayName |
string |
主体的显示名称 |
| emailAddress |
string |
用户的电子邮件地址 |
| graphId |
string |
Microsoft Graph 中主体的标识符。 仅适用于管理员 API。 |
| groupUserAccessRight |
用户对工作区拥有的访问权限(权限级别) |
|
| identifier |
string |
主体的标识符 |
| principalType |
主体类型 |
|
| profile |
Power BI 服务主体配置文件。 仅适用于 Power BI Embedded 多租户解决方案。 |
|
| userType |
string |
用户的类型。 |
GroupUserAccessRight
用户对工作区拥有的访问权限(权限级别)
| 值 | 说明 |
|---|---|
| None |
无法访问工作区内容 |
| Member |
读取、重新共享和浏览 (ReadReshareExplore) 对工作区内容的访问权限 |
| Admin |
工作区内容的管理员权限 |
| Contributor |
读取和浏览对工作区内容的访问 |
| Viewer |
对工作区内容的只读(读取)访问权限 |
GroupUsers
有权访问工作区的 Power BI 用户列表的 OData 响应包装器
| 名称 | 类型 | 说明 |
|---|---|---|
| @odata.context |
string |
|
| value |
有权访问工作区的用户列表 |
PrincipalType
主体类型
| 值 | 说明 |
|---|---|
| None |
无主体类型。 用于整个组织级别的访问。 |
| User |
用户主体类型 |
| Group |
组主体类型 |
| App |
服务主体类型 |
ServicePrincipalProfile
Power BI 服务主体配置文件。 仅适用于 Power BI Embedded 多租户解决方案。
| 名称 | 类型 | 说明 |
|---|---|---|
| displayName |
string |
服务主体配置文件名称 |
| id |
string (uuid) |
服务主体配置文件 ID |