11 Get booking by your reference
Authentication
Bearer authentication of the form Bearer <token>, where token is your auth token.
Bearer authentication of the form Bearer <token>, where token is your auth token.
Fetches one booking in full by the settings.customer_reference you supplied when you created it. Same response as 09 Get booking by ID.
This is the most useful lookup for an integration, because the reference is yours: you know it before we reply, it never changes, and it survives a replace. Send one on every quote.
Use it to recover from a failed create. There is no idempotency on quote creation, so if a request times out you cannot tell whether the booking was made. Retry with the same customer_reference: a 422 with errors["settings.customer_reference"] proves the first attempt landed, and this endpoint then hands you that booking. That is the safest retry pattern available today.
References are unique per company, so yours cannot collide with another partner’s.