Skip to main content
POST
/
budgets
/
{id}
/
topup
Top up a budget
curl --request POST \
  --url https://business.bfinance.app/external/api/budgets/{id}/topup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 25.5
}'
{ "status": "success", "data": {} }

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

Budget ID

Body

application/json
amount
number
required

Top up amount in USD.

Response

Budget topped up.

status
string
Example:

"success"

data
object

Currently returned as an empty object by the API.