List folders
curl --request GET \
--url https://management.scanova.io/folder/ \
--header 'Authorization: <api-key>'import requests
url = "https://management.scanova.io/folder/"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://management.scanova.io/folder/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://management.scanova.io/folder/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://management.scanova.io/folder/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://management.scanova.io/folder/")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://management.scanova.io/folder/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_bodyFolder Management
List Folders
Retrieves folders by type (QR or Page). Requires authentication.
GET
/
folder
/
List folders
curl --request GET \
--url https://management.scanova.io/folder/ \
--header 'Authorization: <api-key>'import requests
url = "https://management.scanova.io/folder/"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://management.scanova.io/folder/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://management.scanova.io/folder/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://management.scanova.io/folder/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://management.scanova.io/folder/")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://management.scanova.io/folder/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_bodyOverview
Retrieves all folders by type (QR or Page). This endpoint returns a paginated list of folders to organize your QR codes or pages.Query Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
folder_type | string | Yes | Folder type to list. Allowed values: qr, page. | qr or page |
Response
The response is a paginated list with the following structure:count: Total number of foldersnext: URL for next page (null if no more pages)previous: URL for previous page (null if first page)results: Array of folder objects
Folder Object
Each folder object contains:id: Folder IDname: Folder namecreated_by: User ID who created the folderfolder_type: Folder type (qrorpage)qr_codes_count: Number of QR codes in the foldercreated: Creation timestampupdated: Last update timestamp
Examples
List QR Code Folders
curl -X GET "https://management.scanova.io/folder/?folder_type=qr" \
-H "Authorization: YOUR_API_KEY"
List Page Folders
curl -X GET "https://management.scanova.io/folder/?folder_type=page" \
-H "Authorization: YOUR_API_KEY"
Example Response
{
"count": 4,
"next": null,
"previous": null,
"results": [
{
"id": 8,
"name": "Marketing QRs",
"created_by": 422,
"folder_type": "qr",
"qr_codes_count": 1,
"created": "2026-03-16T17:57:16.662333+05:30",
"updated": "2026-03-16T17:57:58.660138+05:30"
},
{
"id": 5,
"name": "foler23",
"created_by": 422,
"folder_type": "qr",
"qr_codes_count": 0,
"created": "2026-03-16T16:35:06.097830+05:30",
"updated": "2026-03-16T16:39:19.471567+05:30"
}
]
}
Use Cases
- Folder Overview: Show all folders of a specific type
- Organization: Help users select folders when moving QR codes
- Management: Track folder usage and activity
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. management.scanova.io) — the same key sent to the regular API host will not authenticate.
Response
200
List of folders
Was this page helpful?
⌘I