This group of endpoints allow you to manage expense categories for your business.
Categories classify transactions. System-defined categories (custom: false) can only have their enabled state toggled. Custom categories (custom: true) can have their name updated and can be deleted.
Returns a paginated list of expense categories for the given business.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/categories?offset=50&limit=50&custom=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "count": 10, "next": "limit=50&offset=50", "previous": null, "results": [ { … } ] }