Generate QR code within Power Automate
In this post we will learn how to dynamically generate QR code using Power Automate and then send that as a PDF attachment to an email address. For this post we will use Google Charts API, however note that since this is an external API so you need to check with your organizational data loss prevention policies, data security policies before making any API calls. Additionally, since this is a third-party API, this may be discontinued in the future and hence you may want to plan for this. The URL to generate a QR code looks as below: https://chart.googleapis.com/chart?cht=qr&chs= 300x300 &chl= powerplatformguide.blogspot.com Here we dynamically specify the dimensions of the QR code and its content based on our requirement. To build such a Flow, we will follow the following steps: 1 - Create an Instant Flow with three user input parameters as below: 2 - Add an action using OneDrive connector to upload a file from URL with parameters as seen below. We need to make sure that the de...