Budget
Create a balance group
Creates a balance group under the company from the company-id header. Requires admin or the budgets_manage permission.
All fields are nested under a budget key. The name must be unique per company among active (non-dissolved) groups.
post/v1/budgets
Parameters
#/paths/~1v1~1bills/get/parameters/0 — unresolved $ref
Request body
Example request
{
"budget": {
"name": "Marketing",
"description": "Presupuesto del equipo de marketing",
"currency": "CLP",
"allocated_amount_cents": 5000000
}
}Response
The created 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"
}
]
}