版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

字段名数据类型最大长度必填描述
skuString50M商品编码
productQtyInteger
M商品数量

请求样例

代码块
themeEclipse
linenumberstrue
collapsetrue
{
    "warehouseCode": "CATESTWH",
    "country": "CN",
    "state": "四川省",
    "city": "广元市",
    "district": "利州区",
    "postCode": "123432",
    "parcelList": [
        {
            "parcelWeight": 1,
            "parcelLength": 3,
            "parcelWidth": 4,
            "parcelHeight": 5,
            "productList": [
                {
                    "sku": "SKG",
                    "productQty": 2
                },
                {
                    "sku": "Red wine",
                    "productQty": 1
                }
            ]
        },
        {
            "parcelWeight": null,
            "parcelLength": null,
            "parcelWidth": null,
            "parcelHeight": null,
            "productList": [
                {
                    "sku": "SKG",
                    "productQty": 2
                },
                {
                    "sku": "Red wine",
                    "productQty": 1
                }
            ]
        },
        {
            "parcelWeight": 2,
            "parcelLength": 3,
            "parcelWidth": 4,
            "parcelHeight": 5,
            "productList": []
        }
    ]
}



返回样例


字段名

数据类型

最大长度

描述

channelName

String

服务名称

channelIdLong
服务id
lastMileBillingWeightDecimal
派送费计费重量
feeItemListArray
费用列表

feeItemList参数

字段名

数据类型

最大长度

描述

costTypeNameString
费用名称
billingWeightDecimal
计费重量

fee

Decimal

费用金额

currencyString
币种
feeDetailListArray
费用明细

feeDetailList参数

字段名

数据类型

最大长度

描述

costTypeNameString
费用名称(中文)
costTypeNameEnString
费用名称(英文)

fee

Decimal

费用金额

currencyString
币种
discountInteger
折扣
zoneItemNameString
费用分区


代码块
{
    "code": "0",
    "data": [
        {
            "serviceList": [],
            "warehouseCode": "DE"
        },
        {
            "serviceList": [
                {
                    "active": 1,
                    "activeMsg": "Active",
                    "serviceCode": "catest",
                    "serviceName": "testca",
                    "serviceType": 5,
                    "serviceTypeName": "Fulfillment"
                }
            ],
            "warehouseCode": "shopify"
        },
        {
            "serviceList": [
                {
                    "active": 1,
                    "activeMsg": "Active",
                    "serviceCode": "UBI.CN2WW.GENERAL",
                    "serviceName": "CN-WW Direct Injection-General",
                    "serviceType": 5,
                    "serviceTypeName": "Fulfillment"
                },
                {
                    "active": 1,
                    "activeMsg": "Active",
                    "serviceCode": "Melbourne service",
                    "serviceName": "墨尔本服务",
                    "serviceType": 5,
                    "serviceTypeName": "Fulfillment"
                },
                {
                    "active": 1,
                    "activeMsg": "Active",
                    "serviceCode": "测试-服务",
                    "serviceName": "TEST Service 001",
                    "serviceType": 5,
                    "serviceTypeName": "Fulfillment"
                },
                {
                    "active": 1,
                    "activeMsg": "Active",
                    "serviceCode": "b2cfw",
                    "serviceName": "【B2C服务",
                    "serviceType": 5,
                    "serviceTypeName": "Fulfillment"
                }
            ],
            "warehouseCode": "CNwharehouse"
        }
    ],
    "errors": "",
    "message": "",
    "messageId": "",
    "success": true,
    "warnList": ""
}

...