Bexio icon

Bexio

Interact with Bexio API

Overview

This node interacts with the Bexio API to update an existing item (product or service) in the Bexio system. It is useful for scenarios where you need to modify details of an item such as its user name or sale price. For example, you can update the sale price of a product or change the user name associated with an item in your inventory management workflow.

Use Case Examples

  1. Updating the sale price of a product after a price change.
  2. Changing the user name associated with an item for record-keeping purposes.

Properties

Name Meaning
Item ID The unique identifier of the item to update. This is required to specify which item will be modified.
Update Fields A collection of fields to update on the item. This includes properties like 'User Name' and 'Sale Price' which can be changed to new values.

Output

JSON

  • id - The unique identifier of the updated item.
  • user_name - The updated user name of the item.
  • sale_price - The updated sale price of the item.

Dependencies

  • Requires an API key credential for Bexio API authentication to perform update operations.

Troubleshooting

  • Common issues include providing an invalid or non-existent Item ID, which will cause the update to fail. Ensure the Item ID is correct and exists in the Bexio system.
  • Incorrect or missing API credentials will result in authentication errors. Verify that the API key credential is correctly configured.
  • Providing invalid data types for update fields (e.g., a string instead of a number for sale price) may cause the API to reject the request. Validate input data types before sending.

Links

  • Bexio API Documentation - Official documentation for the Bexio API, useful for understanding available endpoints and data structures.

Discussion