> 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/warehouse-export.md).

# Warehouse Export

tạo phiếu xuất 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
{
    "common_info": {
        "note": "This is a note!",
        "warehouse_id": "warehouse_id"
    },
    "products_info": [
        {
            "code": "PRODUCT_CODE",
            "quantity": 1000
        }
    ]
}
```

{% endcode %}

#### Response Body

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

```json
{
    "status": "success",
    "data": {}
}
```

{% endcode %}

#### Parameters

<table><thead><tr><th width="222">Parameter</th><th>Type</th><th>Required</th><th>Note</th></tr></thead><tbody><tr><td>common_info</td><td>object</td><td>yes</td><td></td></tr><tr><td>      note</td><td>string</td><td>no</td><td></td></tr><tr><td>      warehouse_id</td><td>string</td><td>yes</td><td></td></tr><tr><td>products_info</td><td>object[]</td><td>yes</td><td></td></tr><tr><td>      code</td><td>string</td><td>yes</td><td></td></tr><tr><td>      quantity</td><td>number</td><td>yes</td><td></td></tr></tbody></table>
