This is a deprecation notice - we are changing or removing support for the features described on this page on or after June 4, 2026. Please ensure to adjust your integrations accordingly before that date.
The active_hailing_booking_ids field on the User resource is now deprecated and will be removed in a future release. This only affects List Users and Show User endpoints.
As part of the ongoing transition from booking to tour terminology, this field has been replaced by active_tour_id, which returns the ID of the driver’s currently active tour as a single value (or null when idle).
Changes:
- A new
active_tour_idfield is now available on the User resource when the resource is a driver - The existing
active_hailing_booking_idsarray field continues to work but is deprecated active_tour_idreturns a single UUID or null, replacing the array which only ever contained zero or one element
Migration:
Replace usage of active_hailing_booking_ids with active_tour_id:
// Before (active_hailing_booking_ids — array, always 0 or 1 elements)
{ "active_hailing_booking_ids": ["550e8400-e29b-41d4-a716-446655440000"] }
// After (active_tour_id — single value or null)
{ "active_tour_id": "550e8400-e29b-41d4-a716-446655440000" }