# Withdraw Card

Withdraw funds from the USD virtual card to an existing user’s NGN wallet. The USD amount is converted using the latest exchange rate, and a small processing fee may apply. The card’s NGN balance is increased immediately if successful.

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/withdraw-card`

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

Below are the request body parameters :tada:

**Request Body**

| Name   | Type    | Description                                       |
| ------ | ------- | ------------------------------------------------- |
| amount | Boolean | Amount in USD                                     |
| cardid | String  | The unique ID of the virtual card (from Padiwise) |

Response Body

```
{
    "status": true,
    "message": "Congratulations! Your card withdrawal is successfully.",
    "data": [
        {
            "card_id": {{  }},
            "amount": 83002,
            "charges": 33,
            "total": 82967,
            "type": {{ type }},
            "reference": {{ reference }},
            "status": {{ status }},
        }
}

```


---

# 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://padiwise.gitbook.io/padiwise/virtual-cards/withdraw-card.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.
