v1
latestOpenAPI 3.0.32026-07-268955212.1 KBitems
Get items
Get all items for the company. Use the query parameters to filter and navigate through the results.
Scope: items:read
get/companies/{companyId}/items
Query parameters
pageinteger
Page number
pageSizeinteger
Number of items per page
querystring
Optional query to filter the data set with supported fields listed below and available operations.
| Field | Type |
|---|---|
| description | string |
| itemType | string |
| productType | string |
| unitType | string |
| unitPrice | number |
| taxRate | number |
Response
Items found
Example response
{
"totalItems": 1,
"totalPages": 1,
"currentPage": 1,
"items": [
{
"id": "fc967153-1f8a-48d0-b773-fe3e61978263",
"description": "Product 1",
"itemType": "salesItem",
"productType": "goods",
"unitType": "piece",
"unitPrice": 100,
"taxRate": 25,
"bookkeepingAccountNumber": 3920
}
]
}