Actions57
- Booking Actions
- Group Actions
- Offer Actions
- Block Actions
- Block Action Actions
- Reservation Actions
- Reservation Action Actions
- Types Actions
- Folio Actions
- Folio Action Actions
Overview
This node interacts with the Apaleo API to manage groups within a booking system. Specifically, the DELETE group operation allows users to delete an existing group booking by specifying its unique Group ID. This is useful in scenarios where a group reservation needs to be canceled or removed from the system, such as when a client cancels their group booking or if the booking was created in error.
Practical examples include:
- Automatically removing group bookings that are no longer valid.
- Cleaning up test or temporary group bookings during workflow automation.
- Integrating with external systems to synchronize group booking deletions.
Properties
| Name | Meaning |
|---|---|
| Group ID | The unique identifier of the group booking to delete. This is required to specify which group booking should be removed. |
Output
The output of this node is an array of JSON objects corresponding to each input item processed. For the DELETE group operation, the output typically contains confirmation of the deletion or an empty JSON object if no data is returned by the API. If an error occurs and "Continue On Fail" is enabled, the output will include an error message for the failed item.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the Apaleo API using a valid API authentication token (API key or OAuth token).
- The node expects the user to configure credentials for accessing the Apaleo API within n8n.
- Network access to
https://api.apaleo.commust be available.
Troubleshooting
Common issues:
- Invalid or missing Group ID: Ensure the Group ID provided exists and is correctly formatted.
- Authentication errors: Verify that the API credentials are valid and have sufficient permissions to delete group bookings.
- Network connectivity problems: Confirm that the n8n instance can reach the Apaleo API endpoint.
Error messages:
"Group not found": The specified Group ID does not exist. Double-check the ID."Unauthorized"or"Authentication failed": Check API credentials and refresh tokens if necessary."Forbidden": The API user lacks permission to delete groups; verify roles and scopes.- Other HTTP errors: Review the response code and message from the API for guidance.
Links and References
- Apaleo API Documentation
- Apaleo Group Booking API
- n8n Documentation on Creating Custom Nodes