文档中心 > Miravia Open Platform

Update Stock

更新时间:2023/06/06 访问次数:234

Stock Management in Miravia

In order to update the stock of the items listed in Miravia we have an specific endpoint in order to manage the changes. There is a minor to update the stock between using only one warehouse or multi warehouses. In this guide, we are going to explain how to update the stock with only one warehouse.

To update the stock, you need to indicate the Seller SKU that you used to list the product in Miravia.

curl --location --request POST 'https://api.miravia.com/rest/product/stock/sellable/update' \
--form 'app_key="{{app_key}}"' \
--form 'access_token="{{access_token}}"' \
--form 'timestamp="1686064514378"' \
--form 'sign="{{sign}}"' \
--form 'sign_method="sha256"' \
--form 'payload="{
    \"Request\": {
        \"Product\": {
            \"Skus\": {
                \"Sku\": [
                    {
                        \"SellerSku\": \"1356310145091188-1685447068028-0\",
                        \"SellableQuantity\": \"60\"
                    }
                ]
            }
        }
    }
}"'

FAQ

关于此文档暂时还没有FAQ
返回
顶部