> For the complete documentation index, see [llms.txt](https://docs.salework.net/salework-tai-lieu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.salework.net/salework-tai-lieu/he-thong-ho-tro/salework-open-api/inventory-transaction-get-list.md).

# Inventory Transaction Get List

Tạo phiếu nhập kho cho sản phẩm

#### Request Headers

{% code overflow="wrap" lineNumbers="true" %}

```
client-id: 123456
token: 50000601c30atpedfgu3LVvik87Ixlsvle3mSoB7701ceb156fPunYZ43GBg
```

{% endcode %}

#### Request Body

{% code overflow="wrap" lineNumbers="true" %}

```json
{    
    "method": "getInventoryTransaction",
    "params": {
        "time_start": 1772323200000,
        "time_end": 1773532800000,
        "warehouse_id": "warehouse_id",
        "type_transaction": "type_transaction",
        "next_cursor": 0
    }
}
```

{% endcode %}

#### Response Body

{% code lineNumbers="true" %}

```json
{
    "success": true,
    "data": {
        "transaction": [],
        "next_cursor": 30,
    }
}
```

{% endcode %}

#### Parameters

<table><thead><tr><th width="222">Parameter</th><th width="120">Type</th><th width="98">Required</th><th>Note</th></tr></thead><tbody><tr><td> warehouse_id</td><td>string</td><td>no</td><td></td></tr><tr><td>time_start</td><td>number</td><td>yes</td><td>Thời gian bắt đầu truy vấn, định dạng Unix Timestamp (milliseconds).</td></tr><tr><td>time_end</td><td>number</td><td>yes</td><td>Thời gian kết thúc truy vấn, định dạng Unix Timestamp (milliseconds).</td></tr><tr><td>type_transaction</td><td>string</td><td>no</td><td><p>Loại phiếu cần lọc. Nếu bỏ trống sẽ lấy tất cả loại giao dịch.<br></p><pre><code><strong>allImport: 'Phiếu nhập',
</strong>allExport: 'Phiếu xuất',
newImport: 'Nhập mới',
returnImport: 'Nhập hàng hoàn',
freeImport: 'Nhập tự do',
freeExport: 'Xuất tự do',
saleExport: 'Xuất bán hàng',
returnOrder: 'Trả hàng'
</code></pre></td></tr><tr><td>next_cursor</td><td>number</td><td>yes</td><td></td></tr></tbody></table>
