Actions42
- Item Actions
- Banking Actions
- Contact Actions
- Invoice Actions
- Order Actions
- Quote Actions
Overview
This node interacts with the Bexio API to create new items (products or services) in the Bexio system. It is useful for automating the addition of inventory or service items, including setting details like internal name, user-friendly name, article type, unit of measurement, pricing, and tax information. For example, it can be used in workflows that manage product catalogs or synchronize item data from other systems into Bexio.
Use Case Examples
- Creating a new product with a specific internal name, sale price, and tax category.
- Adding a service item with a user-friendly name and unit of measurement.
Properties
| Name | Meaning |
|---|---|
| Internal Name | The internal identifier for the item, required for creation. |
| User Name | The display name for the item, optional additional field. |
| Article Type | Specifies whether the item is a physical product or a service. |
| Unit Name or ID | Unit of measurement for the item, selectable from a list or specified by ID. |
| Sale Price | The sales price of the item, with two decimal precision. |
| Purchase Price | The purchase price of the item, with two decimal precision. |
| Tax Income Name or ID | Income tax category for the item, selectable from a list or specified by ID. |
Output
JSON
id- The unique identifier of the created item in Bexio.intern_name- The internal name of the created item.user_name- The display name of the created item, if provided.article_type- The type of the item, either physical or service.unit_id- The unit of measurement ID associated with the item.sale_price- The sales price set for the item.purchase_price- The purchase price set for the item.tax_income_id- The tax income ID associated with the item.
Dependencies
- Bexio API with authentication credentials
Troubleshooting
- Ensure the 'Internal Name' is unique and not empty, as it is required for item creation.
- Verify that the unit and tax IDs used are valid and exist in the Bexio system to avoid API errors.
- Check API credentials and permissions if the node fails to connect or create items.
- If the node throws errors about missing fields, confirm that required fields are correctly set in the node parameters.
Links
- Bexio API Documentation - Official documentation for the Bexio API, useful for understanding item creation and available fields.