curl --request POST \
--url https://api.flutterwave.com/v3/virtual-cards/{id}/withdraw \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 500000
}
'{
"status": "error",
"message": "Card not found. Please check and try again",
"data": null
}Withdraw funds from a virtual card
curl --request POST \
--url https://api.flutterwave.com/v3/virtual-cards/{id}/withdraw \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 500000
}
'{
"status": "error",
"message": "Card not found. Please check and try again",
"data": null
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?