GET powerbi/report

Returns the list of available reports for the authenticated mediador. C2 — GET /powerbi/report

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Lluni.Models.Common.Wip.PowerBi.PowerBiReport
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

IsActive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "IsActive": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "IsActive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPowerBiReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Wip.PowerBi">
  <PowerBiReport>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <Name>sample string 2</Name>
  </PowerBiReport>
  <PowerBiReport>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <Name>sample string 2</Name>
  </PowerBiReport>
</ArrayOfPowerBiReport>