支付增值服务
接口列表
商品管理
商品批量更新

商品批量更新

商户可以通过调用此接口批量更新商品,每次批量更新的商品数量不可超过 20 条

接口说明

请求方式:
post
https://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
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系统未知异常系统未知异常,请稍后重试

腾讯微卡收付通接口文档