curl -X POST "https://api.scanova.io/bulk-operation/quick-action/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"operation": "organize",
"qr_id_list": ["a1b2c3d4", "e5f6g7h8"],
"folder": 12
}'
{
"operation_id": "bo-qa-001",
"message": ["Your request is being processed. We'll email you once it's ready."]
}
Bulk Operations
Run a bulk quick action
POST /bulk-operation/quick-action/
POST
/
bulk-operation
/
quick-action
/
curl -X POST "https://api.scanova.io/bulk-operation/quick-action/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"operation": "organize",
"qr_id_list": ["a1b2c3d4", "e5f6g7h8"],
"folder": 12
}'
{
"operation_id": "bo-qa-001",
"message": ["Your request is being processed. We'll email you once it's ready."]
}
Applies one quick action to many QR Codes at once, asynchronously, on the Management API host (
Asynchronous — poll List bulk operations for
api.scanova.io), authenticated with your raw Management API key.
POST https://api.scanova.io/bulk-operation/quick-action/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
required
One of
apply_design, organize, or delete.array
Specific QR ids to act on. Alternatively use
filter, search, or bulk_op_id — same targeting options as Bulk-download QR Codes.object
A saved filter selecting which QR Codes to act on, as an alternative to
qr_id_list.string
A search term selecting which QR Codes to act on, as an alternative to
qr_id_list. "all" selects every owned QR Code.string
An existing bulk operation’s
operation_id — act on the QR Codes that operation generated.string
Required when
operation is apply_design — the design pattern data to apply.integer
Required when
operation is organize — the destination folder id, which must belong to this account.curl -X POST "https://api.scanova.io/bulk-operation/quick-action/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
-H "Content-Type: application/json" \
-d '{
"operation": "organize",
"qr_id_list": ["a1b2c3d4", "e5f6g7h8"],
"folder": 12
}'
{
"operation_id": "bo-qa-001",
"message": ["Your request is being processed. We'll email you once it's ready."]
}
status/progress. 400 for an invalid operation value, or a missing folder/pattern_info for the chosen operation.
delete is irreversible for QR Codes that don’t support soft-delete recovery in your plan — confirm the target selection before calling with operation: "delete".Related
- Bulk-download QR Codes — the same targeting parameters, for downloading instead of acting.
- Export owned URL QR Codes as CSV — a quick source of ids for
qr_id_list. - List bulk operations — poll for completion.
- 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
Quick action started.
Was this page helpful?