curl -X POST "https://api.scanova.io/qr/Qa1b2c3d4e5f6g7h8/share/email/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"email": "recipient@example.com"
}'
{
"message": "QR code shared successfully."
}
QR Codes
Share a QR Code by email
POST /qr//share/email/
POST
/
qr
/
{qrid}
/
share
/
email
/
curl -X POST "https://api.scanova.io/qr/Qa1b2c3d4e5f6g7h8/share/email/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"email": "recipient@example.com"
}'
{
"message": "QR code shared successfully."
}
Emails a business-card QR Code to one recipient, with wallet-pass links attached.
The server renders a PNG of the QR Code itself and attaches Apple Wallet and Google Wallet links to the message, so the recipient can save the card to their phone.
POST https://api.scanova.io/qr/{qrid}/share/email/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
required
The
qrid of a QR Code in the businessCard category.string
required
The recipient’s email address.
curl -X POST "https://api.scanova.io/qr/Qa1b2c3d4e5f6g7h8/share/email/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"email": "recipient@example.com"
}'
{
"message": "QR code shared successfully."
}
This endpoint supports the
businessCard category only. Every other category returns 400 — there is no generic “email me this QR Code” operation.Related
- Download a QR Code image — get the image yourself instead of emailing it.
- Retrieve a QR Code — check the QR Code’s category before calling.
- QR Manager overview — the quotas, role permissions, and Trash model shared by every endpoint in this module.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Path Parameters
The QR code's qrid — the opaque public identifier returned by the list endpoint, not the numeric id.
Response
Email queued.
Was this page helpful?