Create Dynamic QR Codes Directly in Power Platform
QRVerse Pro is a powerful connector that allows you to generate various types of QR codes within Power Automate and Power Apps. By integrating with an Azure Function via RapidAPI, you can create WiFi, vCard, location, event, and URL QR codes effortlessly.
- Generate WiFi QR Codes: Share network credentials securely.
- Create vCard QR Codes: Provide contact information with a scan.
- Produce Location QR Codes: Share precise geographic locations.
- Schedule Event QR Codes: Send event details seamlessly.
- Generate URL QR Codes: Direct users to websites instantly.
You can download the QRVerse managed solution from the Github repository here:
Within Power Apps or Power Automate, navigate to Solutions and import the QRVerse managed solution.
- Visit RapidAPI here
- Subscribe to a plan
- Obtain your unique API key upon subcription
- Create a new flow or app
- Add the HTTP action to make the API call
- Set the request method to POST
- Use the appropriate endpoint (below)
- Include your API Key in the headers:
"X-RapidAPI-Key": "YOUR_API_KEY",
"Content-Type": "application/json"
- Construct the JSON body according to the schema of the QR code you wish to generate.
- Create a new flow or app
- Add the QrVerse Custom Connector
- Initiate a new connection reference using your API Key
- Fill in the input parameters for the action
- Compose the response output for the selected action
Generate WiFi QR Code
- Endpoint:
https://qrverse-pro.p.rapidapi.com/generate/wifi
- Schema:
{
"ssid": "MyNetwork",
"password": "SecurePassword",
"authType": "WPA",
"qrColor": "#008000",
"backgroundColor": "#FFFFFF"
}
- Response:
{
"qrCodeSvg": "SVGCode"
}
Generate vCard QR Code
- Endpoint:
https://qrverse-pro.p.rapidapi.com/generate/vcard
- Schema:
{
"firstName": "John",
"middleName": "A.",
"lastName": "Doe",
"company": "Example Corp",
"jobTitle": "Software Engineer",
"phoneWork": "+1234567890",
"phoneMobile": "+0987654321",
"email": "[email protected]",
"website": "https://www.example.com",
"address1": "123 Main St",
"address2": "Suite 100",
"city": "Anytown",
"postcode": "12345",
"country": "USA",
"qrColor": "#0000FF",
"backgroundColor": "#00FFFF"
}
- Response:
{
"qrCodeSvg": "SVGCode"
}
Generate Location QR Code
- Endpoint:
https://qrverse-pro.p.rapidapi.com/generate/location
- Schema:
{
"latitude": "37.7749",
"longitude": "-122.4194",
"qrColor": "#800080",
"backgroundColor": "#FFC0CB"
}
- Response:
{
"qrCodeSvg": "SVGCode"
}
Generate Event QR Code
- Endpoint:
https://qrverse-pro.p.rapidapi.com/generate/event
- Schema:
{
"summary": "Project Meeting",
"location": "Conference Room 1",
"startDate": "2023-11-01",
"startTime": "10:00",
"endDate": "2023-11-01",
"endTime": "11:30",
"qrColor": "#FFA500",
"backgroundColor": "#FFFFFF"
}
- Response:
{
"qrCodeSvg": "SVGCode"
}
Generate URL QR Code
- Endpoint:
https://qrverse-pro.p.rapidapi.com/generate/url
- Schema:
{
"url": "https://www.nati-turtledove.com",
"qrColor": "#FF5733",
"backgroundColor": "#C0C0C0"
}
- Response:
{
"qrCodeSvg": "SVGCode"
}
- Basic: $0.00/month for up to 10 API calls.
- Pro: $5.00/month for up to 1,000 API calls
- Ultra: $15.00/month for up to 50,000 API calls
- Mega: Unlimited calls at $0.004/call
For assistance, please visit our Support Center or contact us at [email protected].