File naming pattern
Example filenames:
mapping_results_INV-20240601-ACME_2026-06-07.csvmapping_results_spring-catalog_2026-06-07.jsonmapping_results_Q2-hotels_2026-06-07.xlsx
If two jobs for the same inventory complete on the same UTC date, the second delivery overwrites the first for S3 and SFTP destinations. Use a
pathPrefix with date hierarchy (e.g. results/2026/06/07/) or switch to webhook delivery if you need every result preserved.Supported formats
CSV
UTF-8, comma-delimited by default. Header row included. Delimiter and header presence are configurable. Suitable for spreadsheets and most ETL tools.
JSON
A JSON array of result objects. One file per job. Easy to parse with any language; suitable for API-style consumers.
XLSX
Excel 2007+ workbook. Single sheet named
Results. Useful for business stakeholders who work in spreadsheet tools.PUT /api/v1/export-format. See the export format API reference for field options including compression (gzip or none) and includeFields.
Column reference
All three formats contain the same columns (unless you restrict them withincludeFields):
CSV example
JSON example
Related
- Export format API reference — configure format, delimiter, compression, and field selection
- S3 setup — path prefix conventions
- SFTP setup — remote path conventions