CompleteBookingIntentRequest
Request schema for completing a booking intent. Update fields (service_id, provider_id, etc.) may be provided inline and are applied atomically before completion.
When true, automatically assigns an available provider for the selected time slot if no provider_id is specified.
client_data objectnullable
Progressive client data. Provided fields are merged with existing values.
The ID of an existing client to link.
The end time of the slot as an ISO-8601 datetime string with a timezone offset.
metadata objectnullable
Custom metadata key-value pairs. Replaces existing metadata entirely.
Custom metadata key-value pairs. Replaces existing metadata entirely.
The ID of the provider to assign.
The ID of the service.
The start time of the slot as an ISO-8601 datetime string with a timezone offset.
The local time zone for the slot (IANA format).
{
"client_data": {
"email": "jane@example.com",
"first_name": "Jane"
},
"end_at": "2026-02-23T10:30:00-05:00",
"provider_id": "prov_1234567890",
"service_id": "srv_1234567890",
"start_at": "2026-02-23T10:00:00-05:00",
"time_zone": "America/New_York"
}