Actions45
- Block Actions
- Block Action Actions
- Booking Actions
- Group Actions
- Offer Actions
- Reservation Actions
- Folio Actions
- Types Actions
Overview
This node integrates with the Apaleo API to manage hotel bookings and related resources. Specifically, for the Booking resource with the POST bookings force operation, it allows users to create or force-create bookings by submitting detailed booking information in JSON format. This is useful in scenarios where automated or programmatic creation of bookings is needed, such as integrating a custom booking system, syncing external reservations, or bulk importing bookings.
Practical examples include:
- Automatically creating bookings from an external channel manager.
- Forcing a booking creation when certain conditions require bypassing standard validation.
- Integrating with CRM systems to push booking data directly into Apaleo.
Properties
| Name | Meaning |
|---|---|
| Booking Details | The booking details provided as a JSON object. This should contain all necessary fields required by Apaleo to create a booking. |
Output
The node outputs an array of JSON objects corresponding to each input item processed. Each output JSON object contains the response from the Apaleo API after attempting to create or force-create a booking. This typically includes booking identifiers, status, and any metadata returned by the API.
If the operation fails for an item and "Continue On Fail" is enabled, the output for that item will contain an error field with the error message and an empty JSON object.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Apaleo API via an API authentication token (access token).
- The node expects the user to configure credentials containing the necessary API access token.
- Network connectivity to
https://api.apaleo.comis required.
Troubleshooting
- Common issues:
- Invalid or incomplete booking details JSON can cause API errors.
- Expired or invalid API tokens will result in authentication failures.
- Network issues may prevent communication with the Apaleo API.
- Error messages:
- Errors returned by the API are passed through; typical messages might include validation errors on booking data or authorization errors.
- If "Continue On Fail" is disabled, the node execution will stop at the first error.
- Resolution tips:
- Validate the JSON structure of booking details before sending.
- Ensure API credentials are up to date and have sufficient permissions.
- Check network connectivity and firewall settings.