Skip to main content

Transportation

Add this information to indicate transportation details so that a hotel can know how and when guests are arriving and departing.

 

ParameterDescriptionTypeRequired
Transporation/@EstimatedCheckInTimeSpecifies the estimated check-in time associated with a reservation, if applicable.StringNo
Transporation/@EstimatedCheckOutTimeSpecifies the estimated check-out time associated with a reservation, if applicable.StringNo
Transporation/Details/TransferRequest/@CodeSpecifies a transportation code.StringNo
Transporation/Details/TransferRequest/@TypeSpecifies whether transportation request is relevant to the arrival or departure of a guest. 
Values: Arrival, Departure
StringNo
Transporation/Details/TransferRequest/@ChargeableIf true, indicates that the transportation is chargeable.BooleanNo
Transporation/Details/TransferRequest/@RequiresArrangementIf true, indicates that transportation arrangements need to be made by the hotel.BooleanNo
Transporation/Details/TransferRequest/@TimeArrival or departure time to be communicated to the hotel.StringNo
Transporation/Details/TransferRequest/@ModeTransportation Method 
Values: Alternate, Bus, Taxi, Train
StringNo
Transporation/Details/Airline/@CodeAirline CodeStringNo
Transporation/Details/Airline/@FlightNumberAirline Flight NumberStringNo
Transporation/Details/Location/@CodeLocation Code as defined in SynXis CRStringNo
Transporation/Details/Location/@TypeLocation Type 
Values: Airport, BoatDock, BusTerminal, TrainStation, Unknown
StringNo
Transporation/Details/Location/@DetailsAdditional details about the guest arrival/departure Location, if the arrival/departure is not by AirlineStringNo

 

Sample Request (Partial)

{
    "Chain": {...},
    "Channels": {...},
    "Hotel": {...},
    "Guests": [...],
    "RoomStay": {...},
    "Transporation": {
        "EstimatedCheckInTime": "12:30 PM",
        "EstimatedCheckOutTime": "2:30 PM",
        "Details": [
            {
                "TransferRequest": {
                    "Code": "TC1",
                    "Type": "Arrival",
                    "Chargeable": true,
                    "RequiresArrangement": true,
                    "Time": "1PM",
                    "Mode": "Limo"
                },
                "Airline": {
                    "Code": "AA",
                    "FlightNumber": "1597"
                },
                "Location": {
                    "Code": "COS",
                    "Type": "Airport"
                }
            },
            {
                "TransferRequest": {
                    "Code": "TC1",
                    "Type": "Departure",
                    "Chargeable": true,
                    "RequiresArrangement": true,
                    "Time": "7AM",
                    "Mode": "Limo"
                },
                "Airline": {
                    "Code": "AA",
                    "FlightNumber": "1598"
                },
                "Location": {
                    "Code": "COS",
                    "Type": "Airport"
                }
            }
        ]
    },
    "status": "Confirmed"
}

 

Sample Retrieve Reservation response (partial)

{
    "Transporation": {
        "TransportationInfo": [
            {
                "Airline": {
                    "Code": "AA",
                    "FlightNumber": "1597"
                },
                "Location": {
                    "Code": "COS",
                    "Type": "Airport"
                },
                "TransferRequest": {
                    "Code": "TC1",
                    "Type": "Arrival",
                    "Chargeable": true,
                    "RequiresArrangementByHotel": true,
                    "Mode": "Limo",
                    "Time": "2023-06-07T13:00:00"
                }
            },
            {
                "Airline": {
                    "Code": "AA",
                    "FlightNumber": "1598"
                },
                "Location": {
                    "Code": "COS",
                    "Type": "Airport"
                },
                "TransferRequest": {
                    "Code": "TC1",
                    "Type": "Departure",
                    "Chargeable": true,
                    "RequiresArrangementByHotel": true,
                    "Mode": "Limo",
                    "Time": "2023-06-08T07:00:00"
                }
            }
        ],
        "EstimatedCheckInTime": "12:30",
        "EstimatedCheckOutTime": "14:30"
    }
}