Reports - Get Pages
從 [我的工作區] 傳回指定報表內的頁面清單。
必要範圍
Report.ReadWrite.All 或 Report.Read.All
GET https://api.powerbi.com/v1.0/myorg/reports/{reportId}/pages
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
report
|
path | True |
string uuid |
報表識別碼 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
確定 |
範例
Example
Sample Request
GET https://api.powerbi.com/v1.0/myorg/reports/879445d6-3a9e-4a74-b5ae-7c0ddabf0f11/pages
Sample Response
{
"value": [
{
"displayName": "Regional Sales Analysis",
"name": "ReportSection",
"order": "0"
},
{
"displayName": "Geographic Analysis",
"name": "ReportSection1",
"order": "1"
}
]
}
定義
名稱 | Description |
---|---|
Page |
Power BI 報表頁面 |
Pages |
Power BI 頁面集合的 OData 回應包裝函式 |
Page
Power BI 報表頁面
名稱 | 類型 | Description |
---|---|---|
displayName |
string |
報表頁面的顯示名稱 |
name |
string |
報表頁面的名稱 |
order |
integer |
報表頁面的順序 |
Pages
Power BI 頁面集合的 OData 回應包裝函式
名稱 | 類型 | Description |
---|---|---|
odata.context |
string |
OData 內容 |
value |
Page[] |
頁面集合 |