Get list of configurable params + current value for a budget item + description of each field
Used on Admin UI.
Query Parameters:
Successful Response
const response = await fetch('/budget/settings?budget_id=text', { method: 'GET', headers: {}, }); const data = await response.json();
{ "detail": [ { "loc": [ "text" ], "msg": "text", "type": "text" } ] }