File naming pattern
| Segment | Example | Description |
|---|---|---|
partnerInventoryId | INV-20240601-ACME | The partnerInventoryId from the inventory upload |
yyyy-MM-dd | 2026-06-07 | UTC date the mapping job completed |
ext | csv, json, xlsx | Determined by your export format config |
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):
| Column | Type | Description |
|---|---|---|
mappingJobId | string (UUID) | ID of the mapping job that produced this row |
partnerInventoryId | string | Inventory identifier from the upload |
supplierHotelId | string | Your internal hotel identifier from the inventory row |
referenceHotelId | string | Mapping.Travel’s canonical hotel ID |
referenceName | string | Canonical hotel name |
referenceCountryCode | string | ISO 3166-1 alpha-2 country code |
referenceCity | string | City name from the reference database |
confidence | number (0–1) | Match confidence score |
matchMethod | string | Algorithm that produced the match (EXACT, FUZZY, MANUAL, etc.) |
status | string | MATCHED, UNMATCHED, or PENDING_REVIEW |
supplierId | string | Mapping.Travel supplier ID (if matched to a specific supplier) |
supplierName | string | Supplier display name |
exportedAt | string (ISO 8601) | UTC timestamp when this row was written to the file |
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