ERP Order.md
1.37 KB
ERP内购商品改价
接口描述: 后台系统修改订单商品价格
接口定义
- 接口类型:
POST https://service.yoho.cn/erp/order/updateOrderGoodsPrice
- 接口消息体:
JSON
- 场景: ERP调用
{
"orderCode": 160670190,
"uid": 20000060,
"goodsList": [
{
"last_price": 50.51,
"erp_sku_id": 112992,
"goods_type": 1
},
{
"last_price": 203,
"erp_sku_id": 1022753,
"goods_type": 1
},
{
"last_price": 403,
"erp_sku_id": 112995,
"goods_type": 1
}
]
}
接口描述: 获取在线支付订单状态
接口定义
接口类型: https://service.yoho.cn/erp/order/getOrderPayStatusInfo`
场景: ERP调用
请求参数
Param Name | Param Type | Required | Param Value | Desc |
---|---|---|---|---|
uid | int | true | 20000154 | 用户ID |
orderCode | Long | true | 160800421 | 订单号 |
返回
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"orderCode": 160670190,
"payment_status": "N",
"uid": 20000060
},
"md5": "337f43fed3738c14cfa069b9ac8b9873",
"message": "getOrderPayStatusInfo success"
}