This group of endpoints allows you to retrieve and manage budget owners. A budget owner is a user (or pending invite) who can approve spend, top up, and otherwise manage the budget.
A budget must always have at least one active owner — deleting the last remaining owner is not permitted. Adding an owner who was previously removed will reinstate the original record rather than create a duplicate.
Lists owners of the budget.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/budgets/{budget_id}/owners?offset=50&limit=50&is_deleted=false' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'OK
Response
{ "count": 3, "next": "offset=50&limit=50", "previous": "offset=0&limit=50", "results": [ { … } ] }