Skip to content

Recompute and return a budget's progress for the current period

GET
/budgets/{id}/progress
curl --request GET \
--url http://localhost:8000/api/v1/budgets/1/progress \
--header 'Authorization: Bearer <token>'
id
required
integer

Progress snapshot

Media type application/json
object
period_start
string format: date
period_end
string format: date
limit
number format: float
gross_spent
number format: float
refunds
number format: float
net_spent
number format: float
rollover_in
number format: float
effective_limit
number format: float
remaining
number format: float
percent_used
integer
projected_spend
number format: float
status
string
Allowed values: on_track near_limit over_budget forecast_breach
Example
{
"status": "on_track"
}

Budget not found