Create Inventory Putaway Order


POST http://openapi.ck1info.com/v1/InventoryPutawayOrder/Create
Description: Create Inventory Putaway Order
Http 201 - Ok
Http 200 - Ok, not changed
Http 400 - Invalid data, Please check

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

regular expression: ^[a-zA-Z0-9\-_]*$

String length: between 0 and 50

Required

OrderId, The third party system defined, CustomerId+PackageId is unique

SMT23015236489

Carrier string

String length: between 0 and 30

Required

DHL

GoodsIncomingCode Collection of string

None.

Required

STOL201603300001

GoodsHandleWay GoodsHandleWay

None.

Required

HandleWarehouseCode string

String length: between 0 and 30

Required

US

CustomerManifestItems Collection of CustomerReturnOrderManifestItemRequest

None.

Required

SaleVAT string

String length: between 0 and 100

Remark string

String length: between 0 and 200

测试来货订单

Request in JSON
{
  "CustomerOrderNo": "sample string 1",
  "Carrier": "sample string 2",
  "GoodsIncomingCode": [
    "sample string 1",
    "sample string 2"
  ],
  "GoodsHandleWay": "CountingAndPutaway",
  "HandleWarehouseCode": "sample string 3",
  "CustomerManifestItems": [
    {
      "No": "sample string 1",
      "StorageNo": "sample string 2",
      "CustomerQuantity": 3,
      "GoodsDescription": "sample string 4",
      "DeclareName": "sample string 5"
    },
    {
      "No": "sample string 1",
      "StorageNo": "sample string 2",
      "CustomerQuantity": 3,
      "GoodsDescription": "sample string 4",
      "DeclareName": "sample string 5"
    }
  ],
  "SaleVAT": "sample string 4",
  "Remark": "sample string 5"
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
OrderNo string

None.

Response in JSON
{
  "OrderNo": "sample string 1"
}