往订单中添加完产品后,我们就可以将订单的状态修改为待处理,待处理即表示提交给仓库处理。
url | http://test.birdsystem.co.ukcom/client/Consignment/Batch-Update-Status | ||||||||
method | post | ||||||||
body | form 参数如下:
| ||||||||
返回 |
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
# api_key和company_id和提交数据中的delivery_service_id需要替换成实际数据 curl -X POST \ https://test.birdsystem.co.ukcom/client/Consignment/Batch-Update-Status \ -H 'api_key: 248ccb90dff2b99465b54c113765360c' \ -H 'company_id: 36' \ -H 'content-type: application/x-www-form-urlencoded' \ -d 'ids=1904160360000015&status=PENDING' |
...