Create Lading Order


POST http://openapi.ck1info.com/v1/ladingOrders
Description: Create Lading 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
OrderNo string

String length: between 0 and 30

Required

YY20190524U000001US

ShipmentId string

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

String length: between 0 and 50

Required

MN006T0005

ReservationDate string

DateTime: 2015-11-04T15:00:00Z

WarehouseId string

String length: between 0 and 30

Required

US

ServiceCode string

String length: between 0 and 30

Required

USRLE

ShipToAddress ShipToAddress

None.

Required

PackageItems Collection of BatchPackageItem

None.

Required

ImportLabel string

None.

JVBERi0xLjQKJeLjz9MKMSAwIG9i.....

Request in JSON
{
  "OrderNo": "sample string 1",
  "ShipmentId": "sample string 2",
  "ReservationDate": "sample string 3",
  "WarehouseId": "sample string 4",
  "ServiceCode": "sample string 5",
  "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"
  },
  "PackageItems": [
    {
      "Skus": [
        {
          "Sku": "sample string 1",
          "StorageNo": "sample string 2",
          "Quantity": 3,
          "ProductName": "sample string 4",
          "Price": 5,
          "PlatformItemId": "sample string 6",
          "PlatformTransactionId": "sample string 7",
          "HsCode": "sample string 8"
        },
        {
          "Sku": "sample string 1",
          "StorageNo": "sample string 2",
          "Quantity": 3,
          "ProductName": "sample string 4",
          "Price": 5,
          "PlatformItemId": "sample string 6",
          "PlatformTransactionId": "sample string 7",
          "HsCode": "sample string 8"
        }
      ]
    },
    {
      "Skus": [
        {
          "Sku": "sample string 1",
          "StorageNo": "sample string 2",
          "Quantity": 3,
          "ProductName": "sample string 4",
          "Price": 5,
          "PlatformItemId": "sample string 6",
          "PlatformTransactionId": "sample string 7",
          "HsCode": "sample string 8"
        },
        {
          "Sku": "sample string 1",
          "StorageNo": "sample string 2",
          "Quantity": 3,
          "ProductName": "sample string 4",
          "Price": 5,
          "PlatformItemId": "sample string 6",
          "PlatformTransactionId": "sample string 7",
          "HsCode": "sample string 8"
        }
      ]
    }
  ],
  "ImportLabel": "sample string 6"
}

Response

None.