POST api/spi/sync-sku-config

Request Information

URI Parameters

None.

Body Parameters

SyncSkuConfigRequest
NameDescriptionTypeAdditional information
sku_name

string

None.

sku_id

string

None.

safety_stock_num

integer

None.

stock_up_num

integer

None.

produce_type

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "sku_name": "sample string 1",
  "sku_id": "sample string 2",
  "safety_stock_num": 3,
  "stock_up_num": 4,
  "produce_type": 5
}

application/xml, text/xml

Sample:
<SyncSkuConfigRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJDY.Data.Models.Bus">
  <ProduceType>5</ProduceType>
  <SafetyStockNum>3</SafetyStockNum>
  <SkuId>sample string 2</SkuId>
  <SkuName>sample string 1</SkuName>
  <StockUpNum>4</StockUpNum>
</SyncSkuConfigRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.