Bexio icon

Bexio

Interact with Bexio API

Overview

This node integrates with the Bexio API to perform operations related to customer orders. Specifically, the 'Search' operation under the 'Order' resource allows users to search for customer orders in their Bexio account. It supports returning either all matching orders or a limited number of results, making it useful for workflows that need to retrieve order data for processing, reporting, or synchronization with other systems.

Use Case Examples

  1. A user wants to retrieve all customer orders to generate a sales report.
  2. A workflow needs to fetch a limited number of recent orders to update an external CRM system.

Properties

Name Meaning
Return All Determines whether to return all matching orders or limit the number of results.
Limit Specifies the maximum number of orders to return when 'Return All' is false.

Output

JSON

  • orderId - Unique identifier of the order.
  • orderDate - Date when the order was placed.
  • customerId - Identifier of the customer who placed the order.
  • orderStatus - Current status of the order.
  • totalAmount - Total amount of the order.

Dependencies

  • Requires an API key credential for authenticating with the Bexio API.

Troubleshooting

  • Common issues include authentication failures due to invalid or missing API credentials. Ensure the API key credential is correctly configured.
  • API rate limits may cause errors if too many requests are made in a short period. Implement retry logic or reduce request frequency.
  • If the 'Limit' parameter is set too high, the API may reject the request or return partial data. Use reasonable limits within the allowed range (1-2000).

Links

Discussion