Kakaclo Api Docs
  • Welcome!
  • Quick Start
  • Release Notes
    • 2023-08 Add API token refresh function, logistics channel to add Express
    • 2023-07 product api increase supplierLevel info
    • 2023-06 Order Automatic Split interface changes
    • 2023-04 Product CountryAndWarehouse interface changes
    • 2023-04 Order V1 Version And Order V2 Version
    • 2022-12 Order V2 Version
  • API Usage
    • API Endpoint
    • Rate Limits
  • Admin API
    • Product
      • Category
      • Products
      • CountryAndWarehouse
      • Stock
      • Product API pull suggestion
    • Order V1(Outdated)
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
    • Order V2
      • Logistics Channel
      • Order
      • Query Order
        • Orders Status Json Response
      • Refund Order
      • Query ReFund
      • Automatic Split Logistics Channel
    • Custom Product
      • Get Design Category Name List
      • Get Design Model List
      • Get Design Model Detail
      • Get Custom Designed List
      • Get Custom Designed Detail
      • Create designed product orders and get order list
      • Get KakaClo pod-designer address
      • Save POD Designed Product
    • Payment
      • Query Balance
Powered by GitBook
On this page
  • Products Properties
  • Request Properties
  • Response Properties
  • Response Examples
  1. Admin API
  2. Order V2

Logistics Channel

Logistics Channel API provides information like shipping method (channelNameEn), channel code, 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

warehouseCode

string[32]

Warehouse code,This value is obtained by calling the CountryAndWarehouse api, and it is not required. If no value is passed or the warehouse is not matched, the G007 warehouse will be used automatically.

Request Properties

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

POST /openapi/v2/order/orders/channel

Request Body

Name
Type
Description

shipToCountry*

String

shipping country shortcode required FR,US

products*

Array

Product information

{
    "code": 10000,
    "message": "success",
    "data": [
        {
            "channelCode": "WB004",
            "channelNameEn": "PP",
            "estimatedFreight": 4.83,
            "estimatedFreightCurrency": "USD",
            "deliveryTime": "3~5 Business Days"
        },
        {
            "channelCode": "WB001",
            "channelNameEn": "Wb clothing line (general goods )",
            "estimatedFreight": 3.61,
            "estimatedFreightCurrency": "USD",
            "deliveryTime": "6~10 Business Days"
        }
    ]
}
{
    // Response
}

Response Properties

Parameter name
Type
Remark

channelCode

String

channelNameEn

String

channel name(shipping method)

estimatedFreight

String

Shipping amount

estimatedFreightCurrency

String

USD

deliveryTime

String

For example: 6~10 Business Days

channelType

String

channelType

Response Examples

{
    "code": 10000,
    "message": "success",
    "data": [
        {
            "channelCode": "WB004",
            "channelNameEn": "PP",
            "estimatedFreight": 6.45,
            "estimatedFreightCurrency": "USD",
            "deliveryTime": "3~5 Business Days",
            "channelType": "Standard"
        },
        {
            "channelCode": "WB001",
            "channelNameEn": "Wb clothing line (general goods )",
            "estimatedFreight": 4.77,
            "estimatedFreightCurrency": "USD",
            "deliveryTime": "6~10 Business Days",
            "channelType": "Expedited"
        }
    ]
}

data is sorted according to "deliveryTime " from small to large, deliveryTime the largest is "Standard Shipping".

PreviousOrder V2NextOrder

Last updated 1 year ago

Logistics channel code,This value is used on the parameter in the

"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 * "quantity"

Order API
sku's packageWeight
channelCode