Move QR Codes to Folder
curl --request POST \
--url https://management.scanova.io/folder/{id}/bulk_move/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"qr_code_ids": [
"QXXXXXXXXXXXX"
],
"from": 3
}
'{
"message": "QR codes moved successfully"
}Folder Management
Move QR Codes to Folder
Move multiple QR codes into a folder. Authentication required — include your API key in the Authorization header.
POST
/
folder
/
{id}
/
bulk_move
Move QR Codes to Folder
curl --request POST \
--url https://management.scanova.io/folder/{id}/bulk_move/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"qr_code_ids": [
"QXXXXXXXXXXXX"
],
"from": 3
}
'{
"message": "QR codes moved successfully"
}Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Target folder ID. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
qr_code_ids | array[string] | Yes | Array of QR code IDs to move. To move all QR codes from the source folder, pass ["all"]. |
from | integer | null | No | Source folder ID. Pass an integer such as 3, or null. |
Example Request
{
"qr_code_ids": ["QXXXXXXXXXXXX],
"from": 3
}
Example Response
✅ 200 OK
{
"message": "QR codes moved successfully"
}
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Path Parameters
Folder ID
Body
application/json
Response
QR codes moved successfully
Example:
"QR codes moved successfully"
Was this page helpful?
⌘I