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

### Webhook 描述

| Webhook 名称   | 功能描述                                     | 请求类型 |
| ------------ | ---------------------------------------- | ---- |
| card\_cancel | 注销卡片的回调通知。当PowerCard成功处理一笔销卡订单后，会发送该回调通知 | POST |

### Response 示例

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

| 属性名              | 必要参数 | 类型     | 用途                | 范例值                              | 备注 |
| ---------------- | ---- | ------ | ----------------- | -------------------------------- | -- |
| powerCardId      | 是    | string | powerCard卡片id     | a9f4cb3bfa8649b88853eded3ad853dd |    |
| powerCardBizId   | 是    | string | PowerCard销卡业务流水id |                                  |    |
| currency         | 是    | string | 币种                |                                  |    |
| refundAmount     | 是    | string | 退款金额              |                                  |    |
| receiveAmount    | 是    | string | 退款到账金额            |                                  |    |
| status           | 是    | string | 充值订单状态            |                                  |    |
| merchantCancelNo | 是    | string | 商户销卡号             |                                  |    |

### Data 示例

```json
{
  "powerCardId": "a9f4cb3bfa8649b88853eded3ad853dd",
  "powerCardBizId": "202524392343",
  "currency": "USD",
  "refundAmount": "100",
  "receiveAmount": "98",
  "status": "success",
  "merchantCancelNo": "20251232130123"
}
```
