Create Folder
curl --request POST \
--url https://management.scanova.io/folder/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"folder_type": "qr",
"name": "Marketing QRs"
}
'{
"id": 7,
"name": "Marketing QRs",
"created_by": 422,
"folder_type": "qr",
"qr_codes_count": 0,
"created": "2026-03-16T17:57:16.662333+05:30",
"updated": "2026-03-16T17:57:16.662362+05:30"
}Folder Management
Create Folder
Creates a folder for QR codes or pages. Requires authentication.
POST
/
folder
Create Folder
curl --request POST \
--url https://management.scanova.io/folder/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"folder_type": "qr",
"name": "Marketing QRs"
}
'{
"id": 7,
"name": "Marketing QRs",
"created_by": 422,
"folder_type": "qr",
"qr_codes_count": 0,
"created": "2026-03-16T17:57:16.662333+05:30",
"updated": "2026-03-16T17:57:16.662362+05:30"
}Overview
Creates a new folder for QR codes or pages.Request Body
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
folder_type | string | Yes | Folder type. Allowed values: qr, page. | qr |
name | string | Yes | Folder name. | Marketing QRs |
Example Request
{
"folder_type": "qr",
"name": "Marketing QRs"
}
Example Response
✅ 201 Created
{
"id": 8,
"name": "Marketing QRs",
"created_by": 422,
"folder_type": "qr",
"qr_codes_count": 0,
"created": "2026-03-16T17:57:16.662333+05:30",
"updated": "2026-03-16T17:57:16.662362+05:30"
}
Use Cases
- Organization: Create folders to group QR codes or pages
- Automation: Provision folders programmatically for campaigns
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Body
application/json
Response
Folder created successfully
Folder ID
Example:
7
Folder name
Example:
"Marketing QRs"
User ID who created the folder
Example:
422
Folder type
Example:
"qr"
Number of QR codes in the folder
Example:
0
Creation timestamp
Example:
"2026-03-16T17:57:16.662333+05:30"
Last update timestamp
Example:
"2026-03-16T17:57:16.662362+05:30"
Was this page helpful?
⌘I