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 |
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 |
サービス プリンシパル プロファイルコレクション |