Get

[POST] .../v1/pos/chequeitemoperation/get

Returns positions cash register cheque. Use this method to retrieve item positions of a POS cheque for cashier review, receipt rendering and support diagnostics. The request requires document_uuid and supports filters for position-level lookup, then returns result with a ChequePosition array including item details. The method checks the current request user and accepted cashier context before reading data; missing body, missing document_uuid, missing accepted cash register, lookup failures and storage errors are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
filters Array of Filter Optional Optional filters by fields available for this API method.

Filterable Fields

Field Type Description
document_uuid string Cash register cheque UUID.
exclude_storno bool Exclude reversed and reversing line items.
item_ids int Item IDs.
uuids string Cash receipt line item UUIDs.

Request Example

{
  "filters": [
    {
      "Field": "document_uuid",
      "Operator": "Equal",
      "Value": "string"
    }
  ]
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.
result Array of ChequePosition Result object.

Response Example

{
  "ok": true,
  "result": [
    {
      "barcode": "string",
      "document_uuid": "00000000-0000-0000-0000-000000000000",
      "group_id": 1,
      "has_storno": true,
      "item": {
        "articul": "string",
        "assemblable": true,
        "barcode_list": "string",
        "base_barcode": "string",
        "brand": {
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "code": 1,
        "color": {
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "comission_tin": "string",
        "compound": true,
        "country": {
          "alfa2": "string",
          "alfa3": "string",
          "code": "string",
          "fullname": "string",
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "deleted_mark": true,
        "department": {
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "description": "string",
        "disassemblable": true,
        "fields": [
          {
            "data_type": "string",
            "is_custom": true,
            "key": "string",
            "metadata": "string",
            "name": "string",
            "required": true,
            "value": "string"
          }
        ],
        "fullname": "string",
        "group": {
          "child_count": 1,
          "id": 1,
          "last_update": 1,
          "name": "string",
          "parent_id": 1,
          "path": "string"
        },
        "has_child": true,
        "icps": "string",
        "id": 1,
        "image_url": "string",
        "is_labeled": true,
        "last_update": 1,
        "min_quantity": 1,
        "name": "string",
        "origin": "BuyingAndSelling",
        "package_code": "string",
        "parent_id": 1,
        "partner_id": 1,
        "producer": {
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "size": {
          "id": 1,
          "last_update": 1,
          "name": "string"
        },
        "type": "Item",
        "unit": {
          "description": "string",
          "id": 1,
          "last_update": 1,
          "name": "string",
          "type": "non_pcs"
        },
        "vat": {
          "enabled": true,
          "id": 1,
          "last_update": 1,
          "name": "string",
          "value": 1.0
        }
      },
      "item_id": 1,
      "label": "string",
      "order": 1,
      "order_opr_id": 1,
      "order_opr_quantity": 1.0,
      "price": 1.0,
      "price2": 1.0,
      "promo_id": 1,
      "quantity": 1.0,
      "sort_order": 1,
      "stock_id": 1,
      "storno_uuid": "00000000-0000-0000-0000-000000000000",
      "uuid": "00000000-0000-0000-0000-000000000000",
      "vat_value": 1.0
    }
  ]
}