Update Folder
curl --request PUT \
--url https://management.scanova.io/folder/{id}/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"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
Update Folder
Renames a folder. Requires authentication.
PUT
/
folder
/
{id}
Update Folder
curl --request PUT \
--url https://management.scanova.io/folder/{id}/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"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
Renames an existing folder.Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Folder ID. |
Request Body
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
name | string | Yes | New folder name. | Marketing QRs |
Example Request
{
"name": "Marketing QRs"
}
Example Response
✅ 200 OK
{
"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
- Renaming: Update folder names to reflect new campaigns
- Cleanup: Standardize naming conventions across folders
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Path Parameters
Folder ID
Body
application/json
Folder name
Example:
"Marketing QRs"
Response
Folder updated 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