curl "https://api.scanova.io/qr-assets/design-template/?resource_type=qr_category&category_id=3" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 9,
"name": "Blue Gradient",
"resource_type": "qr_category",
"category": 3,
"design_info": { "bg": "#0033ff" },
"gradient_type": "linear",
"color_palette": "[\"#000\",\"#fff\"]",
"font_styles": null,
"is_template": true,
"info": null,
"template_id": "abc123"
}
]
}
QR Assets
List user design templates
GET /qr-assets/design-template/
GET
/
qr-assets
/
design-template
/
curl "https://api.scanova.io/qr-assets/design-template/?resource_type=qr_category&category_id=3" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 9,
"name": "Blue Gradient",
"resource_type": "qr_category",
"category": 3,
"design_info": { "bg": "#0033ff" },
"gradient_type": "linear",
"color_palette": "[\"#000\",\"#fff\"]",
"font_styles": null,
"is_template": true,
"info": null,
"template_id": "abc123"
}
]
}
Lists the account’s own design templates for a QR category or a form, on the Management API host (
api.scanova.io), authenticated with your raw Management API key.
GET https://api.scanova.io/qr-assets/design-template/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
default:"qr_category"
qr_category or form.integer
Required when
resource_type is qr_category (the default). Must be omitted when resource_type is form.curl "https://api.scanova.io/qr-assets/design-template/?resource_type=qr_category&category_id=3" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 9,
"name": "Blue Gradient",
"resource_type": "qr_category",
"category": 3,
"design_info": { "bg": "#0033ff" },
"gradient_type": "linear",
"color_palette": "[\"#000\",\"#fff\"]",
"font_styles": null,
"is_template": true,
"info": null,
"template_id": "abc123"
}
]
}
400 if category_id is missing for resource_type=qr_category, present for resource_type=form, or resource_type is neither qr_category nor form.
Related
- Create a user design template — save a new one.
- Update a user design template — edit an existing one.
- Delete a user design template — remove one.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
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. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Query Parameters
Available options:
qr_category, form Required when resource_type=qr_category; forbidden when resource_type=form.
Response
Paginated list of design templates.
Was this page helpful?