GET api/v1/group/{groupId}/powerbi/reports

Get a list of reports within specific PowerBI Workspace

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupId

powerbi groupId

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns a list of reports available within the workspace on PowerBI embedded

Collection of Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Clinical.RestControllers.PowerBIReport
NameDescriptionTypeAdditional information
name

string

None.

reportId

string

None.

webUrl

string

None.

embedUrl

string

None.

accessToken

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "reportId": "sample string 2",
    "webUrl": "sample string 3",
    "embedUrl": "sample string 4",
    "accessToken": "sample string 5"
  },
  {
    "name": "sample string 1",
    "reportId": "sample string 2",
    "webUrl": "sample string 3",
    "embedUrl": "sample string 4",
    "accessToken": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPowerBIReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Clinical.RestControllers">
  <PowerBIReport>
    <accessToken>sample string 5</accessToken>
    <embedUrl>sample string 4</embedUrl>
    <name>sample string 1</name>
    <reportId>sample string 2</reportId>
    <webUrl>sample string 3</webUrl>
  </PowerBIReport>
  <PowerBIReport>
    <accessToken>sample string 5</accessToken>
    <embedUrl>sample string 4</embedUrl>
    <name>sample string 1</name>
    <reportId>sample string 2</reportId>
    <webUrl>sample string 3</webUrl>
  </PowerBIReport>
</ArrayOfPowerBIReport>