KASAmax API
  1. Movements
  • Shoptet
    • feed
      GET
  • Stockholding
    • Stocks
      • export (all)
      • export (unit)
    • Movements
      • list
        POST
  • AddressBook
    • Client
      • get
      • import
  • Assortment
    • PriceList
    • Coupon
    • import
      POST
  • Webhooks
    • CashFlow
    • Sale
    • ClientPoints
  • Schemas
    • Common
      • Address
      • Discount
      • Company
      • Amount
      • DiscountType
      • Result
      • PriceInput
      • MeasureUnit
      • ExportType
    • Assortment
      • CouponUsage
      • CouponActivation
      • CouponValidity
      • CouponType
      • CouponOperation
    • AddressBook
      • Benefits
      • ArticleGroupDiscount
    • Accounting
      • ReceiptState
      • PaymentType
  1. Movements

list

POST
/stockholding/movement/list
Get list of stock movements.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/stockholding/movement/list' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "filter": {
        "dateFrom": "string",
        "dateTo": "string",
        "unit": "string",
        "article": "string"
    },
    "limit": 0,
    "skip": 0
}'
Response Response Example
{
    "data": {
        "total": 0,
        "items": {
            "_id": "string",
            "count": 0,
            "unit": {
                "_id": "string",
                "code": "string",
                "name": "string"
            },
            "article": {
                "_id": "string",
                "name": "string",
                "plu": 0,
                "ean": "string",
                "internalIdentifier": "string"
            },
            "warehouseOperation": {
                "_id": "string",
                "number": "string",
                "currency": "string",
                "price": {
                    "amount": 0,
                    "VAT": 0,
                    "amountVAT": 0
                },
                "createdAt": "string",
                "type": 0
            }
        }
    },
    "isValid": true,
    "errors": [
        "string"
    ],
    "warnings": [
        "string"
    ],
    "messages": [
        "string"
    ]
}
Modified at 2026-03-19 19:11:10
Previous
export (unit)
Next
get
Built with