Create Outbound Order


POST http://openapi.ck1info.com/v1/outboundOrders
Description: Create outbound 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
WarehouseId string

String length: between 0 and 30

Required

US

Package Package

None.

Required

Remark string

String length: between 0 and 200

二程下单测试

Channel string

None.

FedEx

SubmitLater boolean

None.

Submit later.The default value is "false"

false

Request in JSON
{
  "WarehouseId": "sample string 1",
  "Package": {
    "PackageId": "sample string 1",
    "PreSale": true,
    "ShipmentId": "sample string 2",
    "ServiceCode": "sample string 3",
    "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"
    },
    "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"
      }
    ],
    "ExportsInfo": {
      "EoriCode": "sample string 1",
      "Country": "sample string 2",
      "Province": "sample string 3",
      "City": "sample string 4",
      "Street1": "sample string 5",
      "Street2": "sample string 6",
      "Postcode": "sample string 7",
      "Contact": "sample string 8",
      "Company": "sample string 9",
      "Phone": "sample string 10",
      "Email": "sample string 11"
    },
    "ImportsInfo": {
      "EoriCode": "sample string 1",
      "Country": "sample string 2",
      "Province": "sample string 3",
      "City": "sample string 4",
      "Street1": "sample string 5",
      "Street2": "sample string 6",
      "Postcode": "sample string 7",
      "Contact": "sample string 8",
      "Company": "sample string 9",
      "Phone": "sample string 10",
      "Email": "sample string 11"
    },
    "SellPrice": 4,
    "SellPriceCurrency": "sample string 5",
    "Remark": "sample string 6",
    "SalesPlatform": "sample string 7",
    "ImportTrackingNumber": "sample string 8",
    "VatCode": "sample string 9",
    "CodAmount": 10,
    "ImportLabel": "sample string 11",
    "IsCreateNewOrder": true,
    "CarrierName": "sample string 12",
    "CarrierService": "sample string 13"
  },
  "Remark": "sample string 2",
  "Channel": "sample string 3",
  "SubmitLater": true
}

Response

None.