1. Alibaba
Xportcn KA client
  • English version
    • API Reference
      • Basics
        • Get user address information
        • Address added and updated
      • Warehouse logistics
        • Please refer to the estimated overseas freight
        • Order overseas freight preview
        • Create international logistics orders
        • Update domestic logistics information
      • KA
        • Interface description flowchart
        • The acquisition logic of 1688 commodity prices
        • Alibaba
          • OrderStatusMaunal.md
          • Help Manual
          • AlibabaProduct
            • AlibabaProductKeywordsQuery
            • AlibabaProductImageQuery
            • AlibabaProductCategory
            • AlibabaProductDetail
            • AlibabaProductFreightEstimateGet
            • AlibabaProductDetailMulti
          • AlibabaOrderController
            • order pay
            • Order list
            • Order Preview (The preview interface needs to be called before creating an order)
            • Create an order
            • Get order details
            • Order Logistics
            • OrderClose
          • IM
            • IM
        • Taobao
          • TaoProduct
            • TaoBaoProductDetail
            • TaoBaoProductKeywordsQuery
            • TaoBaoProductImageQuery
        • Balance
          • BalanceDetailGet
    • Product Documentation
      • Announcement
      • Summarize
      • Beginner's guide
        • Become a developer
        • Obtain the Access Key and Access key
        • Start development
      • API tutorial
        • Development manual
        • Error code
      • Message service access
        • Message access manual
      • Account test
        • 1688 Test account
      • Q&A
        • Merchandise store search screening
      • OrderStatusFlow
        • README.md
        • Taobao-Order-CN.md
        • Taobao-Order-EN.md
  1. Alibaba

OrderStatusMaunal.md

1688 KA Order Fulfillment Flow: From Creation to After-Sales#

API Endpoint: /alibaba/ka/order/page
Status Enum: PoolOrderStatusEnum
Last Updated: May 28, 2026

📋 Order Status Overview#

Status CodeEnum NameChineseDescription
1WAITING_FOR_PAYMENT待付款Awaiting buyer payment
2PAYMENT_IN_PROGRESS支付中Payment being processed
4WAITING_FOR_SENT待发货Awaiting shipment
5SENT已发货Shipped by seller
10FINISHED已完成Order completed
-1CANCEL已取消Order cancelled

📋 refund Status Overview#

Status CodeEnum NameChineseDescription
18REFUNDING退款/售后中REFUNDING
20REFUND_FINISHED售后完成REFUND FINISHED

英文版
order_flow_en_white.png
中文版
order_flow_white.png
The solid line indicates the interface call【实线】表示的接口调用
-->The dotted line indicates message push【虚线】表示的是消息推送

🔄 Main Business Flows#

Flow 1: Normal Fulfillment (Success)#

WAITING_FOR_PAYMENT(1) ← Order placed
  ↓
WAITING_FOR_SENT(4) ← Procurement completed
  ↓
SENT(5) ← Seller shipped
  ↓
FINISHED(10) ← Order completed
Time Requirements: Each phase typically takes 1-7 days depending on supplier

Flow 2: Payment Exception Flow#

WAITING_FOR_PAYMENT
  ↓
PAYMENT_IN_PROGRESS ← Start payment
  ↓ (Payment successful)
WAITING_FOR_SENT

OR

PAYMENT_IN_PROGRESS
  ↓ (Payment failed)
CANCEL

Allowed initial statuses for refund:
WAITING_FOR_SENT(4) - Awaiting shipment
SENT(5) - Shipped
FINISHED(10) - Completed

📝 API Response Example#

{
  "code": "200",
  "message": "success",
  "data": {
    "total": 1,
    "data": [
      {
        "tradeNo": "PT20250528001",
        "deliveryAddress": {
          "name": "John Doe",
          "phone": "13800138000",
          "province": "Guangdong",
          "city": "Shenzhen",
          "district": "Nanshan",
          "detailAddress": "Tech Park Road XX"
        },
        "orderVOList": [
          {
            "orderId": "1688-12345678",
            "orderStatus": 4,
            "orderStatusDesc": "WAITING_FOR_SENT",
            "orderTotalAmount": 15800,
            "orderHandlingPrice": 50,
            "subOrderList": [
              {
                "id": "1001",
                "subOrderId": "sub-001",
                "subOrderStatus": 4,
                "subOrderStatusDesc": "WAITING_FOR_SENT",
                "productName": "Product A",
                "quantity": 2,
                "subTotalPrice": 15800,
                "refundId": null
              },
              {
                "id": "1002",
                "subOrderId": "sub-002",
                "subOrderStatus": 5,
                "subOrderStatusDesc": "SENT",
                "productName": "Product B",
                "quantity": 1,
                "refundId": null
              }
            ]
          }
        ]
      }
    ]
  }
}
Modified at 2026-07-07 02:00:05
Previous
The acquisition logic of 1688 commodity prices
Next
Help Manual
Built with