curl --request POST \
--url https://api.flutterwave.com/v3/virtual-cards/{id}/fund \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"debit_currency": "USD",
"amount": "5"
}
'{
"status": "success",
"message": "Card funded successfully",
"data": null
}Fund a virtual card
curl --request POST \
--url https://api.flutterwave.com/v3/virtual-cards/{id}/fund \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"debit_currency": "USD",
"amount": "5"
}
'{
"status": "success",
"message": "Card funded successfully",
"data": null
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?