POST v1/marketplace/stock/update
Atualiza saldo de estoque de um SKU MarketPlace
Request Information
URI Parameters
None.
Body Parameters
Parâmetros de atualização de saldo
Collection of StockUpdateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SellerKey | string |
None. |
|
| SKUCode | string |
None. |
|
| Stock | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"SellerKey": "sample string 1",
"SKUCode": "sample string 2",
"Stock": 3.1
},
{
"SellerKey": "sample string 1",
"SKUCode": "sample string 2",
"Stock": 3.1
}
]
application/xml, text/xml
Sample:
<ArrayOfStockUpdateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eXpert.Domain.DTO">
<StockUpdateDTO>
<SKUCode>sample string 2</SKUCode>
<SellerKey>sample string 1</SellerKey>
<Stock>3.1</Stock>
</StockUpdateDTO>
<StockUpdateDTO>
<SKUCode>sample string 2</SKUCode>
<SellerKey>sample string 1</SellerKey>
<Stock>3.1</Stock>
</StockUpdateDTO>
</ArrayOfStockUpdateDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.