Fund Card

Virtual card funding endpoint

To fund a card (USDT), please use the card_id to get the card details (Chain and Address) and send money to the wallet. Any money sent to that address will be reflected on the balance on the card.

Also, you can fund your virtual card cards with fiat, when you get the usdt address on the card to fund. you can go to axis and then create a buy order (sending us the usdt address you got) we will show you a virtual account to pay to and then we transfer the equivalent USDT to that address (from the virtual card) read on on this here

POST https://vcard.fuspay.finance/api/v1/Card/Fund

This endpoint is used for fiat funding

Request Header

Name
Type
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

Content-Type

Application/json

x-partner-id

xxxxxxxx

Your partner ID eg. p602xxx

Request body

Name
Type
Description

card_id

String

The ID of the card to be funded

amount

String

The amount to fund the card

{
	
	"card_id": "0001",
	"amount": 100
	
}

Response body

{
    "success": true,
    "message": "Card funding",
    "data": {
        "message": "Please get card details for the wallet address to make deposit",
        "view_card_balance_url": "n/a",
        "wallet": {
            "usdt": {
                "chain": "n/a",
                "address": "n/a"
            }
        }
    }
}

Last updated