Skip to content

Live Car order details

Request

Returns enriched, live car order details for a specific reservation, including vehicle, supplier, pricing, insurance, policy, and driver information.

This endpoint is currently available as a beta feature for evaluation and testing purposes.

The endpoint is temporary and will be deprecated once its functionality is incorporated into the primary /orders/details/cars endpoint.

Security
BearerAuth
Headers
X-Affiliate-Idintegerrequired

Include here your Affiliate identifier number

Bodyapplication/jsonrequired
currencystring or null(currencyId)^[A-Z]{3}$

A three-letter code that uniquely identifies a monetary currency as defined by the ISO 4217 standard. The full list can be obtained by calling common/payments/currencies.

Example:"EUR"
reservationsArray of strings, = 1 itemsrequired

List of reservation IDs to retrieve live car order details for. Currently limited to a single reservation per request.

bookerobjectrequired

Information about the person who made the booking. Required for car order details.

curl -i -X POST \
  https://demandapi.booking.com/3.2/orders/details/cars/live \
  -H 'Authorization: Bearer <YOUR_string_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'X-Affiliate-Id: 0' \
  -d '{
    "currency": "USD",
    "reservations": [
      "11223344"
    ],
    "booker": {
      "country": "nl"
    }
  }'

Responses

Live car order details retrieved successfully.

Bodyapplication/json
request_idstring(requestId)

Uniquely identifies the request. Please provide this identifier when contacting support.

dataArray of objects(CarsPostbookOutput)

List of car order objects for the requested reservations.

Response
{ "request_id": "01fr9ez700exycb98w90w5r9sh", "data": [ {} ] }