Platform Order Callback


POST https://openapi.chukou1.cn/v1/outboundOrders/PlatformOrder/Callback
Description: Platform order callback interface for receiving WMS outbound info and pushing to platform
Http 200 - Ok
Http 400 - Invalid data

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
ClientCode string

String length: between 0 and 50

WarehouseCode string

String length: between 0 and 50

Required

US

PlatformCode string

String length: between 0 and 50

Required

TikTok

ShippingMode integer

None.

Required

0

ParcelId string

String length: between 0 and 100

Required

PO123456789

PackagId string

String length: between 0 and 100

OrderId string

String length: between 0 and 100

CreateTime string

None.

Required

2024-01-01 12:00:00

PickupTime string

None.

Required

2024-01-01 12:30:00

Country string

String length: between 0 and 10

Required

US

City string

String length: between 0 and 100

TimeZone integer

None.

Required

8

ShippedTime string

None.

Required

2024-01-01 13:00:00

HandOverTime string

None.

Required

2024-01-01 14:00:00

ShippingProviderId string

String length: between 0 and 100

Required

ShippingProviderName string

String length: between 0 and 200

ShippingProviderProduct string

String length: between 0 and 200

TrackingNumber string

String length: between 0 and 100

Required

YT4567890123CN

ShippingFee string

String length: between 0 and 50

Currency string

String length: between 0 and 10

Length integer

None.

Width integer

None.

Height integer

None.

Weight integer

None.

SkuList Collection of PlatformOrderCallbackSku

None.

Request in JSON
{
  "ClientCode": "sample string 1",
  "WarehouseCode": "sample string 2",
  "PlatformCode": "sample string 3",
  "ShippingMode": 4,
  "ParcelId": "sample string 5",
  "PackagId": "sample string 6",
  "OrderId": "sample string 7",
  "CreateTime": "sample string 8",
  "PickupTime": "sample string 9",
  "Country": "sample string 10",
  "City": "sample string 11",
  "TimeZone": 12,
  "ShippedTime": "sample string 13",
  "HandOverTime": "sample string 14",
  "ShippingProviderId": "sample string 15",
  "ShippingProviderName": "sample string 16",
  "ShippingProviderProduct": "sample string 17",
  "TrackingNumber": "sample string 18",
  "ShippingFee": "sample string 19",
  "Currency": "sample string 20",
  "Length": 1,
  "Width": 1,
  "Height": 1,
  "Weight": 1,
  "SkuList": [
    {
      "SkuId": "sample string 1",
      "PlatformTransactionId": "sample string 2",
      "SkuCode": "sample string 3",
      "SkuProdName": "sample string 4",
      "Quantity": 5,
      "SkuInvQty": 1,
      "Length": 1,
      "Width": 1,
      "Height": 1,
      "Weight": 1
    },
    {
      "SkuId": "sample string 1",
      "PlatformTransactionId": "sample string 2",
      "SkuCode": "sample string 3",
      "SkuProdName": "sample string 4",
      "Quantity": 5,
      "SkuInvQty": 1,
      "Length": 1,
      "Width": 1,
      "Height": 1,
      "Weight": 1
    }
  ]
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
Success boolean

None.

Message string

None.

RawResponse string

None.

Response in JSON
{
  "Success": true,
  "Message": "sample string 2",
  "RawResponse": "sample string 3"
}