curl -X POST "https://api.scanova.io/qr/tags/multi/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"ids": [
"Qa1b2c3d4e5f6g7h8"
],
"tags": [
"campaign-2026",
"print"
]
}'
"success"
QR Codes
Apply tags to many QR Codes
POST /qr/tags/multi/
POST
/
qr
/
tags
/
multi
/
curl -X POST "https://api.scanova.io/qr/tags/multi/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"ids": [
"Qa1b2c3d4e5f6g7h8"
],
"tags": [
"campaign-2026",
"print"
]
}'
"success"
Creates any missing tags and attaches them to many QR Codes in one call.
Requires the
POST https://api.scanova.io/qr/tags/multi/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
TAG_MANAGEMENT quota and the QR_CODE_TAG_CAN_ADD role permission.
array
required
qrid values to tag.array
required
Tag names to apply. Names are lowercased, and any that don’t exist yet are created.
boolean
default:"false"
Apply the tags to every QR Code the account owns, ignoring
ids.curl -X POST "https://api.scanova.io/qr/tags/multi/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"ids": [
"Qa1b2c3d4e5f6g7h8"
],
"tags": [
"campaign-2026",
"print"
]
}'
"success"
all: true is account-wide and has no undo — it tags every QR Code, including ones outside any folder or filter you were looking at. Detaching afterwards means calling Detach tags for those tag names.Related
- List tag names — the existing tag names.
- Update a QR Code’s tags — set tags on a single QR Code instead.
- Detach tags — the inverse of this operation.
- List tag details — confirm the resulting assigned counts.
- 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
Tags applied.
Was this page helpful?