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: POST
Sample Payload:
{
"hotelCode": "SANDBOX-OTA",
"updates": [
{
"startDate": "2023-02-22",
"endDate": "2023-02-24",
"rates": [
{
"roomCode": "EXECUTIVE",
"rate": 1749.0,
"rateplanCode": "EXECUTIVE-S-101"
},
{
"roomCode": "EXECUTIVE",
"rate": 1849.0,
"rateplanCode": "EXECUTIVE-D-101"
},
{
"roomCode": "SUITE",
"rate": 2749.0,
"rateplanCode": "SUITE-S-101"
},
{
"roomCode": "SUITE",
"rate": 2849.0,
"rateplanCode": "SUITE-D-101"
}
]
}
]
}
Response
Sample Response:
{
"success": true,
"message": "Rates Updated Successfully"
}
Related Articles
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. ...
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. ...
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", ...
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", ...
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 ...