# Virtual Card

Create a new receiver account for receiver

{% hint style="warning" %}
International Virtual Card Payments will be available **20/04/2025.** Please speak with your account manager for more information.
{% endhint %}

## Create and Issue Virtual Card Receiver Account

<mark style="color:orange;">`POST`</mark> `/api/receiver-account/<currency>/virtual-card`

{% hint style="info" %}
**Supported Currencies:** USD, EUR\
**Country Exclusions:** [OFAC Listed Countries](https://ofac.treasury.gov/sanctions-programs-and-country-information)
{% endhint %}

<figure><img src="/files/KYI5sDm3baMxJUmJ86zx" alt="Apple Wallet Supported" width="248"><figcaption></figcaption></figure>

**Headers**

| Name        | Value     |
| ----------- | --------- |
| `x-api-key` | `<token>` |
| `signature` | `<token>` |

**Body**

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| `receiver_id`<mark style="color:red;">\*</mark> | string | Receiver ID of receiver account. |

&#x20;<mark style="color:red;">\*</mark> is mandatory parameter

#### Example body request

```json
{
    "receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75"
}
```

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "message": "Receiver account created successfully",
    "payload": {
        "receiver_account_id": "c7ded40b-1524-49f4-ae3f-ee974cbe6fdd",
        "receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75",
        "status": "complete",
        "confirm_status": "confirmed",
        "card_type": "mastercard",
        "card_no": "4111111111111111",
        "cvv": "321",
        "expiry_month": "04", // MM
        "expiry_year": "2027" // YYYY
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
    "message": "There was an error while creating a receiver account",
    "error": [
        {
            "code": "REAC211",
            "message": "Receiver ID is not valid"
        }
    ]
}
```

{% endtab %}
{% endtabs %}


---

# 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://docs.payswiftly.io/payout-api/receiver/add-receiver-account/international/virtual-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.
