1. 消息回调
元狐通
  • 授权管理
    • 授权
      POST
  • 转运订单
    • 国内包裹预报
      POST
    • 国内包裹退货
      POST
    • 创建国际包裹单
      POST
    • 取消国际包裹单
      POST
    • 创建用户地址
      POST
  • 物流干线
    • 查询物流干线列表
      POST
    • 查询物流干线运费
      GET
  • 消息回调
    • 国内包裹入库回调
      POST
    • 国际包裹单发货回调
      POST
    • 国际物流轨迹回调
      POST
    • 物流干线变更回调
      POST
  1. 消息回调

国际包裹单发货回调

POST
/app/callback/warehouse/order

请求参数

Query 参数

Body 参数application/json

示例
{
    "operation": "string",
    "id": 0,
    "consigneeId": 0,
    "status": 0,
    "systemOrderNumber": "string",
    "actualWeight": 0,
    "actualVolume": 0,
    "actualVolumeWeight": 0,
    "billingWeight": 0,
    "actualLength": 0,
    "actualWidth": 0,
    "actualHeight": 0,
    "deliveryTime": "string",
    "apiOrderImageList": [
        {
            "type": "string",
            "imageUrl": "string"
        }
    ],
    "apiOrderFeeList": [
        {
            "feeItem": "string",
            "price": "string",
            "feeItemTitle": "string",
            "remark": "string"
        }
    ],
    "apiOrderSizeList": [
        {
            "bagNumber": "string",
            "serviceProviderNumber": "string",
            "labelUrl": "string",
            "length": 0,
            "width": 0,
            "height": 0,
            "weight": 0,
            "volume": 0,
            "packageIdList": [
                "string"
            ],
            "vweight": 0
        }
    ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/app/callback/warehouse/order?timestamp=undefined&sign=undefined' \
--header 'Content-Type: application/json' \
--data '{
    "operation": "string",
    "id": 0,
    "consigneeId": 0,
    "status": 0,
    "systemOrderNumber": "string",
    "actualWeight": 0,
    "actualVolume": 0,
    "actualVolumeWeight": 0,
    "billingWeight": 0,
    "actualLength": 0,
    "actualWidth": 0,
    "actualHeight": 0,
    "deliveryTime": "string",
    "apiOrderImageList": [
        {
            "type": "string",
            "imageUrl": "string"
        }
    ],
    "apiOrderFeeList": [
        {
            "feeItem": "string",
            "price": "string",
            "feeItemTitle": "string",
            "remark": "string"
        }
    ],
    "apiOrderSizeList": [
        {
            "bagNumber": "string",
            "serviceProviderNumber": "string",
            "labelUrl": "string",
            "length": 0,
            "width": 0,
            "height": 0,
            "weight": 0,
            "volume": 0,
            "packageIdList": [
                "string"
            ],
            "vweight": 0
        }
    ]
}'

返回响应

🟢200
application/json
Bodyapplication/json

示例
{
    "code": 0,
    "msg": "string",
    "data": null
}
修改于 2026-07-09 03:54:34
上一页
国内包裹入库回调
下一页
国际物流轨迹回调
Built with