Check Hotel Availability

Last Update Date 13.07.2023

Request Url

http://api.stage.paximum.com/v1/search/checkhotelavailability

Request Model

Attribute Type Required Description
OfferId String Yes Selected offer id from search response

The information in this response is the latest information of the offer.
The board and roomTypes should be shown to the customer
DailyPrices only for information, your buying price is offer price.
Cancellation policy penalty date is UTC date and time is important, do not ignore it when calculating.

Request Sample

    
{"offerId":"206d0428-48fe-4f23-ac85-e5bc8953c10a"}

Response Model

Attribute Type Description
SearchId String SearchId of the response
expiresOn DateTime Expiration date of response offers
CheckInDate String CheckInDate format (yyyy-MM-dd)
CheckOutDate String CheckOutDate format (yyyy-MM-dd)
HotelId String Hotel Id
Offers Array (Object) Offers of the response

Response Sample

    
    {
    "expiresOn": "2023-01-24T07:59:55.9126514Z",
    "searchId": "ca959673-0504-4626-b4d9-35d9a424c434",
    "checkinDate": "2023-01-27T00:00:00Z",
    "checkoutDate": "2023-01-28T00:00:00Z",
    "hotelId": "103132",
    "offers": [
        {
            "rooms": [
                {
                    "id": "4059da97-9128-4e8a-8bad-3ad4b17aadb5",
                    "type": "IQSP.e9c84bae-e2aa-4cab-957f-70ab3ac2f376:Deluxe Room, Jetted Tub - 1 double and 1 twin bed",
                    "promotions": [],
                    "travellers": [
                        {
                            "type": "adult",
                            "age": 0,
                            "nationality": "TR"
                        },
                        {
                            "type": "adult",
                            "age": 0,
                            "nationality": "TR"
                        }
                    ]
                }
            ],
            "id": "206d0428-48fe-4f23-ac85-e5bc8953c10a",
            "board": "All Inclusive",
            "price": {
                "amount": 140.0,
                "currency": "EUR"
            },
            "priceBreakdown": [
                {
                    "roomId": "4059da97-9128-4e8a-8bad-3ad4b17aadb5",
                    "date": "2015-11-26T00:00:00Z",
                    "price": {
                        "amount": 140.0,
                        "currency": "EUR"
                    }
                }
            ],
            "cancellationPolicies": [
                {
                    "fee": {
                        "amount": 140.0,
                        "currency": "EUR"
                    },
                    "afterDate": "2015-11-25T00:00:00Z"
                }
            ],
            "supplements": [],
            "isSpecial": false,
            "isB2CPrice": false,
            "minimumSalePrice": {
                "amount": 0.0,
                "currency": "EUR"
            },
            "isAvailable": true,
            "notes": [],
            "warnings": []
        }
    ],
    "totalOfferCount": 20
}