Apaleo icon

Apaleo

Interact with Apaleo API

Overview

This node integrates with the Apaleo API to retrieve detailed information about a specific reservation by its ID. It is useful in scenarios where you need to fetch reservation details for processing, reporting, or further automation within your workflow. For example, you might use this node to get reservation data to confirm booking details before sending a confirmation email or to update other systems with reservation status.

Properties

Name Meaning
Reservation ID The unique identifier of the reservation to retrieve

Output

The node outputs JSON data representing the reservation details fetched from the Apaleo API. This typically includes all relevant fields of the reservation such as guest information, booking dates, status, and any associated metadata. The output does not include binary data.

Example structure (simplified):

{
  "id": "string",
  "status": "string",
  "guest": {
    "firstName": "string",
    "lastName": "string",
    "email": "string"
  },
  "arrivalDate": "string",
  "departureDate": "string",
  "rooms": [
    {
      "roomType": "string",
      "quantity": 1
    }
  ],
  ...
}

Dependencies

  • Requires an API key credential for authenticating with the Apaleo API.
  • The node uses the base URL https://api.apaleo.com.
  • Proper configuration of the API authentication token is necessary in n8n credentials.

Troubleshooting

  • Common issues:

    • Invalid or expired API token: Ensure the API key credential is valid and has not expired.
    • Incorrect Reservation ID: Verify that the provided reservation ID exists and is correctly formatted.
    • Network connectivity problems: Check internet connection and firewall settings allowing access to api.apaleo.com.
  • Error messages:

    • "Unauthorized" or "Authentication failed": Indicates invalid API credentials; reconfigure the API key.
    • "Reservation not found": The specified reservation ID does not exist; double-check the ID.
    • "Request timeout": Network issues or slow response; retry or check network stability.

Links and References

Discussion