> ## 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.

# 修改结算银行卡打款验证

## 功能说明

打款申请后，银行卡收到打款金额后，调用本接口完成打款验证。

## 请求地址

`POST /verify/bankcard/confirm`

## 请求参数

| 字段              | 类型         | 必填 | 说明                 |
| --------------- | ---------- | -- | ------------------ |
| `out_trade_no`  | string(64) | 是  | 申请订单号，请求唯一流水号      |
| `merchant_code` | string(32) | 是  | 商户号                |
| `verify_id`     | string(64) | 是  | 验证 id，申请接口返回的验证 id |
| `order_no`      | string(64) | 是  | 申请结果单号，申请接口返回的结果单号 |
| `amount`        | string(64) | 是  | 打款金额，单位分           |

## 请求示例

```json theme={null}
{
  "amount": "10",
  "merchant_code": "226801000000865319122",
  "order_no": "20231025152300000002",
  "out_trade_no": "ea51203e1a0146d7954b39ac88aecaf7",
  "verify_id": "20231025152300000001"
}
```

## 响应参数

| 字段        | 类型     | 说明                                                |
| --------- | ------ | ------------------------------------------------- |
| `status`  | string | 确认状态；`succeeded` 表示成功；`fail` 表示失败；`pending` 表示处理中 |
| `message` | string | 异常描述，失败或处理中时返回                                    |

## 响应示例

```json theme={null}
{
  "message": "",
  "status": "succeeded"
}
```
