商品批量更新
商户可以通过调用此接口批量更新商品,每次批量更新的商品数量不可超过 20 条
接口说明
请求方式:
posthttps://p.wecard.tencent.com/cloudpay/v1/product/update-products
请求参数
Request
Body 包体
Products必填
array
商品详情列表
数组子类型:object
{
"Products": [
{
"ChannelProductId": "502453218047951651",
"ProductName": "乒乓球",
"ProductImgUrl": "https://pic.com/pingpang.jpg",
"ProductPrice": 500
},
{
"ChannelProductId": "502453218048017187",
"ProductName": "羽毛球",
"ProductImgUrl": "https://pic.com/yumangqiu.jpg",
"ProductPrice": 1000
}
]
}
返回参数
Response
200 OK
Response必填
object
{
"Response": {
"RequestId": "074c8400bf724e42b7f64ad1280bc930",
"Result": {
"Products": [
{
"ChannelProductId": "502453218047951651",
"UpdateTime": "2024-02-27 14:24:15"
},
{
"ChannelProductId": "502453218048017187",
"UpdateTime": "2024-02-27 14:24:15"
}
]
},
"ErrCode": "SUCCESS",
"ErrMessage": "成功"
}
}
ErrCode 码表
错误代码 | 描述 | 解决方案 |
---|---|---|
SUCCESS | 请求成功 | 更新成功,可从Result 中获取各商品更新时间 |
INVALID_PARAMETER | 参数有误 | 请根据返回描述修正请求参数 |
FailedOperation.SystemError | 系统未知异常 | 系统未知异常,请稍后重试 |