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

### Webhook 描述

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

### Response 示例

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

| 属性名            | 必要参数 | 类型     | 用途            | 范例值                              | 备注 |
| -------------- | ---- | ------ | ------------- | -------------------------------- | -- |
| powerCardId    | 是    | string | powerCard卡片id | a9f4cb3bfa8649b88853eded3ad853dd |    |
| activeSerialNo | 是    | string | 商户的开卡序列号      |                                  |    |
| cardNo         | 是    | string | 信用卡卡号         | 4040383164755526                 |    |
| cvv2           | 是    | string | 信用卡CVV2       | 456                              |    |
| expireDate     | 是    | string | 信用卡有效期        | 09/26                            |    |
| status         | 是    | string | 信用卡状态         | active                           |    |

### Data 示例

```json
{
  "powerCardId": "a9f4cb3bfa8649b88853eded3ad853dd",
  "activeSerialNo": "12344543654656",
  "cardNo": "4040383164755526",
  "cvv2": "456",
  "expireDate": "09/26",
  "status": "active"
}
```
