Bexio icon

Bexio

Interact with Bexio API

Overview

This node interacts with the Bexio API to perform operations on various resources, including items. Specifically, the 'Get' operation for the 'Item' resource retrieves detailed information about a product or service by its unique ID. This is useful for workflows that need to fetch item details for inventory management, invoicing, or order processing.

Use Case Examples

  1. Retrieve an item by its ID to display its details in a dashboard.
  2. Fetch product information to include in a customer invoice.
  3. Get service details to update an order with accurate pricing.

Properties

Name Meaning
Item ID The unique identifier of the item to retrieve. This is a required string input used to specify which item to get from Bexio.

Output

JSON

  • id - The unique identifier of the item.
  • name - The name of the item.
  • description - A description of the item.
  • price - The price of the item.
  • tax_id - The tax identifier associated with the item.
  • unit_id - The unit of measurement for the item.
  • created_at - Timestamp when the item was created.
  • updated_at - Timestamp when the item was last updated.

Dependencies

  • Bexio API authentication token or API key credential

Troubleshooting

  • Ensure the Item ID provided is valid and exists in the Bexio system to avoid 'item not found' errors.
  • Check that the Bexio API credentials are correctly configured and have the necessary permissions to access item data.
  • If the API request limit is exceeded, the node may fail; consider implementing retry logic or rate limiting.

Links

  • Bexio API Documentation - Official documentation for the Bexio API, including endpoints for items and other resources.

Discussion