1. Poizon V2 Logistics
Daji Open Platform API
  • Introduction
    • Integration Guide
      • Platform Overview
      • Become a developer
      • Access Key and Access Secret
      • API Signature Rules (Sign)
      • 1688 API Description
      • Taobao API Description
      • Poizon API Description
      • Frequently Asked Question
  • API Specification
    • 1688 API
      • 1688 Signature & Enumeration
      • 1688-API
        • 1688 Signature & Enum
        • Upload image to get imageId
        • Image Search
        • Keyword Search
        • Product Detail Search
        • Shop Search
        • Product Shipping Query
        • Category Query
        • Product Detail Search - supports short links
        • Query Ranking List
        • Query Daily Product Sales Trend
        • Preview Order
        • Create Order
        • Cancel Order
        • Confirm Receipt
        • Query Order Detail
        • Query Order List
        • Batch Get Order Payment Links
        • Initiate Password-free Payment
        • Multilingual Search Navigation
        • 1688 Trade Message
        • 1688 Message - Signature Verification
      • 1688 API Debugging
        • 1688 Business Opportunity
          • Query Ranking List
          • Query Daily Product Sales Trend
        • 1688 Product Search
          • Upload image to get imageId
          • Image Search
          • Keyword Search
          • Shop Search
          • Product Shipping Query
          • Category Query
          • Product Detail Search - supports short links
          • Product Detail Search
        • 1688 Order Manage
          • Create Order
          • Preview Order
          • Cancel Order
          • Confirm Receipt
          • Query Order List
          • Query Order Detail
        • 1688 Order Pay
          • Initiate Password-free Payment
          • Get payment links for orders in batches
        • Other API
          • Multilingual Search Navigation
      • 1688 Message Service
        • 1688 Message Service
        • 1688 Messages – Signature Verification
      • 1688 API Debug
        • 1688 Signature & Enum
        • Upload image to get imageId
        • Image Search
        • Keyword Search
        • Product Detail Search
        • Shop Search
        • Product Shipping Query
        • Category Query
        • Product Detail Search - supports short links
        • Query Ranking List
        • Query Daily Product Sales Trend
        • Preview Order
        • Create Order
        • Cancel Order
        • Confirm Receipt
        • Query Order Detail
        • Query Order List
        • Batch Get Order Payment Links
        • Initiate Password-free Payment
        • Multilingual Search Navigation
        • 1688 Trade Message
        • 1688 Message - Signature Verification
        • 1688 API
    • Taobao / Tmall API
      • Taobao-Tmall-API
        • Taobao/Tmall Signature & Enum
        • Upload Image
        • Image Search V1.0
        • Image Search V2.0
        • Keyword Search
        • Shop Search
        • Product Detail Search
        • Ranking Type Search
        • Ranking Product Search
        • Product Shipping Query
        • Product Detail Search - supports short links
        • Batch Product Shipping Query
        • Product Detail Search V2
        • Product Shipping Query V2
        • Batch Product Shipping Query V2
        • Matching API
        • Preview Product
        • Create Order
        • Cancel Order
        • Query Order
        • Pay Order
        • Order Message
        • Order Message - Signature Verification
      • Taobao/Tmall API Debugging
        • Taobao / Tmall Order Manage
          • Product ID Mapping
          • Product Preview
          • Create Order
          • Cancel Order
          • Query Order
        • Taobao / Tmall Order Pay
          • Batch Order Pay
        • Taobao / Tmall Product Search
          • Image upload By Get
          • Image Search V1.0
          • Image Search V2.0
          • Keyword Product Search
          • Shop Search
          • Product Detail Search V2
          • Ranking Type Search
          • Ranking Product Search
          • Product Shipping Query V2
          • Product Detail Search - supports short links
          • Batch Product Shipping Query V2
    • Poizon V2 API
      • Poizon V2 Product Search
        • Keyword Search
        • Product Detail
      • Poizon V2 Order Manage
        • Create Order & Payment
        • Query Order Info
        • Cancel Order
      • Poizon V2 Logistics
        • Query Logistics Trace
          POST
      • Poizon V2 Balance Query
        • Balance Query
    • Poizon API
      • Poizon Product Search
        • Keyword Search
        • Product Detail
      • Poizon Order Manage
        • Create order & Payment API
        • Query Order Info
      • Poizon Balance Query API
        • Balance Query API
中文
Login In/Register
  1. Poizon V2 Logistics

Query Logistics Trace

POST
/poizonV2/order/queryLogisticsTrace
Query logistics trace per sub-order. Each sub-order may return two legs: first leg (seller -> Poizon warehouse) and last leg (Poizon -> buyer). Note: the first-leg field is named "heardLogisticTraceInfo" by the source system - parse it as-is. production environment request address: https://openapi.dajisaas.com/poizonV2/order/queryLogisticsTrace

请求参数

Body 参数application/json必填

示例
{
    "appKey": "string",
    "appSecret": "string",
    "sign": "string",
    "customerOrderNo": "string"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'https://openapi.dajisaas.com/poizonV2/order/queryLogisticsTrace' \
--header 'Content-Type: application/json' \
--data '{
    "appKey": "string",
    "appSecret": "string",
    "sign": "string",
    "customerOrderNo": "string"
}'

返回响应

🟢200Success
application/json
Bodyapplication/json

示例
{
  "code": 200,
  "message": "success",
  "data": {
    "customerOrderNo": "OA00835379",
    "distOrderNo": "913033-OA00835379",
    "userName": "张三",
    "userId": "U1",
    "subOrderTraceInfo": [
      {
        "distSubOrderNo": "913033-OA00835379_1",
        "dwSkuId": "67890",
        "distSkuId": "D67890",
        "heardLogisticTraceInfo": {
          "waybillNo": "WB1",
          "courierName": "",
          "courierPhone": "",
          "arrivalTime": "",
          "trackNodeInfos": [
            {
              "node": "N1",
              "opeTitle": "已揽收",
              "desc": "",
              "time": "",
              "deliveryDate": "",
              "location": {}
            }
          ]
        },
        "tailLogisticTraceInfo": {
          "waybillNo": "WB2",
          "courierName": "SF",
          "courierPhone": "95338",
          "arrivalTime": "",
          "trackNodeInfos": [
            {
              "node": "N2",
              "opeTitle": "派送中",
              "desc": "",
              "time": "",
              "deliveryDate": "",
              "location": {}
            }
          ]
        }
      }
    ]
  },
  "timestamp": 1767000000123,
  "traceId": "abc123",
  "cost": 90
}
修改于 2026-08-24 08:33:43
上一页
Cancel Order
下一页
Balance Query
Built with