Budget
Get a balance group
Returns a single balance group by id, with its computed totals, embedded manager, and bound vendor_cards.
Readable by admin / budgets_manage users and by the group's own manager. A group outside the caller's scope returns 404 Not Found.
get/v1/budgets/{id}
Path parameters
idstring uuid required
The UUID of the balance group (budget).
Parameters
#/paths/~1v1~1bills/get/parameters/0 — unresolved $ref
Response
The requested balance group.
Example response
{
"name": "Marketing",
"description": "Presupuesto del equipo de marketing",
"currency": "CLP",
"allocated_amount_cents": 5000000,
"committable_cents": 3200000,
"available_cents": 3500000,
"consumed_balance_cents": -1500000,
"vendor_cards": [
{
"last4": "4242",
"limit_currency": "CLP"
}
]
}