版本比较

标识

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

...

Field

Data Type

Length

Mandatory

Description

referenceNo

String

50

M客户参考号

Unique identification of fulfillment

warehouseServiceName

String

50

M尾程服务名称

Lastmile service name

consigneeAddressCode

String

50

O/M

收件地址代码Consignee address code

useConsigneeAddressCode

Boolean

2

OMO使用收件地址代码

Use consignee address code or not

recipientName

String

50

O/M

收件人名称Recipient name

recipientCompany

String

50

O收件公司名称

Recipient company name

email

String

100

O收件人邮箱

Recipient email

phone

String

50

O/M

收件人电话Recipient phone number

addressLine1

String

200

O/M收件地址行1

Recipient address line 1

addressLine2

String

200

O收件地址行3

Recipient address line 2

addressLine3

String

200

O收件地址行3

Recipient address line 3

city

String

100

O/M

收件城市Recipient city

state

String

100

O收件省份

Recipient state

district

String

20

O收件区

Recipient district

postcode

String

15

O/M

收件地址邮编Recipient postcode

country

String

2

O/M

收件国家Recipient company

description

String

100

O描述(英文)

Description of order

nativeDescription

String

100

O描述

Native description of order

weight

BigDecimal

(8,3)

O包裹重量(废弃字段,可以传但是不存)

Declare Parcel weight(no use)

weightUnit

String

5

O包裹重量单位(废弃字段,可以传但是不存)

Parcel weight unit(no use

volume

BigDecimal

(8,3)

O包裹体积(废弃字段,可以传但是不存)

Declare Parcel volume(no use

dimensionUnit

String

5

O包裹体积单位(废弃字段,可以传但是不存)

Parcel volume unit(no use

length

BigDecimal

(8,1)

O包裹长度(废弃字段,可以传但是不存)

Declare Parcel length(no use

width

BigDecimal

(8,1)

O包裹宽度(废弃字段,可以传但是不存)

Declare Parcel widthno use

height

BigDecimal

(8,1)

O包裹高度(废弃字段,可以传但是不存)

Declare Parcel heightno use

platform

String

50

O电商平台

Platform where order created

shipperAddressCode

String

50

M发件仓库代码

Warehouse code of departure

sku

String

30

M商品

SKU code

productQty

Int

10

M商品数量

Total product qty in order

remark

String

100

O出库单备注

Remark of order

orderNo

String

-

返回值Response

系统订单号Order No

code


-

-返回编码

Response code

errors


-

-报错

Response error

message


-

-返回信息

Response message

messageId


-

-返回信息编码

Response message ID

success


-

-

成功响应Success

warnList


-

-废弃字段

No use


Request Sample


代码块
[
    {
        "referenceNo": "order00001",
        "warehouseServiceName": "B2C服务",
        "consigneeAddressCode": "11112",
        "useConsigneeAddressCode": true,
        "shipperAddressCode": "Canada Warehouse",
        "recipientCompany": "",
        "nativeDescription": "",
        "description": "",
        "country": "",
        "state": "",
        "city": "",
        "district": "",
        "addressLine1": "",
        "addressLine2": "",
        "addressLine3": "",
        "postcode": "",
        "recipientName": "",
        "phone": "",
        "email": "",
        "remark": "",
        "weight": 1,
        "weightUnit": "KG",
        "volume": 1,
        "dimensionUnit": "CM",
        "length": 100,
        "width": 100,
        "height": 100,
        "platform": "",
        "productItems": [
            
            {
                "sku": "deli1498603",
                "productQty": 2
            }
        ]
    }
]

...