生效日期: 2021年1月1日
本地订单/专线订单
批量创建本地订单/专线订单
接口文档链接:
本地订单:1-2. 批量创建本地订单
专线订单:2-2. 批量创建专线订单
接口地址:https://test.birdsystem.co.uk/client/consignment/post-pending-consignment-with-products-json
...
本地订单和专线订单的 royalmail, dpd, yodel 出口, 需要去产品信息那里给添加上销售价格
dpd出口的,还需要在产品信息那里添加产地
批量临时本地订单
接口文档链接:1-3-1. 添加批量临时本地订单
接口地址:http://test.birdsystem.com/client/consignment-upload/Temp-Consignment-Json
Code Block |
---|
[
{
"contact": "test",
"#business_name": null,
"address_line1": "{{$guid}}",
"#address_line2": "",
"#address_line3": null,
"city": "Atlanta",
"#county": "",
"post_code": "30309",
"country_name": "Germany",
"#telephone": "",
"#email": null,
"#sales_order_id": "{{$randomInt}}",
"#payment_reference": "{{$randomInt}}",
"#special_instruction": null,
"product_company_ref": "kise*2",
"#delivery_service_name": "本地库存下架",
"status": "PENDING",
"type": "LOCAL",
"thirty_system_id":"{{$guid}}",
"#sales_reference":"{{$timestamp}}",
// 新增 销售订单ID 【yodel 出口必填】
"sales_order_id": "1234567654",
// 新增 销售平台名称 (必须是英文), ebay, amazon 等 【royal mail,yodel 出口必填】
"omp_name": "ebay",
// 新增 销售平台的vat号 【yodel 出口必填】
"omp_vat_number": "12345"
// 新增 客户的eori号 【royal mail,dpd 出口必填】
"shipper_eori": "12345000",
// 新增 出口原因: (Sale:销售; ReturnReplacement:退换; Gift:礼物),【dpd 出口必填】
"reason_for_expot": "Sale",
// 新增 包裹类型: (Gift:礼物;Documents:文件,Other:其他),【royalmail 出口必填】
"content_type": 'Gift'
}
] |
代理专线订单
接口文档链接:
代理专线订单:3-2批量创建代理专线订单(接口)
...