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

# 单卡充值

> 向指定 Visa 卡发起充值。

## 接口信息

| 项目            | 说明                                                  |
| ------------- | --------------------------------------------------- |
| 方法            | `POST`                                              |
| 路径            | `/mc-platformapi/v1/open/et/vs/card/charge`         |
| Content-Type  | `application/json`                                  |
| Authorization | 完整 JSON 请求体经 `SHA256withRSA` 签名后再 `BASE64` 编码得到的签名值 |

## 请求参数

| 字段          | 类型        | 必填 | 说明                |
| ----------- | --------- | -- | ----------------- |
| `app_id`    | `string`  | 是  | 应用 ID，在商户平台生成     |
| `timestamp` | `integer` | 是  | Unix 秒级时间戳，参与请求验签 |
| `card_type` | `integer` | 是  | 卡类型，按平台卡类型枚举传入    |
| `card_no`   | `string`  | 是  | Visa 卡号           |
| `amount`    | `string`  | 是  | 充值金额              |
| `order_id`  | `string`  | 是  | 商户侧充值订单号          |

## 请求示例

```json theme={null}
{
  "app_id": "app_123456",
  "timestamp": 1784880000,
  "card_type": 1,
  "card_no": "493875******0990",
  "amount": "100.00",
  "order_id": "CHARGE202607250001"
}
```

## 返回字段

| 字段         | 类型       | 说明       |
| ---------- | -------- | -------- |
| `order_id` | `string` | 商户侧充值订单号 |

## 返回示例

```json theme={null}
{
  "code": 0,
  "msg": "success",
  "data": {
    "order_id": "CHARGE202607240001"
  }
}
```

充值结果可能存在异步处理，商户应结合交易记录和回调确认最终状态。
