curl "https://api.scanova.io/qr/industries/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
[
{
"id": 1,
"name": "Retail"
},
{
"id": 2,
"name": "Hospitality"
},
{
"id": 3,
"name": "Education"
}
]QR Codes
List industries
GET /qr/industries/
GET
/
qr
/
industries
/
curl "https://api.scanova.io/qr/industries/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
[
{
"id": 1,
"name": "Retail"
},
{
"id": 2,
"name": "Hospitality"
},
{
"id": 3,
"name": "Education"
}
]Reference list of industries used to classify accounts and drive category recommendations.
GET https://api.scanova.io/qr/industries/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
This is a public endpoint (
AllowAny) — it needs no API key, and the response is not paginated. Cache it rather than fetching it per request.string
Restrict the list to the industries offered for a given onboarding profile type.
curl "https://api.scanova.io/qr/industries/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
Related
- List QR categories — the recommendation surface these industries feed.
- QR Manager overview — the quotas, role permissions, and Trash model shared by every endpoint in this module.
- 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
Restrict the list to the industries offered for a given onboarding profile type.
Response
200 - application/json
Array of industries.
Was this page helpful?