1. 运单模块
HGE OPEN API
  • 运单模块
    • 查询轨迹-平台-批量
      POST
  • 其他资料
    • 节点规则与状态说明
  • Schemas
    • response
    • number_type
    • track_info_response
    • parcel_list
    • address_type
    • flight_info
    • bag_tpye
    • address_info
    • item_info
    • tax_info
    • number_type
    • handover_info
    • handover_type
    • flight_type
  1. 运单模块

查询轨迹-平台-批量

POST
https://oms.gkelog.com/openapi/customer/open/query/track/batch/
此接口只可调用一个运单的轨迹清单

Request

Header Params

Body Params application/jsonRequired

Example
{
    "num": [
        "90",
        "40"
    ]
}

Request Code Samples

Shell
HTTP
Python
Java
PHP
Go
C
C#
JavaScript
Swift
Request Request Example
Shell
HTTP
Python
Java
curl --location 'https://oms.gkelog.com/openapi/customer/open/query/track/batch/' \
--header 'Accept-Language: zh' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "num": [
        "90",
        "40"
    ]
}'

Responses

🟢200成功
application/json
Bodyapplication/json

Example
{
    "success": true,
    "code": 0,
    "detail": "string",
    "data": [
        {
            "item_success": true,
            "item_detail": "string",
            "items": [
                {
                    "customer_order_num": "string",
                    "order_num": "string",
                    "tracking_num": "string",
                    "track_status": "WAI",
                    "track_code": "string",
                    "order_node": "string",
                    "node_status": "000",
                    "node_event": "string",
                    "receive_country": "string",
                    "delivery_carrier": "string",
                    "third_party_tracking_number": "string",
                    "third_party_carrier": "string",
                    "track_name": "string",
                    "track_name_en": "string",
                    "actual_time": "string",
                    "timezone": "string",
                    "location": "string",
                    "lm_track_code": "string",
                    "lm_track_sub_code": "string",
                    "lm_track_description": "string",
                    "lm_track_endescription": "string",
                    "lm_track_sub_description": "string",
                    "lm_track_sub_endescription": "string"
                }
            ]
        }
    ]
}
🔴500Internal Server Error
🟠401Unauthorized
🟠400Bad Request
🟠404Not Found
Next
节点规则与状态说明