action naviplancentral_accounts_get_savings_strategies_by_account_id_and_savings_strate { label: "Accounts_GetSavingsStrategiesByAccountIdAndSavingsStrategyIdByAccountidId" description: "Get a specific savings strategy for an account" provider: naviplancentral method: GET path: "/api/Accounts/{accountId}/SavingsStrategies/{id}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } id: { type: "string" } } required: ["accountId", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }