Automatic Split Logistics Channel

Automatic Split Logistics Channel API provides information like logistics timeliness(channelType),delivery time, or freight.

Products Properties

Parameter name
Type
Remark

sku

string[64]

sku

quantity

int[16]

quantity must be greater than 0

shipToCountry

string[12]

ship to country,shortcode required.Examples: FR,US

Request Properties

{
    "products": [
      {
       "sku": "FSZW06578_P_L_NUB",
       "quantity": 1
      }
    ],
    "shipToCountry": "US"
}

POST /openapi/v2/order/orders/channel/automationSplit

Request Body

Name
Type
Description

shipToCountry*

String

shipping country shortcode required FR,US

products*

Array

Product information

Response Properties

Parameter name
Type
Remark

estimatedFreight

Number

Shipping amount

estimatedFreightCurrency

String

USD

deliveryTime

String

For example: 6~10 Business Days

channelType

String

Channel type, 'Standard' is the standard logistics timeliness, 'Express' is the faster logistics timeliness, and 'Expedited' is the fastest logistics timeliness.

Response Examples

circle-info

"estimatedFreight" is the shipping cost, mainly determined by weight (unit g) and "shipToCountry".The higher the weight, the higher the "estimatedFreight". "weight" is calculated by sku's packageWeight * "quantity"

Last updated