Skip to main content
PATCH
/
v1
/
budgets
/
{id}
Update budget limit; syncs to Redis immediately
curl --request PATCH \
  --url https://api.example.com/v1/budgets/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "budgetUsd": 100
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
budgetUsd
number
required

New monthly budget in USD

Example:

100

Response

200 - undefined