action youneedabudget_get_budget_settings_by_id { label: "Budget Settings" description: "Returns settings for a budget" provider: youneedabudget method: GET path: "/budgets/{budget_id}/settings" encoding: json input: { type: "object" properties: { budget_id: { type: "string" } } required: ["budget_id"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["settings"] properties: { settings: { type: "object" required: ["currency_format", "date_format"] properties: { currency_format: { type: "object" description: "The currency format setting for the budget. In some cases the format will not be available and will be specified as null." required: ["currency_symbol", "decimal_digits", "decimal_separator", "display_symbol", "example_format", "group_separator", "iso_code", "symbol_first"] properties: { currency_symbol: { type: "string" } decimal_digits: { type: "integer" format: "int32" } decimal_separator: { type: "string" } display_symbol: { type: "boolean" } example_format: { type: "string" } group_separator: { type: "string" } iso_code: { type: "string" } symbol_first: { type: "boolean" } } } date_format: { type: "object" description: "The date format setting for the budget. In some cases the format will not be available and will be specified as null." required: ["format"] properties: { format: { type: "string" } } } } } } } } } }