Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

接口说明

批量创建代理专线订单接口

...

ee参数


参数说明是否必填类型

is_urgent

是否是紧急订单


TINYINT(1)

delivery_service_id

邮递服务ID

必填

INT(4)

sales_reference销售跟踪号
VARCHAR(50)
sales_order_id
销售订单号
VARCHAR(50)
custom_identity_reference


自定义惟一标识

(注: 如果填写了,会进行检测,同一种类型同一站点下的订单,6个月内不能有重复的标识)

重复的话会返回: {"success":false,"message":"Duplicate consignment identity reference [....]"}


VARCHAR(50)

contact

联系人

必填

VARCHAR(100)

business_name

公司


VARCHAR(255)

address_line1

地址行1


VARCHAR(100)

address_line2

地址行2


VARCHAR(100)

address_line3

地址行3


VARCHAR(100)

city

城市


VARCHAR(50)

county

省/郡


VARCHAR(50)

post_code

邮编


VARCHAR(10)

country_iso

国家

必填

CHAR(2)

telephone

电话


VARCHAR(50)

email

电子邮件


VARCHAR(255)

special_instruction
备注1
VARCHAR(255)

type

订单类型
'AGENT_DIRECT'

products

产品

必填

包含 
字段详情查看产品接口

id /client_sku/reference 和quantity的json对象例如:
请求参数

     
Code Block
languagexml
   "products":[
           {
            "product_name": "3apple29",
            "product_name_cn":"3苹果29",
            "brand":"asd品牌",
            "client_ref":"a4624",
            "price_customs_export": "3",
            "sales_price":"10",
            "weight": "300",
            "quantity": "1",
            "product_customs_property":["其它"],
            "attachment-url":"http://www.qqma.com/imgpic2/cpimagenew/2018/4/5/6e1de60ce43d4bf4b9671d7661024e7a.jpg"
           }
        ]


parcel_pieces多包裹信息(如果仅一个包裹时可不用填)

数据结构如下:

[

{"weight":500, "length":25, "width":20, "depth":15, "description":"table"},

{"weight":400, "length":22, "width":18, "depth":13, "description":"chair"},

]

备注:重量为克(g),长度为毫米(mm)


payment_reference
付款凭证
string
temp_consignment_info_id
批量订单ID
int


返回字段

返回字段字段类型说明
success
int返回结果状态。true:正常,false:失败
id
int订单ID
company_id
int公司ID
client_id
int客户ID
warehouse_id
int仓库ID
consignment_product_quantity
int订单产品数量
consignment_product_reference
int产品英文名称
delivery_service_id
int邮递服务ID
delivery_service_id_internal
int内部邮递服务
delivery_package_size_id
int包装尺寸
total_price
int产品总价格
total_delivery_fee
int邮递服务费用
total_handling_fee
int手续费
length
int
width
int
depth
int
total_weight
int总重量
total_volume
int总体积
total_volume_weight
int总体积重
total_fee_weight
int计费重
guarantee_percentage
int担保比例
contact
string联系人
business_name
string公司名称
address_line1
string地址行1
address_line2
string地址行2
address_line3
string地址行3
city
string城市
county
string省/郡
post_code
string邮编
country_iso
string国家简称
telephone
int电话
email
string邮箱
sender_contact
string发件人
sender_business_name
string发件人公司名称
sender_address_line1
string发件人地址行1
sender_address_line2
string发件人地址行2
sender_address_line3
string发件人地址行3
sender_city
string发件人城市
sender_county
string发件人省/郡
sender_post_code
int发件人邮编
sender_country_iso
string发件人国家简称
sender_email
string发件人邮箱
sender_telephone
string发件人电话
sales_reference
string销售跟踪号
sales_price
int销售价格
customs_price
int报关价格
custom_identity_reference
string自定义唯一跟踪号
sales_order_id
string销售订单号
payment_reference
string付款凭证
delivery_reference
string运输跟踪号
tracking_reference
string17tarck跟踪号
special_instruction
string备注1
neighbour_instruction
string备注2
temp_consignment_info_id
int临时订单号
is_urgent
int是否为紧急订单,1:是,0:否
is_forced_delivery_service
int是否强制选择一种邮递服务
create_time
string创建时间
finish_time
string完成时间
arrive_time
string抵达时间
update_time
string更新时间
type
string订单类型
status
string订单状态
stock_status
string库存状态
is_hide_delivery_reference_to_consignment
string是否隐藏订单运输跟踪号
delivery_service_is_signature
string邮递服务是否签名服务
delivery_service_is_tracking
string邮递服务是否跟踪服务

接口示例

接口请求示例

地址:https://test.birdsystem.co.uk/client/consignment/post-pending-consignment-with-products-json

Code Block
languagexml
linenumberstrue
collapsetrue
{
	"company_id":"{{bs.default_company_id}}",
	"api_key":"{{bs.default_api_key}}"
}

...