Skip Navigation

Source

Allows the booking application to store information about the source of the reservation.


Parameter Description Type Required
BookingURL Contains the URL where the reservation request came from. String No
IP_Address Contains the IP Address of a person making the reservation. String No
Telephony/@VDN The VDN used to create the reservation. String No


    "Source": {
        "IP_Address": "198.162.1.1",
        "BookingURL": "myhotelwebsite.com",
        "Telephony": {
            "VDN": "VDN1234"
        }
    }


Sample Request

{
    "Source": {
        "IP_Address": "198.162.1.1",
        "BookingURL": "myhotelwebsite.com",
        "Telephony": {
            "VDN": "VDN1234"
        }
    },
    "Chain": {
        "Id": 14161022
    },
    "Channels": {
        "PrimaryChannel": {
            "Code": "WEB"
        },
        "SecondaryChannel": {
            "Code": "SYNXISWS_BE"
        }
    },
    "Hotel": {
        "Id": 100319
    },
    "Guests": [
        {
            "PersonName": {
                "GivenName": "John",
                "Surname": "Public"
            },
            "Payments": [
                {
                    "PaymentCard": {
                        "CardCode": "VI",
                        "CardHolder": "John Public",
                        "CardNumber": "444444444444444",
                        "CardSecurityCode": "123",
                        "ExpireDate": "1225"
                    },
                    "Type": "CreditCard"
                }
            ],
            "ContactNumbers": [
                {
                    "Number": "555-123-2717"
                }
            ],
            "EmailAddress": [
                {
                    "Value": "john.public@email.com"
                }
            ]
        }
    ],
    "RoomStay": {
        "StartDate": "2023-06-07",
        "EndDate": "2023-06-08",
        "GuestCount": [
            {
                "AgeQualifyingCode": "Adult",
                "NumGuests": 1
            }
        ],
        "NumRooms": 1,
        "Products": [
            {
                "Product": {
                    "RateCode": "BAR",
                    "RoomCode": "LUXQ"
                }
            }
        ]
    },
    "status": "Confirmed"
}