Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I've got a working embedded setup where the "template" reports/datasets live in a single workspace, and the "customer" datasets live in a separate workspace.
This is working nicely for embedding reports. However when I try to export using the "bindDataset" set in the request it fails...
POST https://api.powerbi.com/v1.0/myorg/groups/:templateGroupId/reports/:templateReportId/ExportTo
Request
{
"format": "PDF",
"powerBIReportConfiguration": {
"datasetToBind": "{{dataset_id}}",
"settings": {
"locale": "en-nz",
"includeHiddenPages": false
},
// RLS identity
"identities": [
{
"username": "user1@app.com",
"roles": [ "App User" ],
"datasets": [ "{{dataset_id}}","{{template_dataset_id}}" ]
}
]
}
}
Response
{
"error": {
"code": "InvalidRequest",
"message": "Export report was called with a bad request"
}
}
Removing "datasetToBind" and the customer dataset IDs from the request works as normal.
ExportTo and other endpoints using datasets should work the same as embed; it should allow cross-workspace binding.
Solved! Go to Solution.
I did the classic developer move of solving my issue as soon as I asked...
To export a bound dataset, you don't need to define the template dataset ID at all in the request...
{
"format": "PDF",
"powerBIReportConfiguration": {
"datasetToBind": "{{dataset_id}}",
"settings": {
"locale": "en-nz",
"includeHiddenPages": false
},
// RLS identity
"identities": [
{
"username": "user1@app.com",
"roles": [ "App User" ],
"datasets": [ "{{dataset_id}}" ]
}
]
}
}
Unfortunately I cannot verify the report data right now, but the export otherwise works. Hope this will help others
I did the classic developer move of solving my issue as soon as I asked...
To export a bound dataset, you don't need to define the template dataset ID at all in the request...
{
"format": "PDF",
"powerBIReportConfiguration": {
"datasetToBind": "{{dataset_id}}",
"settings": {
"locale": "en-nz",
"includeHiddenPages": false
},
// RLS identity
"identities": [
{
"username": "user1@app.com",
"roles": [ "App User" ],
"datasets": [ "{{dataset_id}}" ]
}
]
}
}
Unfortunately I cannot verify the report data right now, but the export otherwise works. Hope this will help others
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.