Delete Folder
curl --request DELETE \
--url https://management.scanova.io/folder/{id}/ \
--header 'Authorization: <api-key>'{
"detail": "Invalid token."
}Folder Management
Delete Folder
Delete a folder, optionally moving QR codes to Uncategorized or permanently deleting them. Authentication required — include your API key in the Authorization header.
DELETE
/
folder
/
{id}
Delete Folder
curl --request DELETE \
--url https://management.scanova.io/folder/{id}/ \
--header 'Authorization: <api-key>'{
"detail": "Invalid token."
}Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Folder ID. |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
move_to_uncategorized | boolean | Yes | If true, moves QR codes to Uncategorized before deleting the folder. |
delete_permanently | boolean | Yes | If true, permanently deletes QR codes in the folder (no trash). |
Behavior Matrix
| move_to_uncategorized | delete_permanently | Result |
|---|---|---|
false | true | Permanently delete QR codes and the folder. |
true | false | Move QR codes to Uncategorized, then delete the folder. |
false | false | Delete the folder only. |
Example Request
DELETE /folder/7/?move_to_uncategorized=true&delete_permanently=false
Example Response
✅ 204 No Content
Folder deleted successfully.Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Path Parameters
Folder ID
Query Parameters
Move QR codes to Uncategorized before deleting the folder
Permanently delete QR codes in the folder
Response
Folder deleted successfully
Was this page helpful?
⌘I