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 매개 변수
Name | In(다음 안에) | 필수 | 형식 | Description |
---|---|---|---|---|
$filter
|
query |
string |
DisplayName으로 프로필 가져오기 |
|
$skip
|
query |
integer int32 |
첫 번째 n 결과를 건너뜁니다. |
|
$top
|
query |
integer int32 |
첫 번째 n 결과만 반환합니다. |
응답
Name | 형식 | Description |
---|---|---|
200 OK |
정상 |
예제
Get a specific profile by display |
Get service principal profiles |
Get a specific profile by displayName using filter
샘플 요청
GET https://api.powerbi.com/v1.0/myorg/profiles?$filter=displayName%20eq%20'My%20new%20profile'
샘플 응답
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile"
}
]
}
Get service principal profiles
샘플 요청
GET https://api.powerbi.com/v1.0/myorg/profiles
샘플 응답
{
"value": [
{
"id": "3b211778-e7a5-4d73-8187-f10824047724",
"displayName": "My new profile"
}
]
}
정의
Name | Description |
---|---|
Service |
Power BI 서비스 보안 주체 프로필입니다. Power BI Embedded 다중 테넌트 솔루션에만 관련됩니다. |
Service |
Power BI 서비스 보안 주체 프로필 컬렉션에 대한 Odata 응답 래퍼입니다. |
ServicePrincipalProfile
Power BI 서비스 보안 주체 프로필입니다. Power BI Embedded 다중 테넌트 솔루션에만 관련됩니다.
Name | 형식 | Description |
---|---|---|
displayName |
string |
서비스 주체 프로필 이름 |
id |
string |
서비스 주체 프로필 ID |
ServicePrincipalProfiles
Power BI 서비스 보안 주체 프로필 컬렉션에 대한 Odata 응답 래퍼입니다.
Name | 형식 | Description |
---|---|---|
@odata.context |
string |
OData 컨텍스트 |
value |
서비스 주체 프로필 컬렉션 |