Create BatchOutbound Order


POST http://openapi.ck1info.com/v1/batchOutboundOrder
Description: Create BatchOutbound Order
Http 201 - Ok
Http 200 - Ok, not changed
Http 400 - Invalid data, Please check
If it is necessary to hit the tray, please fill in the mark of whether to hit the tray as true(IsPallet), if the pallet details of the tray are not filled, it means that the warehouse is free to hit the tray;
If packing is required, set the packing mark to true(IsBoxed). If the box details are not filled, the warehouse is free to pack.
If it is one piece per box, please fill in the packing mark false(IsBoxed). box details are not required, but SKU details are required.

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

String length: between 0 and 50

Required

WareHouseCode string

None.

Required

CarrierName string

None.

CarrierService string

None.

Priority integer

None.

ServiceCode string

String length: between 0 and 30

Required

IsPallet boolean

None.

IsBoxed boolean

None.

ShipToAddress ShipToAddress

None.

Required

ShipmentId string

String length: between 0 and 15

ReferenceId string

String length: between 0 and 12

ScheduledTime date

None.

Required

Remark string

String length: between 0 and 200

SkuDetails Collection of SkuDetail

None.

SkuRelabelDetails Collection of SkuRelabelDetail

None.

BoxDetails Collection of BoxDetail

None.

PalletDetails Collection of PalletDetail

None.

Request in JSON
{
  "CustomerOrderNo": "sample string 1",
  "WareHouseCode": "sample string 2",
  "CarrierName": "sample string 3",
  "CarrierService": "sample string 4",
  "Priority": 5,
  "ServiceCode": "sample string 6",
  "IsPallet": true,
  "IsBoxed": true,
  "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"
  },
  "ShipmentId": "sample string 9",
  "ReferenceId": "sample string 10",
  "ScheduledTime": "2025-04-04T05:14:07.504+08:00",
  "Remark": "sample string 12",
  "SkuDetails": [
    {
      "StorageNo": "sample string 1",
      "Quantity": 2
    },
    {
      "StorageNo": "sample string 1",
      "Quantity": 2
    }
  ],
  "SkuRelabelDetails": [
    {
      "OriginalStorageNo": "sample string 1",
      "NewStorageNo": "sample string 2",
      "Quantity": 3
    },
    {
      "OriginalStorageNo": "sample string 1",
      "NewStorageNo": "sample string 2",
      "Quantity": 3
    }
  ],
  "BoxDetails": [
    {
      "BoxNo": "sample string 1",
      "BoxType": "sample string 2",
      "SkuDetails": [
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        },
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        }
      ]
    },
    {
      "BoxNo": "sample string 1",
      "BoxType": "sample string 2",
      "SkuDetails": [
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        },
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        }
      ]
    }
  ],
  "PalletDetails": [
    {
      "PalletNo": "sample string 1",
      "PalletizingDetails": [
        {
          "Code": "sample string 1",
          "Quantity": 2
        },
        {
          "Code": "sample string 1",
          "Quantity": 2
        }
      ]
    },
    {
      "PalletNo": "sample string 1",
      "PalletizingDetails": [
        {
          "Code": "sample string 1",
          "Quantity": 2
        },
        {
          "Code": "sample string 1",
          "Quantity": 2
        }
      ]
    }
  ]
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

None.

Ck1OrderId string

None.

Success boolean

None.

Message string

None.

Response in JSON
{
  "CustomerOrderNo": "sample string 1",
  "Ck1OrderId": "sample string 2",
  "Success": true,
  "Message": "sample string 4"
}