# Successful card opening callback

### &#x20;Description

Successful card opening callback

### Parameter

| Parameter          | Type      | Description                   |
| ------------------ | --------- | ----------------------------- |
| eventType          | string    | Webhook Event Type            |
| eventId            | string    | Webhook Event ID              |
| webhookSubscribeId | string    | Webhook subscription ID       |
| +data              | object    |                               |
| └userId            | string    | User ID                       |
| └cardHolderId      | string    | Cardholder ID                 |
| └holderName        | string    | Cardholder Name               |
| └cardId            | string    | Card ID                       |
| └cardSeqNo         | string    | Card Serial Number            |
| └cardCustomerId    | string    | Custom Customer ID            |
| └deposit           | long      | Total recharge (in cents)     |
| └consume           | long      | Consumption (in cents)        |
| └balance           | long      | Balance (in cents)            |
| └cvc               | string    | cvc                           |
| └number            | string    | Card number                   |
| └cardBin           | string    | Card segment ID               |
| └last4             | string    | The last 4 digits of the card |
| └status            | string    | Card Status                   |
| └statusText        | string    | Card Status Description       |
| └ expYear          | long      | Expiration year               |
| └expMonth          | long      | Expiration month              |
| └gmtCreate         | timestamp | Record creation time          |
| └orderNo           | string    | Order No.                     |

### Response Example

```
{
    "eventType":"CREATE_CARD",
    "eventId":"ev_xxxxxxxxxxxxxxxxxxxxx",
    "webhookSubscribeId":"wsb_xxxxxxxxxxxxxxxxxxx",
    "data":{
       "userId": "u_sdasdf1",
        "cardHolderId": "ch_sdasdf1",
        "holderName": "Kobe Bryant",
        "cardId": "c_sdasdf1",
        "cardSeqNo": "CAEE7QW",
        "deposit": 100000,
        "consume": 0,
        "balance": 100000,
        "cvc": "123",
        "number": "400 0009990000096",
        "cardBin": "vab_069af8a792ad",
        "last4": "0096",
        "status": "ACTIVE",
        "expYear": 2021,
        "expMonth": 5,
        "gmtCreate": 1597847779,
        "customerId": null,
        "orderNo":"999"
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://prepaidify.gitbook.io/docs/virtual-card/api-integration/successful-card-opening-callback.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
