Inventory POST from Aiosell to 3rd Party
API Endpoint URL: BASE URL TO BE SHARED BY OTA
Purpose
This API allows Aiosell to communicate inventory updates, including availability and restrictions, to third-party OTAs (Online Travel Agencies). It ensures inventory consistency across platforms.
Request Format | Method: POST
Sample Payload:
{
"hotelCode": "SANDBOX-PMS",
"updates": [
{
"startDate": "2023-01-24",
"endDate": "2023-01-26",
"rooms": [
{
"available": 3,
"roomCode": "SUITE"
},
{
"available": 20,
"roomCode": "EXECUTIVE"
}
]
}
]
}
Response
{
"success": true,
"message": "Inventory Updated Successfully"
}
Related Articles
Inventory Restrictions POST from Aiosell to 3rd Party
API Endpoint URL: BASE URL TO BE SHARED BY OTA Purpose: This API allows Aiosell to communicate inventory restrictions, to third-party OTAs (Online Travel Agencies). Request Format | Method: POST Sample Payload: { "hotelCode": "SANDBOX-OTA", ...
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": ...
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: ...
Reservation POST from Aiosell to PMS
API Endpoint URL: https://sample-pms.com/update_reservation *Note: This is a sample url for reference purpose, 3rd Party/ PMS will need to create an END POINT / WEBHOOK and share it with Aiosell team* Purpose This API is used by Aiosell to push new ...
Rate POST from Aiosell to 3rd Party / OTA
API ENDPOINT URL: TO BE SHARED BY OTA Purpose This API allows Aiosell to communicate updated room rates and restrictions to third-party OTAs (Online Travel Agencies). It ensures consistency in pricing across all platforms. Request Format | Method: ...