Forum Discussion
DavideBono97
11 months agoHelper I
ExportTo PowerBI - Api ExportTo
I'm using PowerBI's ExportTo API. The report filters seem to be ignored. I tried like this https://api.powerbi.com/v1.0/myorg/groups/xxxx/reports/xxxx/ExportTo
{
"format": "PDF",
"powerBIRe...
- 11 months ago
I did a test with spaces in the table name and column name:
Table name: ex1 renamed
Column name: Column three
This requeust body produced a filtered result:
Reqused body:
{
"format": "PDF",
"powerBIReportConfiguration": {
"settings": {},
"reportLevelFilters": [
{
"filter": "ex1_x0020_renamed/Column_x0020_three lt 0"
}
]
}
}
DavideBono97
11 months agoHelper I
Hi v-sshirivolu
I've already tried this way
But I get this error :
{
"error": {
"code": "InvalidRequest",
"message": "Export report filter with empty string provided"
}
}