
Hello,
I have a gallery that can be filtered down to show certain items based on dates or on titles, and I need to be able to take the items shown and export them out as a CSV or PDF file without using flow. I know there isn't a built-in function to convert gallery items to CSV or PDF, however I know there is a way to work around this by using HTML then converting it to string, all I need is a downloadable file that can be sent without using flow.
My reasoning for not using flow is that it often fails and this system needs to be as self-contained as possible.
Hi @powerAppUse123 ,
It can be done by creating a custom connector with this Graph API:
Method:
PUT
URL
https://graph.microsoft.com/beta/me/drive/root:/FolderA/BofTest.html:/content
Header
Content-Type text/plain
Body
<Div>Hi</Div><Div>This is Bof</Div>
I think this link will help you a lot: