This is a deprecation notice - we are changing or removing support for the features described on this page on or after August 24, 2026. Please ensure to adjust your integrations accordingly before that date.
The on_active_hailing_booking filter parameter on the List Users endpoint is now deprecated and will be removed in a future release.
As part of the ongoing split between bookings and tours as distinct concepts, this filter has been replaced by on_active_tour, which provides the same functionality with naming that better reflects the underlying domain model.
Changes:
- A new
on_active_tourboolean filter is now available on the List Users endpoint - The existing
on_active_hailing_bookingfilter continues to work but is deprecated - Both filters behave identically — filtering drivers by whether they currently have an active tour
Migration:
Replace on_active_hailing_booking with on_active_tour in your API calls:
# Before
GET /api/users?filters[on_active_hailing_booking]=true
# After
GET /api/users?filters[on_active_tour]=true