Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/budgets/{budget_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'OK
The reset cadence for the budget. JULY_FINANCIAL_YEAR resets on 1 July; APRIL_FINANCIAL_YEAR resets on 1 April.
Enum:"DAILY""WEEKLY""FORTNIGHTLY""MONTHLY""QUARTERLY""ANNUALLY""JULY_FINANCIAL_YEAR""APRIL_FINANCIAL_YEAR""NEVER"
Example:"MONTHLY"
The start date of the current period in UTC.
Example:"2024-01-01T00:00:00Z"
The end date of the current period in UTC.
Example:"2024-01-31T23:59:59Z"
When true, unspent balance rolls over to the next period instead of resetting.
Example:false
When true, only categories listed in categories are visible on the budget. When false, all enabled business categories are visible.
Example:false
Categories currently visible on the budget. Returns an empty array when limit_categories is false (no restriction in force).
The date and time when the budget was created in UTC.
Example:"2024-01-01T00:00:00Z"
Response
{ "id": "e33b7c61-5124-4ba0-b238-e4c573133715", "name": "Sales Team", "budget_type": "BUDGET", "available_amount": 800, "spent_amount": 200, "reset_amount": 1000, "reset_period": "MONTHLY", "current_period_start": "2024-01-01T00:00:00Z", "current_period_end": "2024-01-31T23:59:59Z", "has_member_limits": false, "rollover_funds": false, "limit_categories": false, "categories": [ { … } ], "custom_fields": [ { … } ], "is_deleted": false, "created": "2024-01-01T00:00:00Z", "updated": "2024-01-01T00:00:00Z" }