Profiles - Get Profiles
Gibt eine Liste der Dienstprinzipalprofile zurück.
Gibt eine Liste der Profile zurück, die zum Dienstprinzipalanrufer gehören.
Einschränkungen
Kann nur von einem Dienstprinzipal aufgerufen werden.
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-Parameter
Name | In | Erforderlich | Typ | Beschreibung |
---|---|---|---|---|
$filter
|
query |
string |
Abrufen eines Profils durch DisplayName |
|
$skip
|
query |
integer int32 |
Übersprungen die ersten n Ergebnisse |
|
$top
|
query |
integer int32 |
Gibt nur die ersten n Ergebnisse zurück. |
Antworten
Name | Typ | Beschreibung |
---|---|---|
200 OK |
OK |
Beispiele
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"
}
]
}
Definitionen
Name | Beschreibung |
---|---|
Service |
Ein Power BI-Dienst Prinzipalprofil. Nur relevant für Power BI Embedded Multi-Mandanten-Lösung. |
Service |
Odata-Antwortumbruch für eine Power BI-Dienst Prinzipalprofilsammlung. |
ServicePrincipalProfile
Ein Power BI-Dienst Prinzipalprofil. Nur relevant für Power BI Embedded Multi-Mandanten-Lösung.
Name | Typ | Beschreibung |
---|---|---|
displayName |
string |
Der Name des Dienstprinzipalprofils |
id |
string |
Die Dienstprinzipalprofil-ID |
ServicePrincipalProfiles
Odata-Antwortumbruch für eine Power BI-Dienst Prinzipalprofilsammlung.
Name | Typ | Beschreibung |
---|---|---|
odata.context |
string |
OData-Kontext |
value |
Die Dienstprinzipalprofilsammlung |