This group of endpoints allows you to retrieve and create budget topups. Topups are used to increase or decrease the available amount of a budget or budget member.
Topups will be automatically approved, unless a Workflow or Policy has been configured in Weel for that requires approval for budget topups.
There are two types of topups:
- Budget topups are used to increase or decrease the available amount of a budget. This is only permitted when
has_member_limitsisfalsefor the budget. - Budget member topups are used to increase or decrease the available amount of a budget member. This is only permitted when
has_member_limitsistruefor the budget.
has_member_limits is set to true when this toggle is enabled in the budget creation form. 
List the topups for a budget.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/budgets/{budget_id}/topups' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "count": 100, "next": "offset=50&limit=50", "previous": "offset=0&limit=50", "results": [ { … } ] }