在上一步的返回结果信息中,我们会包含id字段作为订单ID. 这一步我们往这个ID所表示的订单中添加产品。
url | http://test.birdsystem.co.ukcom/client/Consignment-Product |
method | post |
| form 参数如下: product_id | 产品ID | 必填 | INT(10) | consignment_id | 订单ID | 必填 | BINGINT(16) | product_type | 产品类型 | 必填 | 'NORMAL' | quantity | 数量 | 必填 | SMALLINT(5) | is_directional_shared_product | 是否定向共享产品 | 选填 | 0 |
|
返回 |
Code Block |
---|
| {
"success":true,
"data":{
"id":"1124955",
"consignment_id":"2006143004830001",
"product_id":"334422",
"...":"..."
}
} |
|
...