bexio Items
bexio_itemsList, search, create, update, or delete business items (products and services) with prices, stock, and tax data.
Instructions
Manage items/products (called "articles" in the bexio API): physical products and services with internal code/name, purchase & sale prices, taxes, units and stock information. Actions: "list" (all items, optional limit/offset/order_by; order by "id" or "intern_name"), "search" (search_criteria required; searchable fields include intern_name, intern_code, id — conditions are AND-combined, default operator "like"), "get" (single item by numeric id), "create" (payload required; intern_name is mandatory, set article_type_id 1 for products / 2 for services), "update" (id + payload with the fields to change), "delete" (permanently delete an item by id — cannot be undone).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Item id (required for get/update/delete) | |
| limit | No | Maximum number of results (default 500, max 2000) | |
| action | Yes | Operation to perform | |
| offset | No | Number of results to skip (pagination) | |
| payload | No | Item fields (required for create/update) | |
| order_by | No | Field to order by; append "_desc" for descending (e.g. "id_desc") | |
| search_criteria | No | Search conditions, combined with logical AND |