The Exports API creates asynchronous jobs that produce CSV/JSON dumps of large resources — customers, events, purchases — filtered by date range and optional segments. Exports run in the background and notify via polling on the export status endpoint.Documentation Index
Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt
Use this file to discover all available pages before exploring further.
Key concepts
- Job lifecycle — newly created jobs return as
New, transition toProcessingwhen a worker picks them up, then settle onDone(success) orFailed(error). The status string is reported by the upstream task system; treat unrecognised values as forward-compatibility fallbacks. - History —
/v4/exports/historylists previous export jobs with signed download URLs once completed. - Polling —
GET /v4/exports/{export_id}returns current status and download URL when ready.
Available endpoints
| Method | Endpoint | Description | Status |
|---|---|---|---|
| POST | /exports | Create export (async) | New |
| GET | /exports/history | List past exports | New |
| GET | /exports/{export_id} | Get export status | New |