# 商户池模式支付

# 说明

  • 该接口微信/支付宝均可使用
  • 该接口为商户池模式支付接口,商户在后台配置

# 接口地址

https://open.weidoufu.com/pay/prepool (opens new window)

请求方式:POST

# 接口参数

字段名称 字段类型 必填参数 说明 (AccessKey/SecretKey)应用密钥
access_key string(18) 商户池APPID
body string(32) 商品名称 例如:QQ 会员充值
out_order_no string(32) 商户订单号(字母、数字,至少 18 位长度)
pay_type int(2) 支付类型 1-微信;2-支付宝;3-云闪付
total_fee int(9) 价格单位:分
notify_url string(128) 你平台的接收回调通知的地址
expire int(2) 订单过期分钟,默认 30,最大值 60;例如:10,即是 10 分钟
attach string(128) 附加信息,回调时原样传回 例如:{test:'test1_params'}
sign string 签名结果(大写),详见 签名算法 (opens new window)

# 返回参数

返回为 json 格式

名称 字段类型 必填参数 说明
code int 1:成功   0:失败
message string 返回描述信息
status string 返回状态,有 successfail
mch_trade_no string 平台返回的订单号
out_order_no string 商户订单号(字母、数字)

实例成功返回结果:

{
  code: 1,
  data: {
    qrcode: "xxxxxxxxxxxxxxxxxxxxx"
    code_url: "weixin://wxpay/bizpayurl?pr=JM2RWx4zz",
    mch_trade_no: "202105070633559103599974",
    out_order_no: "10018801620383702069",
  },
  message: "成功",
  status: "success"
}

# 最后说明

商户池模式接口返回的结果,将根据具体交易接口返回;