HolidayTaxis Supplier Connect API Documentation

Reconfirm Multiple Bookings

Basic Usage

In order to reconfirm multiple bookings, the following url must be used via a POST request:

HTTP POST: /bookings/reconfirm

Request Details

The details to be updated must be included as the RAW POST DATA in either XML or JSON.

You can update any of the below details of a booking:

Pick-up time

A booking's pick-up time (in local timezone) can be confirmed or updated. The default pickup time on bookings is based on the estimated travel time to the destination and the check-in time required at the destination airport, port, train station, etc. (if applicable).

It is highly recommended that the pick-up time is reviewed on ALL bookings to ensure all passengers get to their destination in plenty of time.

Name and Address of Pick-up Accommodation

The name and address of a booking's pick-up accommodation can be updated if they are different from the details currently on the booking.

Parameters

Field Name Required Values
ref Required Booking reference number
newpickuphour Required 0 to 23
newpickupmin Required 0 to 59
newpickupaccom Optional Text
newpickupaddress1 Optional Text
newpickupaddress2 Optional Text
newpickupaddress3 Optional Text

Example

Confirming/updating a pickup time/accommodation against a booking

HTTP POST: /bookings
JSON Request
{
  "bookings": [
    {
      "ref": "HTX-1444774",
      "newpickuphour": "10",
      "newpickupmin": "10",
      "newpickupaccom": "Suite B 2nd Floor Moore House",
      "newpickupaddress1": "13 Black Lion Street",
      "newpickupaddress2": "Brighton",
      "newpickupaddress3": "Sussex"
    },
    {
      "ref": "HTX-1445784",
      "newpickuphour": "22",
      "newpickupmin": "20"
    }
  ]
}
XML Request
<?xml version="1.0" encoding="UTF-8"?>
<request>
  <booking>
    <ref>HTX-1444774</ref>
    <newpickuphour>10</newpickuphour>
    <newpickupmin>10</newpickupmin>
    <newpickupaccom>Suite B 2nd Floor Moore House</newpickupaccom>
    <newpickupaddress1>13 Black Lion Street</newpickupaddress1>
    <newpickupaddress2>Brighton</newpickupaddress2>
    <newpickupaddress3>Sussex</newpickupaddress3>
  </booking>
  <booking>
    <ref>HTX-1445784</ref>
    <newpickuphour>22</newpickuphour>
    <newpickupmin>20</newpickupmin>
  </booking>
</request>