Create Drop-ship Order


POST http://openapi.ck1info.com/v1/directExpressOrdersHaveBox
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
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

ShipToAddress ShipToAddress

None.

Required

Shipping Address

ShipperInfo ShipperInfo

None.

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
{
  "PackageId": "sample string 1",
  "Location": "sample string 2",
  "ServiceCode": "sample string 3",
  "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"
        }
      ]
    }
  ],
  "ShipToAddress": {
    "TaxId": "sample string 1",
    "HouseNumber": "sample string 2",
    "RecipientBirthday": "sample string 3",
    "IDNumber": "sample string 4",
    "BankCardLast4digits": "sample string 5",
    "PaymentType": "sample string 6",
    "IssuingInstitution": "sample string 7",
    "Taxfree": "sample string 8",
    "DutyParagraph": "sample string 9",
    "Contact": "sample string 10",
    "Phone": "sample string 11",
    "Email": "sample string 12",
    "Country": "sample string 13",
    "Province": "sample string 14",
    "City": "sample string 15",
    "Street1": "sample string 16",
    "Street2": "sample string 17",
    "Postcode": "sample string 18"
  },
  "ShipperInfo": {
    "Contact": "sample string 1",
    "Phone": "sample string 2",
    "Email": "sample string 3",
    "Country": "sample string 4",
    "Province": "sample string 5",
    "City": "sample string 6",
    "Street1": "sample string 7",
    "Street2": "sample string 8",
    "Postcode": "sample string 9"
  },
  "Custom": "sample string 4",
  "VatCode": "sample string 5",
  "Remark": "sample string 6"
}

Response

None.