Reports - Get Pages
从 “我的”工作区返回指定报表中的页面列表。
所需范围
Report.ReadWrite.All 或 Report.Read.All
GET https://api.powerbi.com/v1.0/myorg/reports/{reportId}/pages
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
report
|
path | True |
string uuid |
报表 ID |
响应
名称 | 类型 | 说明 |
---|---|---|
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"
}
]
}
定义
名称 | 说明 |
---|---|
Page |
Power BI 报表页 |
Pages |
Power BI 页面集合的 OData 响应包装器 |
Page
Power BI 报表页
名称 | 类型 | 说明 |
---|---|---|
displayName |
string |
报表页的显示名称 |
name |
string |
报表页的名称 |
order |
integer |
报表页的顺序 |
Pages
Power BI 页面集合的 OData 响应包装器
名称 | 类型 | 说明 |
---|---|---|
odata.context |
string |
OData 上下文 |
value |
Page[] |
页面集合 |