Skip Navigation

Transportation

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


Parameter Description Type Required
Transporation/@EstimatedCheckInTime Specifies the estimated check-in time associated with a reservation, if applicable. String No
Transporation/@EstimatedCheckOutTime Specifies the estimated check-out time associated with a reservation, if applicable. String No
Transporation/Details/TransferRequest/@Code Specifies a transportation code. String No
Transporation/Details/TransferRequest/@Type Specifies whether transportation request is relevant to the arrival or departure of a guest.
Values: Arrival, Departure
String No
Transporation/Details/TransferRequest/@Chargeable If true, indicates that the transportation is chargeable. Boolean No
Transporation/Details/TransferRequest/@RequiresArrangement If true, indicates that transportation arrangements need to be made by the hotel. Boolean No
Transporation/Details/TransferRequest/@Time Arrival or departure time to be communicated to the hotel. String No
Transporation/Details/TransferRequest/@Mode Transportation Method
Values: Alternate, Bus, Taxi, Train
String No
Transporation/Details/Airline/@Code Airline Code String No
Transporation/Details/Airline/@FlightNumber Airline Flight Number String No
Transporation/Details/Location/@Code Location Code as defined in SynXis CR String No
Transporation/Details/Location/@Type Location Type
Values: Airport, BoatDock, BusTerminal, TrainStation, Unknown
String No
Transporation/Details/Location/@Details Additional details about the guest arrival/departure Location, if the arrival/departure is not by Airline String No


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