Forum Discussion
Anonymous
5 years agoNot applicable
power bi api Get Tile Title returns null
Just need to confirm some behavior. Add a visual from a report to a dashboard. The visual has Title set to on and the Title appers in the dashboard Tile. GET https://api.powerbi.com/v1.0/myor...
Anonymous
5 years agoNot applicable
Details:
- Workspace v2
- Connection is using Service Principle
- Underlying datasource was made from a static json file
- Tile was pined from report
- Tile is set to on in Report
- No subtile is set
|
The call is made in a .Net Core 3.1 web api application
Using Nuget Package Microsoft.PowerBi.API v3.18.0
But I have tested with:
https://docs.microsoft.com/en-us/rest/api/power-bi/dashboards/gettilesingroup
Response contains everything except Title.
{
"@odata.context": "http://wabi-canada-central-redirect.analysis.windows.net/v1.0/myorg/groups/{groupId}/$metadata#tiles",
"value": [
{
"id": "groupId",
"embedUrl": "embeddUrl"
"rowSpan": 0,
"colSpan": 0,
"reportId": "reportId",
"datasetId": "datasetId"
}
]
}
After editing detials and clicking apply
{
"@odata.context": "http://wabi-canada-central-redirect.analysis.windows.net/v1.0/myorg/groups/{groupId}/$metadata#tiles",
"value": [
{
"id": "groupId",
"title": "test",
"embedUrl": "embedUrl",
"rowSpan": 0,
"colSpan": 0,
"reportId": "reportId",
"datasetId": "datasetId"
}
]
}