Actions42
- Item Actions
- Banking Actions
- Contact Actions
- Invoice Actions
- Order Actions
- Quote Actions
Overview
This node interacts with the Bexio API to retrieve multiple customer orders. It supports fetching either all orders or a limited number based on user input. This is useful for scenarios where users need to synchronize or analyze order data from Bexio, such as generating reports, integrating with other systems, or automating order processing workflows.
Use Case Examples
- Fetch all customer orders from Bexio to update a local database.
- Retrieve a limited number of recent orders for quick analysis or display in a dashboard.
Properties
| Name | Meaning |
|---|---|
| Return All | Determines whether to return all customer orders or limit the number of results. |
| Limit | Specifies the maximum number of orders to return when 'Return All' is false. The value can range from 1 to 2000. |
Output
JSON
id- Unique identifier of the order.contact_id- Identifier of the customer associated with the order.date- Date when the order was created.total_amount- Total monetary value of the order.status- Current status of the order (e.g., pending, completed).items- List of items included in the order, each with details such as product ID, quantity, and price.
Dependencies
- Bexio API
Troubleshooting
- Ensure the Bexio API credentials are correctly configured and have the necessary permissions to access order data.
- If the node returns an error about limits, verify that the 'Limit' property is within the allowed range (1 to 2000).
- Network issues or API downtime can cause request failures; check connectivity and Bexio service status if errors persist.
Links
- Bexio API Documentation - Official documentation for the Bexio API, including endpoints for orders and other resources.