v1

latestOpenAPI 3.0.32026-07-268955212.1 KB
items

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.

FieldType
descriptionstring
itemTypestring
productTypestring
unitTypestring
unitPricenumber
taxRatenumber

Response

Items found

totalItemsinteger
totalPagesinteger
currentPageinteger

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
    }
  ]
}