Skip to main content
POST
/
cards
/
{id}
/
topup
Top up a card
curl --request POST \
  --url https://business.bfinance.app/external/api/cards/{id}/topup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 100,
  "note": "Top up for travel expenses"
}
'
{
  "status": "success",
  "message": "Card has been topped up"
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card to top up

Body

application/json
amount
number
required

The amount to top up the card with

Example:

100

note
string

Internal note

Example:

"Top up for travel expenses"

Response

Successfully topped up the card

status
string
Example:

"success"

message
string
Example:

"Card has been topped up"