curl "https://api.scanova.io/theme/user-42-ocean-breeze-a1b2c3/usage/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"qr_count": 12,
"form_count": 3
}
Themes & Page Templates
Get theme usage counts
GET /theme//usage/
GET
/
theme
/
{slug}
/
usage
/
curl "https://api.scanova.io/theme/user-42-ocean-breeze-a1b2c3/usage/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"qr_count": 12,
"form_count": 3
}
Gets counts of what’s currently using a theme, on the Management API host (
Counts only active (non-deleted) QR Codes and forms — useful to check before Update a theme or deleting a theme’s owner account, since edits can affect everything using it.
api.scanova.io), authenticated with your raw Management API key.
GET https://api.scanova.io/theme/{slug}/usage/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
required
The theme’s
slug.curl "https://api.scanova.io/theme/user-42-ocean-breeze-a1b2c3/usage/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"qr_count": 12,
"form_count": 3
}
Related
- Update a theme — the
clear_conflicting_overridesoption is most relevant when this count is non-zero. - Retrieve a theme — see the theme itself.
- 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.
Path Parameters
Response
200 - application/json
Usage counts.
Was this page helpful?