Get Reports

 

Updated: January 23, 2017



Request | Response

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

NameDescription
collectionName (required)The workspace collection name.
workspaceId (required)The workspace id.

Status code

CodeDescription
200OK. 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: