Virtual Card
Create a new receiver account for receiver
International Virtual Card Payments will be available 20/04/2025. Please speak with your account manager for more information.
Create and Issue Virtual Card Receiver Account
POST
/api/receiver-account/<currency>/virtual-card

Headers
Name
Value
x-api-key
<token>
signature
<token>
Body
Name
Type
Description
receiver_id
*
string
Receiver ID of receiver account.
* is mandatory parameter
Example body request
{
"receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75"
}
Response
{
"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
}
}
Last updated