Fund your Issued Cards
Make funds available for card usage—based on how your cards are configured.
Once a card is issued, it must have access to funds before it can be used for transactions.
How funding works depends on the card type:
Funding Debit Cards
Debit cards do not require a separate funding step at the card level. Instead, you need to ensure that the linked account has sufficient balance.
Move funds between entities within the platform using the BOOK method. This is typically used to:
- Allocate funds across accounts
- Instantly make funds available for debit card usage
Use the POST /v1/customer/id/{id}/transaction API to add funds to the account linked to the card.
| Parameter | Required | Value |
|---|---|---|
method | ✓ | BOOK |
source.account.id | ✓ | Account to be debited |
destination.account.id | ✓ | Account to be credited |
amount | ✓ | Amount to be transferre |
Funding Prepaid Cards
Prepaid cards require explicit funding before they can be used. You manage the card balance using two operations:
Load Funds to a Prepaid Card
Add funds to a prepaid card using the POST /v1/customer/id/{id}/transaction API, along with following key parameters:
| Parameter | Required | Value |
|---|---|---|
method | ✓ | BOOK |
source.account.id | ✓ | Account to be debited |
destination.card.id | ✓ | Card to be credited |
amount | ✓ | Amount to load |
Funds are deducted from the account and made available on the card.
Unload Funds from a Card
Move unused funds back to the account using the POST /v1/customer/id/{id}/transaction API, along with following key parameters:
| Parameter | Required | Value |
|---|---|---|
method | ✓ | BOOK |
source.card.id | ✓ | Card to be debited |
destination.account.id | ✓ | Account to be credited |
amount | ✓ | Amount to unload |
Funds are removed from the card and returned to the account.
Updated 3 days ago