Profiles - Get Profiles
返回服务主体配置文件的列表。
返回属于服务主体调用方配置文件的列表。
限制
只能由服务主体调用。
GET https://api.powerbi.com/v1.0/myorg/profiles
GET https://api.powerbi.com/v1.0/myorg/profiles?$top={$top}&$skip={$skip}&$filter={$filter}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
$filter
|
query |
string |
按 DisplayName 获取配置文件 |
|
$skip
|
query |
integer int32 |
跳过前 n 个结果 |
|
$top
|
query |
integer int32 |
仅返回前 n 个结果 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
确定 |
示例
Get a specific profile by display |
Get service principal profiles |
Get a specific profile by displayName using filter
Sample Request
GET https://api.powerbi.com/v1.0/myorg/profiles?$filter=displayName%20eq%20'My%20new%20profile'
Sample Response
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile"
}
]
}
Get service principal profiles
Sample Request
GET https://api.powerbi.com/v1.0/myorg/profiles
Sample Response
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile"
}
]
}
定义
名称 | 说明 |
---|---|
Service |
Power BI 服务主体配置文件。 仅与Power BI Embedded多租户解决方案相关。 |
Service |
Power BI 服务主体配置文件集合的 Odata 响应包装器。 |
ServicePrincipalProfile
Power BI 服务主体配置文件。 仅与Power BI Embedded多租户解决方案相关。
名称 | 类型 | 说明 |
---|---|---|
displayName |
string |
服务主体配置文件名称 |
id |
string |
服务主体配置文件 ID |
ServicePrincipalProfiles
Power BI 服务主体配置文件集合的 Odata 响应包装器。
名称 | 类型 | 说明 |
---|---|---|
odata.context |
string |
OData 上下文 |
value |
服务主体配置文件集合 |