Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Need help on exporting qliksense stories as PDF using Qlik Sense .NET SDK

Hello Team,

We need help on exporting qliksense stories as PDF using "Qlik Sense .NET SDK".  We have created Qliksense report with a stories.

By using "Qlik Sense .NET SDK", we are able to get the Qliksense stories.

Could you please advice how to export the qliksense story as PDF using "Qlik Sense .NET SDK"? We tried the below code snippet to get all the stories from the App.

                    IStoryList listOfStories = app.GetStoryList();

                    foreach (var item in listOfStories.Items)

                    {

                        Console.WriteLine(item.Info.Id);

                    }

Regards

Suresh

1 Reply
Øystein_Kolsrud
Employee
Employee

The .NET SDK communicates with the engine service. Printing is done by another service in the Qlik System (the printing service...). So unfortunately there is no way to to do printing from the .NET SDK, and the APIs for the printing service are not public. You could try to reverse engineer that API by looking at the requests that the browser sends, but I'm afraid I would not recommend building a solution based on that...