Deprecation of active_hailing_booking_ids user field

Announced March 11, 2026 Due June 4, 2026

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:

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" }