Withdrawal History
The virtual card withdrawal history endpoint shows all the withdrawals performed by your users on the card.
GET
https://vcard.fuspay.finance/api/v1/Payments/CardWithdrawalHistory
Request Header
Name
Value
Description
Authorization
Bearer Token
Bearer token ${partner_secret_key}
x-partner-id
xxxxxx
Your partner ID eg. p602xxx
Response body
{
"success": true,
"message": "List of withdrawals",
"data": [
{
"date": "19-11-2024",
"amount_withdrawn": 100,
"type": "usdt",
"recipient_wallet": "trc20-xxx-xxx-xxx",
"amount_to_receive": 100,
"network": "trc-20",
"fee": 0
}
]
}
Last updated