1. 快递运单
易达优送开放平台
  • WMS海外仓开放平台
    • 开发者必读
      • 对接说明
      • 枚举描述
    • 基础资料
      • 国家
      • 仓库可发渠道
      • 商品分类列表
      • 仓库
    • 商品
      • 新增商品
      • 编辑商品
      • 取消商品
      • 商品详情
      • 标签(面单)
      • 获取客户所有商品
    • 入库
      • 新增入库单
      • 确认入库单
      • 取消入库单
      • 入库详情
    • 订单
      • 新增订单
      • 取消订单
      • 订单详情
      • 标签(面单)
      • 拦截订单
      • 更新订单快递标和物流追踪号
      • 上传订单附件
    • 库存
      • 商品库存
    • 退货
      • 新增退货单
      • 取消退货单
      • 退货单列表
    • 快递运单
      • 新增快递运单
        POST
      • 获取快递运单标签
        POST
      • 拦截取消快递运单
        POST
      • 查询快递运单详情
        POST
    • Partner-API
  • 数据模型
    • 示例数据模型
    • WMS常用数据模型
      • 商品Vo
      • 分页响应
      • 响应体数据结构
      • 国家
      • 新增或编辑商品
      • 客户参考号-入库
  1. 快递运单

新增快递运单

开发中
POST
/api/customer/operation/createExpressOrder

请求参数

Header 参数

Body 参数application/json必填

示例
{
    "customerOrderNo": "API6626024414",
    "channelCode": "US-POSTAL-ECO",
    "consignee": "May bei",
    "consigneeTelephone": "+1 763-225-9113 ext. 80261",
    "consigneeEmail": "",
    "consigneeCCode": "US",
    "consigneeProvince": "CA",
    "consigneeCity": "Chino",
    "consigneeZipcode": "31710",
    "consigneeAddress": "5521 SCHAEFER AVE DOCK#10",
    "consigneeAddress2": "",
    "consigneeAddress3": "",
    "consigneeHouseNumber": "03",
    "platform": "TEMU",
    "platformOrderId": "198324556",
    "signatureService": "",
    "supportInsurance": "",
    "insuranceAmount": "",
    "consigneeTaxId": "",
    "packageList": [
        {
            "packageWeight": 0.5,
            "length": 30,
            "width": 25,
            "height": 8,
            "skuDetail": [
                {
                    "skuCode": "001",
                    "tradeNameEn": "test001",
                    "tradeNameCn": "测试品名001",
                    "quantity": 1,
                    "hscode": "8927483",
                    "price": 2.4,
                    "isElectricity": "N",
                    "weight": 0.5
                }
            ]
        }
    ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'http://192.168.8.18:3080/api/customer/operation/createExpressOrder' \
--header 'apiKey: 5ff6e6a70376ba11a42e277086598d4a' \
--header 'signature: 4590A48221F34CE299EA2D74036246F5' \
--header 'timestamp: 1717381423' \
--header 'sourceFrom;' \
--header 'Content-Type: application/json' \
--data '{
    "customerOrderNo": "API6626024414",
    "channelCode": "US-POSTAL-ECO",
    "consignee": "May bei",
    "consigneeTelephone": "+1 763-225-9113 ext. 80261",
    "consigneeEmail": "",
    "consigneeCCode": "US",
    "consigneeProvince": "CA",
    "consigneeCity": "Chino",
    "consigneeZipcode": "31710",
    "consigneeAddress": "5521 SCHAEFER AVE DOCK#10",
    "consigneeAddress2": "",
    "consigneeAddress3": "",
    "consigneeHouseNumber": "03",
    "platform": "TEMU",
    "platformOrderId": "198324556",
    "signatureService": "",
    "supportInsurance": "",
    "insuranceAmount": "",
    "consigneeTaxId": "",
    "packageList": [
        {
            "packageWeight": 0.5,
            "length": 30,
            "width": 25,
            "height": 8,
            "skuDetail": [
                {
                    "skuCode": "001",
                    "tradeNameEn": "test001",
                    "tradeNameCn": "测试品名001",
                    "quantity": 1,
                    "hscode": "8927483",
                    "price": 2.4,
                    "isElectricity": "N",
                    "weight": 0.5
                }
            ]
        }
    ]
}'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "success": true,
    "message": "新增快递运单信息成功",
    "code": 200,
    "result": {
        "data": {
            "carrier": "FEDEX",
            "trackNumber": "WTSUS0000964361US",
            "preShippingFee": "1.0000",
            "preShippingFeeCurrency": "USD",
            "frtTrackNumber": "LM100301330TJ",
            "channelCode": "US-POSTAL-ECO",
            "preShippingFeeRemark": "包裹1()的计费重量=0.5KG(转换到报价计费重量=0.5000 KG), 计费币种 USD ,报价分区码 3,计费过程: 【总价】计费模式的费用:1.0000;",
            "status": "110",
            "packageList": [
                {
                    "frtTrackNumber": "LM100301343TJ"
                }
            ]
        }
    },
    "timestamp": 1776648992338
}
🟢200创建订单失败
🟢200成功(重复推送订单)
修改于 2026-04-20 06:13:26
上一页
退货单列表
下一页
获取快递运单标签
Built with