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", ...
Reservation POST from Aiosell to PMS
New Reservation (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 ...
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: ...
Rates Restrictions POST from Aiosell to 3rd Party
API Endpoint URL: BASE URL TO BE SHARED BY OTA Purpose This API allows Aiosell to communicate restrictions to third-party OTAs. Request Format | Method: POST Sample Payload: { "hotelCode": "SANDBOX-OTA", "updates": [ { "startDate": "2025-02-22", ...
Inventory Push from PMS to Aiosell
API Endpoint URL: https://live.aiosell.com/api/v2/cm/update/sample-pms Purpose This API is designed to allow Property Management Systems (PMS) to push updated room inventory data to Aiosell Channel Manager. This ensures accurate availability across ...