Skip Navigation

Contact Information

Contact Info

Return the contact information for the hotel

Sample Request

Use include=ContactInfo to return contact information for the hotel

/v1/api/hotel/13098/details?primaryChannel=WEB&include=ContactInfo

Response (partial)

{
    "hotelList": [{
        "ContactDetails": {
            "ContactName": " ",
            "ContactNumberList": [{
                "Number": "555 986 3332",
                "Type": "Fax"
            }, {
                "Number": "555 569 9899",
                "Type": "Voice1"
            }, {
                "Number": "555 123 4444",
                "Type": "Voice2"
            }],
            "EmailAddress": "hotelContact@email.com",
            "Website": "www.somehoteladdress.com"
        }
    }]
}


Request Contact Numbers based on a specified language.

Note: Use Accept-Language to return language specific content.

Response (partial)

{
    "hotelList": [{
        "ContactDetails": {
            "ContactName": " ",
            "ContactNumberList": [{
                "Number": "+1-555-986-3332",
                "Type": "Fax"
            }, {
                "Number": "+1-555-569-9899",
                "Type": "Voice1"
            }, {
                "Number": "+1-555-123-4444",
                "Type": "Voice2"
            }],
            "EmailAddress": "hotelContact@email.com",
            "Website": "www.somehoteladdress.com"
        }
    }]
}