Create Drop-ship Order


POST http://openapi.ck1info.com/v1/fbaOrder
Description: Create Drop-ship order, and need to get order status for result of success or fail
Http 201 - Ok
Http 200 - Ok, not changed
Http 400 - Invalid data, Please check

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
WarehouseCode string

None.

Required

FBA WarehouseCode

ABE2

ShipmentId string

Max length: 15

Required

Shipment ID

24332

ReferenceId string

Max length: 12

Required

Amazon Reference ID

34

PackageId string

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

String length: between 0 and 50

Required

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

SMT23015236489

Location string

String length: between 0 and 20

Required

Handle Location

GZ

ServiceCode string

String length: between 0 and 30

Required

Shipping Service Code

CUE

ContainerInfos Collection of ContainerInfo

None.

Required

Box Info

Custom string

String length: between 0 and 1000

Custom Text, may print to custom area on label

bag-red

VatCode string

None.

Remark string

String length: between 0 and 1000

Remark

remark

Request in JSON
{
  "WarehouseCode": "sample string 1",
  "ShipmentId": "sample string 2",
  "ReferenceId": "sample string 3",
  "PackageId": "sample string 4",
  "Location": "sample string 5",
  "ServiceCode": "sample string 6",
  "ContainerInfos": [
    {
      "CustomContainerNo": "sample string 1",
      "Weight": 2,
      "Length": 3,
      "Width": 4,
      "Height": 5,
      "SkuInfos": [
        {
          "Sku": "sample string 1",
          "Picture": "sample string 2",
          "Charged": true,
          "ASINCode": "sample string 4",
          "ModelName": "sample string 5",
          "DeclareNameEN": "sample string 6",
          "DeclareNameCN": "sample string 7",
          "Quantity": 8,
          "DeclareValue": 9,
          "MaterialEN": "sample string 10",
          "MaterialCN": "sample string 11",
          "PurposeEN": "sample string 12",
          "PurposeCN": "sample string 13",
          "BrandName": "sample string 14",
          "Weight": 15,
          "Packing": "sample string 16",
          "HsCode": "sample string 17"
        },
        {
          "Sku": "sample string 1",
          "Picture": "sample string 2",
          "Charged": true,
          "ASINCode": "sample string 4",
          "ModelName": "sample string 5",
          "DeclareNameEN": "sample string 6",
          "DeclareNameCN": "sample string 7",
          "Quantity": 8,
          "DeclareValue": 9,
          "MaterialEN": "sample string 10",
          "MaterialCN": "sample string 11",
          "PurposeEN": "sample string 12",
          "PurposeCN": "sample string 13",
          "BrandName": "sample string 14",
          "Weight": 15,
          "Packing": "sample string 16",
          "HsCode": "sample string 17"
        }
      ]
    },
    {
      "CustomContainerNo": "sample string 1",
      "Weight": 2,
      "Length": 3,
      "Width": 4,
      "Height": 5,
      "SkuInfos": [
        {
          "Sku": "sample string 1",
          "Picture": "sample string 2",
          "Charged": true,
          "ASINCode": "sample string 4",
          "ModelName": "sample string 5",
          "DeclareNameEN": "sample string 6",
          "DeclareNameCN": "sample string 7",
          "Quantity": 8,
          "DeclareValue": 9,
          "MaterialEN": "sample string 10",
          "MaterialCN": "sample string 11",
          "PurposeEN": "sample string 12",
          "PurposeCN": "sample string 13",
          "BrandName": "sample string 14",
          "Weight": 15,
          "Packing": "sample string 16",
          "HsCode": "sample string 17"
        },
        {
          "Sku": "sample string 1",
          "Picture": "sample string 2",
          "Charged": true,
          "ASINCode": "sample string 4",
          "ModelName": "sample string 5",
          "DeclareNameEN": "sample string 6",
          "DeclareNameCN": "sample string 7",
          "Quantity": 8,
          "DeclareValue": 9,
          "MaterialEN": "sample string 10",
          "MaterialCN": "sample string 11",
          "PurposeEN": "sample string 12",
          "PurposeCN": "sample string 13",
          "BrandName": "sample string 14",
          "Weight": 15,
          "Packing": "sample string 16",
          "HsCode": "sample string 17"
        }
      ]
    }
  ],
  "Custom": "sample string 7",
  "VatCode": "sample string 8",
  "Remark": "sample string 9"
}

Response

None.