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

# CARD_RECHARGE

### Webhook 描述

| Webhook 名称     | 功能描述                           | 请求类型 |
| -------------- | ------------------------------ | ---- |
| card\_recharge | 充值成功的回调通知。只有在充值成功后，商户才会收到该回调通知 | POST |

### Response 示例

```json
{
  "eventType": "card_recharge",
  "data": "xxxxxx",
  "key": "xxxxxx"
}
```

| 属性名                | 必要参数 | 类型     | 用途                | 范例值                              | 备注 |
| ------------------ | ---- | ------ | ----------------- | -------------------------------- | -- |
| powerCardId        | 是    | string | powerCard卡片id     | a9f4cb3bfa8649b88853eded3ad853dd |    |
| powerCardBizId     | 是    | string | PowerCard充值业务流水id | a9f4cb3bfa8649b88853eded3ad853dd |    |
| currency           | 是    | string | 币种                | USDT                             |    |
| rechargeAmount     | 是    | string | 充值金额              | 100.00                           |    |
| receiveAmount      | 是    | string | 充值到账金额            | 99.50                            |    |
| status             | 是    | string | 交易状态              | success                          |    |
| merchantRechargeNo | 是    | string | 商户充值订单号           | 20251232130123                   |    |

### Data 示例

```json
{
  "powerCardId": "a9f4cb3bfa8649b88853eded3ad853dd",
  "powerCardBizId": "202524392343",
  "currency": "USDT",
  "rechargeAmount": "100",
  "receiveAmount": "98",
  "status": "success",
  "merchantRechargeNo": "20251232130123"
}
```
