This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Export functionality
The export to CSV API calls enable export of transactions, customers, KYC or sessions in CSV format from the Brite Backoffice. The response will contain a
task_id
, which can then be used to poll the status of the export job using the export task by id API call. The number of exported transactions is limited to 100,000 rows. Use the filters in Brite Backoffice to limit the exported data. All available filters are optional. Export tasks
When requesting a generation of CSV files (e.g.
transaction.csv_export
) a task_id
will be received as a response. You can then, using export_task.get
and the task_id
, regularly poll for the state of that task until it reaches the state COMPLETED. When the task is completed the response will contain an artifact_url
under which the generated file is available. Generated files are available for 24 hours and then deleted. Export task state values
State name | State Id |
---|---|
CREATED | 1 |
QUEUED | 2 |
STARTED | 3 |
COMPLETED | 4 |
FAILED | 5 |