Apaleo icon

Apaleo

Interact with Apaleo API

Overview

This node interacts with the Apaleo API, specifically allowing management of various resources including Folios. For the DELETE folio operation, it deletes a folio identified by its unique Folio ID. This is useful in scenarios where you need to remove billing or financial records associated with a booking or reservation in Apaleo.

Practical examples:

  • Automatically deleting folios that are no longer needed after a cancellation.
  • Cleaning up test data by removing folios created during development or testing.
  • Managing folios programmatically as part of a larger workflow for hotel management automation.

Properties

Name Meaning
Folio ID The unique identifier of the folio to delete

Output

The output is an array of JSON objects corresponding to each input item processed. For the DELETE folio operation, the output typically contains confirmation of the deletion or an empty JSON object if no content is returned by the API. There is no binary data output.

Example output structure (conceptual):

[
  {
    "json": {
      // Confirmation details or empty object
    }
  }
]

Dependencies

  • Requires an API authentication token credential for Apaleo API access.
  • The node uses the base URL https://api.apaleo.com.
  • No additional external services beyond Apaleo API are required.

Troubleshooting

  • Common issues:

    • Invalid or missing Folio ID will cause the API call to fail.
    • Insufficient permissions or invalid API token may result in authorization errors.
    • Network connectivity issues can prevent successful API calls.
  • Error messages and resolutions:

    • "Folio not found": Verify the Folio ID is correct and exists.
    • "Unauthorized" or "Forbidden": Check that the API token has the necessary permissions.
    • "Request failed" or timeout errors: Ensure network connectivity and Apaleo API availability.

Links and References

Discussion