Export Conversion Analytics
curl --request POST \
--url https://management.scanova.io/analytics/ct/export/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"q": [
"<string>"
]
}
'"<string>"Conversion Tracking
Export Conversion Analytics
Export aggregated conversion analytics in CSV/XLS/XLSX formats.
POST
/
analytics
/
ct
/
export
Export Conversion Analytics
curl --request POST \
--url https://management.scanova.io/analytics/ct/export/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"q": [
"<string>"
]
}
'"<string>"Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | No | Comma-separated sections. Typical: count,trend,event_breakdown,site_breakdown,funnel,scan_overview,hybrid_funnel. |
from | string (YYYY-MM-DD) | Yes | Inclusive start date. |
to | string (YYYY-MM-DD) | Yes | Inclusive end date. |
file_format | string | Yes | One of: csv, xls, xlsx. |
sheet | string | No | CSV-only selected sheet key. Examples: count, trend, event_breakdown, site_breakdown, funnel, hybrid_funnel, scan_overview. |
all | boolean | No | Include all QR Codes in scope. |
search | string | No | Search value used with all=true. |
category | string | No | Comma-separated category slugs. |
users | string | No | Comma-separated user IDs. |
conversion_events | string | No | Comma-separated conversion event keys. |
funnel_steps | string | No | Ordered comma-separated event keys for funnel calculation. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
filter_by | string | Yes | One of: qrid, id, tags. |
q | array[string] | Yes | Values corresponding to filter_by. |
Example
curl -X POST "https://management.scanova.io/analytics/ct/export/?type=count,trend,event_breakdown,site_breakdown,funnel,scan_overview,hybrid_funnel&from=2026-03-03&to=2026-03-10&file_format=xlsx" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filter_by": "qrid",
"q": ["Q20a18d4af3e947a1"]
}'
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Query Parameters
Comma-separated analytics sections.
Available options:
csv, xls, xlsx CSV sheet key.
Body
application/json
Response
File generated successfully
The response is of type file.
Was this page helpful?
⌘I