Admin - Profiles GetProfilesAsAdmin
組織のサービス プリンシパル プロファイルの一覧を返します。
権限
ユーザーは、ファブリック管理者であるか、サービス プリンシパルを使用して認証されている必要があります。
必要なスコープ
Tenant.Read.All または Tenant.ReadWrite.All
制限
1 時間あたり最大 200 要求。
GET https://api.powerbi.com/v1.0/myorg/admin/profiles
GET https://api.powerbi.com/v1.0/myorg/admin/profiles?$filter={$filter}&$top={$top}&$skip={$skip}
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
$filter
|
query |
string |
'id'、'displayName'、または 'servicePrincipalId' を使用して、ブール条件に基づいて結果をフィルター処理します。 'eq' 演算子のみをサポートします。 |
|
$skip
|
query |
integer int32 |
最初の n 個の結果をスキップします。 top と共に使用して、最初の 5000 を超える結果をフェッチします。 |
|
$top
|
query |
integer int32 |
最初の n 個の結果のみを返します。 このパラメーターは 1 から 5000 の範囲である必要があります。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
わかりました |
例
Get a specific service principal profile by id using filter |
Get service principal profiles by their parent service |
Get a specific service principal profile by id using filter
要求のサンプル
GET https://api.powerbi.com/v1.0/myorg/admin/profiles?$filter=id%20eq%20'3b211778-e7a5-4d73-8187-f10824047724'
応答のサンプル
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile",
"servicePrincipalId": "12345678-e7a5-4d73-8187-f10824041234"
}
]
}
Get service principal profiles by their parent servicePrincipalId using filter
要求のサンプル
GET https://api.powerbi.com/v1.0/myorg/admin/profiles?$filter=servicePrincipalId%20eq%20'12345678-e7a5-4d73-8187-f10824041234'
応答のサンプル
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile",
"servicePrincipalId": "12345678-e7a5-4d73-8187-f10824041234"
},
{
"id": "43211778-e7a5-4d73-8187-f10824044321",
"displayName": "My new profile2",
"servicePrincipalId": "12345678-e7a5-4d73-8187-f10824041234"
}
]
}
定義
名前 | 説明 |
---|---|
Admin |
Power BI サービス プリンシパル プロファイル。 Power BI Embedded マルチテナント ソリューションにのみ関連します。 |
Admin |
Power BI サービス プリンシパル プロファイル コレクションの Odata 応答ラッパー。 |
AdminServicePrincipalProfile
Power BI サービス プリンシパル プロファイル。 Power BI Embedded マルチテナント ソリューションにのみ関連します。
名前 | 型 | 説明 |
---|---|---|
displayName |
string |
サービス プリンシパル プロファイル名 |
id |
string |
サービス プリンシパル プロファイル ID |
servicePrincipalId |
string |
サービス プリンシパル ID |
AdminServicePrincipalProfiles
Power BI サービス プリンシパル プロファイル コレクションの Odata 応答ラッパー。
名前 | 型 | 説明 |
---|---|---|
odata.context |
string |
OData コンテキスト |
value |
サービス プリンシパル プロファイルコレクション |