v1
latestOpenAPI 3.0.02026-07-2455104.8 MBList product calculation line items V3
This endpoint requires the following scopes: productCalculation:read.
List a product purchase price calculation line items
Path parameters
Query parameters
The filter parameter is used to filter the results of the given endpoint.
Supported filter operators by key:
archived: equals, notEquals
designation: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
costType: equals, notEquals, in, notIn
includeInCalculation: equals, notEquals
Sort via id, -id, date, -date, designation, -designation, costType and -costType. Default sort is -id
Number of items per page. Default: 15, Max: 5000
Page number. Only used with simple and table pagination.
The cursor to use for the paginated call. Only used with cursor pagination. Not compatible with page parameter
Headers
Controls the pagination format. Available types: simple, table, cursor. Defaults to 'simple' if not specified.
Response
List a product purchase price calculation line items
Example response
{
"data": [
{
"id": "33",
"date": "2026-01-01",
"costType": "purchase",
"includeInCalculation": true,
"totalCost": {
"amount": "100.00",
"currency": "EUR"
},
"forQuantity": 10,
"costPerUnit": {
"amount": "10.00",
"currency": "EUR"
},
"purchaseOrder": {
"id": "1234"
},
"editor": {
"id": "17",
"name": "JohnDoe"
},
"internalComment": "this is an internal comment"
}
],
"meta": {
"currentPage": 1,
"from": 1,
"path": "https://api.example.com/items",
"perPage": 15,
"to": 15
},
"links": {
"first": "https://api.example.com/items?page=1",
"next": "https://api.example.com/items?page=17"
}
}