Skip to main content
Explore the hotel-level results of a completed mapping job. Filter by hotel name, city, country, partner hotel ID, matched reference hotel ID, and supplier IDs. Each result includes the match confidence score, match method, and a map of external IDs from connected suppliers for the matched reference hotel.
All filters are optional and combinable. Omit any filter to return results regardless of that field’s value. Results are scoped to a single mapping job; cross-job search is not supported.
Only the documented filter fields are accepted: hotelName, city, country, partnerHotelId, matchedReferenceHotelId, supplierExternalIds, page, and size. Any unknown field in the request body is rejected with 400 Bad Request; check for typos in filter names.

Request

string
required
UUID of the mapping job whose results you want to search.
string
Filters results where the partner hotel name contains this string. The match is case-insensitive.
string
Filters results to hotels in this city. Exact match, case-insensitive.
string
Filters results to hotels in this country. Exact match, case-insensitive.
string
Filters to a specific partner hotel by its ID. Exact match.
string
Filters to results matched to a specific reference hotel ID. Exact match.
object[]
List of { supplierId, externalId } objects. When provided, only results where the matched reference hotel has the given externalId for the given supplierId (a connected supplier’s UUID) are returned. Unmatched hotels are excluded when this filter is active.Each item has the shape:
number
default:"0"
Page number to retrieve. 0-indexed.
number
default:"20"
Number of results per page.

Response

object[]
required
Array of matching hotel result records for the current page.
number
required
Total number of results matching the applied filters, across all pages.
number
required
The current page number (0-indexed).
number
required
The number of results per page as requested.
number
required
Total number of pages for the current result set.

Error responses

If you provide supplierExternalIds whose supplierId does not exist in the system, no error is returned. Those entries are silently skipped during enrichment, and results that only have external IDs for unknown suppliers will be excluded.

Example