Skip to main content
POST
/
cards
/
{id}
/
withdraw
Withdraw funds
curl --request POST \
  --url https://business.bfinance.app/external/api/cards/{id}/withdraw \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 100
}'
{
  "status": "success",
  "message": "Card has been withdrawn from"
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card to withdraw funds from

Body

application/json
amount
number
required

The amount to withdraw from the card

Example:

100

Response

Successfully withdrawn funds from the card

status
string
Example:

"success"

message
string
Example:

"Card has been withdrawn from"