Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
coffey88
Frequent Visitor

Reports - Export To File API (Dynamic Binding and Paginated)

I can't find any documentation except for the make up of body for the request. Basically we have a paginated report and several datasets we want to bind to when exporting a PDF. 

POST to https://api.powerbi.com/v1.0/myorg/groups/*workspaceId*/reports/*reportId*/ExportTo

 

{
  "format": "PDF",
  "paginatedReportConfiguration": {
      "formatSetting": {
          "useReportPageSize": true
      },
    "parameterValues": [
      {
        "name": "Date",
        "value": "2/28/2023 12:00:00 AM"
      }
    ],
    "identities": [
      {
        "username": "userEmail@xyz.com"
      }
    ]
  },
  "powerBIReportConfiguration": {
"settings": {
            "locale": "en-US",
            "excludeHiddenPages": "false"
        },
        
"datasetToBind": "xxxx-9d66-4a43-8e75-ac43fc9c5656",
"identities": [
      {
        "username": "userEmail@xyz.com"
      }
    ]
}
}

I'm trying a request with the body above but I keep recieving "Invalid Request" - "

Export report was called with invalid configuration type". I recieve this even with an empty "
powerBIReportConfiguration" object.
It all looks valid unless their some sort of combination I'm not allowed to do.
2 REPLIES 2
AmosHersch
Microsoft Employee
Microsoft Employee

Hi @coffey88 ,

I believe paginatedReportConfiguration and powerBIReportConfiguration are mutually exclusive, you cannot provide both. If you are exporting a paginated report then you should only provide paginatedReportConfiguration.

I don't think you can dynamically bind a dataset to the paginated report just for the export operation. It is supported when exporting PowerBI (PBIX) reports.

@AmosHersch Is there any alternative to facilitate what I'm trying to do? I'm not apart of our PBI team, but this seems like it would be pretty painful for them to have to build/setup all of our tenants Paginated reports individually.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors