Skip to main content
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

ParameterTypeRequiredDescription
idintegerYesTarget folder ID.

Request Body

FieldTypeRequiredDescription
qr_code_idsarray[string]YesArray of QR code IDs to move. To move all QR codes from the source folder, pass ["all"].
frominteger | nullNoSource 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

Authorization
string
header
required

API key authentication. Enter your API key directly in the Authorization header.

Path Parameters

id
integer
required

Folder ID

Body

application/json
qr_code_ids
string[]
required

List of QR code IDs to move. To move all QR codes from the source folder, pass ['all']

Example:
["QXXXXXXXXXXXX"]
from
integer | null

Source folder ID. Pass an integer or null

Example:

3

Response

QR codes moved successfully

message
string
Example:

"QR codes moved successfully"