Skip to main content
POST
/
budget-cards
/
{id}
/
velocity
Set velocity limits
curl --request POST \
  --url https://business.bfinance.app/external/api/budget-cards/{id}/velocity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "DAY",
  "amount": 123
}
'
{
  "status": "success",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

Body

application/json
type
enum<string>
required

Interval for the velocity limit

Available options:
DAY,
WEEK,
MONTH,
LIFETIME
amount
number
required

Maximum spend allowed in the specified interval (in the card’s currency)

Response

Velocity limits successfully updated

status
string
Example:

"success"

message
string