FETCH Reservations from Aiosell

FETCH Reservations from Aiosell


Purpose:
This API allows third-party systems to fetch reservation and booking details for hotels connected via Aiosell’s Channel Manager

Method: POST

DATA:

{
    "type"     : "reservation",
    "hotelCode": "{HOTEL_CODE}",
    "startDate": "2025-07-20",
    "endDate"  : "2025-07-22"
}

RESPONSE (from Aiosell):

[
    {
        "action": "cancel",
        "amount": {
            "amountAfterTax": 1839.6,
            "amountBeforeTax": 1642.5,
            "commission": 295.65,
            "currency": null,
            "tax": 197.1,
            "tcs": 8.21,
            "tds": 1.64
        },
        "bookedOn": "2025-07-10 21:58:51",
        "bookingId": "0152082778",
        "channel": "MakeMyTrip",
        "checkin": "2025-07-12",
        "checkout": "2025-07-13",
        "cmBookingId": "NH75148416452164",
        "guest": {
            "address": {
                "city": null,
                "country": null,
                "line1": null,
                "state": null,
                "zipCode": null
            },
            "email": null,
            "firstName": "sathya",
            "lastName": "shetty",
            "phone": null
        },
        "hotelCode": "1000170200",
        "pah": false,
        "rooms": [
            {
                "guestName": "sathya shetty",
                "occupancy": {
                    "adults": 2,
                    "children": 0
                },
                "prices": null,
                "rateplanCode": "990000801753",
                "roomCode": "45000437056"
            }
        ],
        "segment": "OTA",
        "specialRequests": null
    },
    {
        "action": "book",
        "amount": {
            "amountAfterTax": 1451.52,
            "amountBeforeTax": 1296,
            "commission": 233.28,
            "currency": null,
            "tax": 155.52,
            "tcs": 6.48,
            "tds": 1.3
        },
        "bookedOn": "2025-07-10 21:48:13",
        "bookingId": "0152081986",
        "channel": "MakeMyTrip",
        "checkin": "2025-07-10",
        "checkout": "2025-07-11",
        "cmBookingId": "NH73243416449956",
        "guest": {
            "address": {
                "city": null,
                "country": null,
                "line1": null,
                "state": null,
                "zipCode": null
            },
            "email": null,
            "firstName": "kaushik",
            "lastName": "selvaraj",
            "phone": null
        },
        "hotelCode": "1000170200",
        "pah": false,
        "rooms": [
            {
                "guestName": "kaushik selvaraj",
                "occupancy": {
                    "adults": 1,
                    "children": 0
                },
                "prices": null,
                "rateplanCode": "990000796885",
                "roomCode": "45000437057"
            }
        ],
        "segment": "OTA",
        "specialRequests": null
    }
]
    • Related Articles

    • Aiosell REST API Documentation - FETCH Rates, Inventory & Reservation

      This guide is designed for 3rd Party looking to integrate with Aiosell Channel Manager and FETCH details. Inventory FETCH POST Description: FETCH room availability (inventory) from Aiosell for various room types. Reference: ...
    • FETCH Inventory from Aiosell

      API Endpoint URL: https://live.aiosell.com/api/v2/cm/data/{PARTNER_ID} Purpose: This API allows third-party systems to fetch Inventory for hotels connected via Aiosell’s Channel Manager Method: POST DATA: { "type" : "inventory", "hotelCode": ...
    • FETCH Rates from Aiosell

      API Endpoint URL: https://live.aiosell.com/api/v2/cm/data/{PARTNER_ID} Purpose: This API allows third-party systems to fetch rates of hotels connected via Aiosell’s Channel Manager. DATA: { "type" : "rates", "hotelCode": "{HOTEL_CODE}", "startDate": ...
    • Aiosell REST API Documentation - PMS to Channel Manager Integration

      This guide is designed for Property Management Systems (PMS) looking to integrate with Aiosell Channel Manager. It outlines the required API endpoints, data formats, and workflows for pushing inventory, rates, and reservations. Inventory Push ...
    • Aiosell REST API Documentation - OTA/Booking Engine to Channel Manager

      This guide is designed for Online Travel Agents / Booking Engine looking to integrate with Aiosell Channel Manager. It outlines the required API endpoints, data formats, and workflows for receiving inventory, rates, and posting reservations. ...