Hi
Using telerik report in react, showing report in Report Viewer and all fine.
Now need to get the PDF (inline, not download) of this report from Report Viewer programmatically. (Not in backend). Is there is a way to get the PDF.
I can download PDF using viewer.current.commands.export.exec("PDF"); but i need to get pdf contents. (need to upload to azure blob)
Also when we export PDF manually, ReportViewer calls the CreateDocument endpoint [HttpPost("clients/{clientID}/instances/{instanceID}/documents")]
to get the document id. and then uses clientid, instanceid and documentid to get pdf.
In react how can we get the client id and instanceid from Report Viewer.
Thanks