curl -X POST "https://api.scanova.io/qr/link/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"qr": [
"Qa1b2c3d4e5f6g7h8"
]
}'
"success"
QR Codes
Link QR Codes to your account
POST /qr/link/
POST
/
qr
/
link
/
curl -X POST "https://api.scanova.io/qr/link/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"qr": [
"Qa1b2c3d4e5f6g7h8"
]
}'
"success"
Claims QR Codes that were created before login and assigns them to the authenticated account.
POST https://api.scanova.io/qr/link/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
array
required
A non-empty list of
qrid values to claim.curl -X POST "https://api.scanova.io/qr/link/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"qr": [
"Qa1b2c3d4e5f6g7h8"
]
}'
"success"
This exists for the sign-up flow, where a visitor builds a QR Code anonymously on the public API and then registers. Since QR Code creation on the Management API host always requires an API key, QR Codes created through this API are already owned and never need linking.
Related
- Create a QR Code — creation on this host is always owned, so it needs no linking.
- List QR Codes — confirm the claimed QR Codes now appear in the account.
- 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.
Response
QR codes linked.
Was this page helpful?