GET api/PBI_reportInfo/report/{reportId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PBI_ReportInfoViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| module_type | string |
Required |
|
| names | Dictionary of string [key] and string [value] |
None. |
|
| enable | boolean |
None. |
|
| id | globally unique identifier |
None. |
|
| name | string |
Required |
|
| workspace_id | string |
None. |
|
| active | boolean |
None. |
|
| report_id | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"module_type": "sample string 1",
"names": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"enable": true,
"id": "54c18f36-f1d4-408a-befb-e74689c81d4e",
"name": "sample string 4",
"workspace_id": "sample string 5",
"active": true,
"report_id": "sample string 7"
}
application/xml, text/xml
Sample:
<powerBiReportInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<active>true</active>
<id>54c18f36-f1d4-408a-befb-e74689c81d4e</id>
<name>sample string 4</name>
<report_id>sample string 7</report_id>
<workspace_id>sample string 5</workspace_id>
<enable>true</enable>
<module_type>sample string 1</module_type>
<names xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</names>
</powerBiReportInfo>