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

商品批量添加

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

接口说明

请求方式:
post
https://p.wecard.tencent.com/cloudpay/v1/product/add-products

请求参数

Request
Body 包体
Products必填
array

商品详情列表

数组子类型:object

请求示例

{
  "Products": [
    {
      "OutProductId": "out_pid_pingpang",
      "ProductName": "乒乓球",
      "ProductImgUrl": "https://pic.com/pingpang.jpg",
      "ProductPrice": 500
    },
    {
      "OutProductId": "out_pid_yumaoqiu",
      "ProductName": "羽毛球",
      "ProductImgUrl": "https://pic.com/yumangqiu.jpg",
      "ProductPrice": 1000
    }
  ]
}

返回参数

Response
Response必填
object

返回示例

{
  "Response": {
    "RequestId": "074c8400bf724e42b7f64ad1280bc930",
    "Result": {
      "Products": [
        {
          "ChannelProductId": "502453218047951651",
          "OutProductId": "out_pid_pingpang",
          "CreateTime": "2024-02-27 14:24:15"
        },
        {
          "ChannelProductId": "502453218048017187",
          "OutProductId": "out_pid_yumaoqiu",
          "CreateTime": "2024-02-27 14:24:15"
        }
      ]
    },
    "ErrCode": "SUCCESS",
    "ErrMessage": "成功"
  }
}

ErrCode 码表

错误代码描述解决方案
SUCCESS请求成功创建成功,从Result 中获取微卡收付通平台的商品 id 保存并关联
CREATING_EXISTING_PRODUCT商品已存在创建的商品中有已经存在的商品,请调用查询接口获取商品详情
INVALID_PARAMETER参数有误请根据返回描述修正请求参数
MISSING_PARAMETER参数缺失请根据返回描述修正请求参数
FailedOperation.SystemError系统未知异常系统未知异常,请稍后重试

腾讯微卡收付通接口文档