Update order Size and Weight

  • 更新订单尺寸和重量

Request

  • Path: oms/oms/order/updateWeightSize
  • Method: POST
  • Header:
    • Authorization: Basic c2FiZXI6c2FiZXJfc2VjcmV0
    • Blade-Auth: access_token
  • Request body example:
1
2
3
4
5
6
7
8
{
"orderNo": "订单编号",
"packWeight": "重量(KG)",
"packLength": "长度(CM)",
"packHeight": "高度(CM)",
"packWidth": "宽度(CM)",
"collectPackageTime": "2023-07-01 10:30:00" // 提货时间
}

Response

  • Response body example:
1
2
3
4
5
6
{
"code": 200,
"success": true,
"data": {},
"msg": "操作成功"
}