> For the complete documentation index, see [llms.txt](https://prepaidify.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prepaidify.gitbook.io/docs/virtual-card/api-integration/api-for-updating-virtual-card-update-cardholder-address.md).

# API For Updating Virtual Card (update cardholder address)

### &#x20;Description

Update virtual card (update cardholder address)

### Request URL

/open/api/card/deposit

### Request Method

POST

### Request Parameter

| Parameter   | Mandatory | Type   | Description     |
| ----------- | --------- | ------ | --------------- |
| cardId      | Y         | string | Virtual Card ID |
| +cardHolder | Y         | object |                 |
| └street     | Y         | string | Street          |
| └city       | Y         | string | City            |
| string      | Y         | string | State           |
| └zipCode    | Y         | string | Zipcode         |

### Request Example

```
{
    "cardHolder": {
        "city": "Vienna",
        "state": "GA",
        "street": "1010 Pine St LOT 12-E",
        "zipCode": "31092"
    },
    "cardId": "c_xxxxxxxxxx"
}
```

### Response Parameter

| Parameter | Type    | Description                 |
| --------- | ------- | --------------------------- |
| model     | boolean | Is the operation successful |

### Response Example

```
{
    "success": true,
    "error":false,
    "msg": "success",
    "code": 0,
    "model": true,
    "traceId": 1646651934238
}
```
