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

### Webhook Description

| Webhook Name | Description                                                                                                                 | Request Type |
| ------------ | --------------------------------------------------------------------------------------------------------------------------- | ------------ |
| card\_status | Callback notification for card status changes. Merchants will only receive this notification after card status is modified. | POST         |

### Response Example

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

| Field Name  | Required | Type   | Description  | Example Value                    | Note |
| ----------- | -------- | ------ | ------------ | -------------------------------- | ---- |
| powerCardId | Yes      | string | PowerCard ID | a9f4cb3bfa8649b88853eded3ad853dd |      |
| status      | Yes      | string | Card status  | active                           |      |
| reason      | Yes      | string | Reason       | reason1                          |      |
| time        | Yes      | string | Timestamp    | 1745486039                       |      |

### Data Example

```json
{
  "powerCardId": "a9f4cb3bfa8649b88853eded3ad853dd",
  "status": "active",
  "reason": "reason1",
  "time": 1745486039
}
```
