Skip to main content
POST
/
cards
/
{id}
/
limits
Set spending limits
curl --request POST \
  --url https://business.bfinance.app/external/api/cards/{id}/limits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "ecommerce-daily",
  "limit": 5000
}
'
{
  "status": "success",
  "data": {
    "type": "ecommerce-daily",
    "limit": 5000
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

ID of the card

Body

application/json
type
enum<string>
required

Type of transaction limit

Available options:
ecommerce-daily,
ecommerce-monthly,
ecommerce-transaction,
pos-daily,
pos-monthly,
pos-transaction
Example:

"ecommerce-daily"

limit
number
required

Limit value to set

Example:

5000

Response

Successfully updated card limit

status
string
Example:

"success"

data
object