v1
latestOpenAPI 3.1.02026-08-065163115.0 KBBudget Topups
Create budget topup
Increase or decrease the available amount of a budget. Only permitted when has_member_limits is false for the budget.
post/v1/businesses/{client_id}/budgets/{budget_id}/topups
Path parameters
client_idinteger required
Example:123
The ID of the business.
budget_idstring required
The ID of the budget.
Request body
Example request
{
"amount": 100,
"description": "Additional funds for travel",
"auto_approve": true
}Response
OK
Example response
{
"id": "e33b7c61-5124-4ba0-b238-e4c573133715",
"amount": 100,
"description": "Additional funds for travel",
"status": "APPROVED",
"requested_by": {
"id": 123,
"first_name": "John",
"last_name": "Doe",
"name": "John Doe"
},
"actioned_by": {
"id": 123,
"first_name": "John",
"last_name": "Doe",
"name": "John Doe"
},
"actioned_on": "2024-01-01T00:00:00Z",
"created": "2024-01-01T00:00:00Z",
"updated": "2024-01-01T00:00:00Z"
}