Forum Discussion
Anonymous
6 years agoNot applicable
Power BI Export to file Error
We are using the latest version of the API (V3) I have copied the code examples from here - https://docs.microsoft.com/en-us/power-bi/developer/embedded/export-to in my 'PostExportRequest' functi...
Anonymous
6 years agoNot applicable
can you provide a code snippet of this part so that I can see?
var powerBIReportExportConfiguration = new PowerBIReportExportConfiguration
{
Settings = new ExportReportSettings
{
Locale = "en-us",
},
Pages = pageNames?.Select(pn => new ExportReportPage(pageName = pn.ToString())).ToList(),
};
var exportRequest = new ExportReportRequest
{
Format = fileFormat,
PowerBIReportConfiguration = powerBIReportExportConfiguration,
};
Anonymous
6 years agoNot applicable
var fileFormat = FileFormat.PDF
var exportRequest = new ExportReportRequest
{
Format = fileFormat
};
here you go. this should work