Get Reports
Updated: January 23, 2017
The Get Reports operation returns a JSON object which represents list of Report objects.
Note To call this operation, an app token or key is required. To learn more, see Authenticating and authorizing with Power BI Embedded.
GET https://api.powerbi.com/v1.0/collections/{collectionName}/workspaces/{workspaceId}/reports
Uri parameter
| Name | Description |
|---|---|
| collectionName (required) | The workspace collection name. |
| workspaceId (required) | The workspace id. |
Status code
| Code | Description |
|---|---|
| 200 | OK. Indicates success. An JSON object which represents list of Report objects. |
Content-Type
application/json
Body schema
{
"@odata.context":"https://api.powerbi.com/v1.0/collections/{WorkspaceName}/workspaces/{WorkspaceId}/$metadata#reports","value":[
{
"id":"{report_guid}",
"name":"{report_name}",
"webUrl":"https://embedded.powerbi.com/reports/{report_guid}",
"embedUrl":"https://embedded.powerbi.com/appTokenReportEmbed?reportId={report_guid}"
}
]
}
Show: