> ## Documentation Index
> Fetch the complete documentation index at: https://opendocs.xft.xin/llms.txt
> Use this file to discover all available pages before exploring further.

# 产品清单

## 产品机制

产品 = 支付方式 + 进件渠道 + 服务权限 + 费率，由平台管理端维护：

* 渠道商为商户配费率 = 进件提交产品码 + 费率配置项（`products[].fee_items`，见[商户进件提交](../merchant/apply-create)）；
* 实际可用产品以渠道商产品模板（管理端配置）为准，一期不开放产品查询接口。

## 产品清单（一期）

| product\_code     | 产品名         | 渠道  | 机构侧服务权限  |
| ----------------- | ----------- | --- | -------- |
| `WECHAT_JSAPI`    | 微信 JSAPI 支付 | 微信  | JSAPI    |
| `WECHAT_APPLET`   | 微信小程序支付     | 微信  | APPLET   |
| `WECHAT_APP`      | 微信 APP 支付   | 微信  | APP      |
| `WECHAT_MWEB`     | 微信 H5 支付    | 微信  | MWEB     |
| `WECHAT_MICROPAY` | 微信付款码支付     | 微信  | MICROPAY |
| `ALIPAY_F2F`      | 支付宝当面付      | 支付宝 | F2F      |
| `ALIPAY_PRE_F2F`  | 支付宝线下预授权    | 支付宝 | PRE\_F2F |
| `UNIONPAY_QR`     | 云闪付扫码       | 云闪付 | 按渠道约定    |

## 使用方式

进件提交时按需选择：

```json theme={null}
{
  "products": [
    {
      "product_code": "WECHAT_JSAPI",
      "fee_items": [
        { "types": "1", "val": "600", "dc_flag": "DC" }
      ]
    },
    {
      "product_code": "ALIPAY_F2F",
      "fee_items": [
        { "types": "1", "val": "380", "dc_flag": "DC" }
      ]
    }
  ]
}
```

认证申请时按产品码定位支付方式（微信 JSAPI 等产品需完成[认证申请](../auth/apply)后才能交易）。
