action yodlee_get_historical_balances { label: "Get Historical Balances" description: "The historical balances service is used to retrieve the historical balances for an account or a user.
Historical balances are daily (D), weekly (W), and monthly (M).
The interval input should be passed as D, W, and M to retrieve the desired historical balances. The default interval is daily (D).
When no account id is provided, historical balances of the accounts that are active, to be closed, and closed are provided in the response.
If the fromDate and toDate are not passed, the last 90 days of data will be provided.
The fromDate and toDate should be passed in the YYYY-MM-DD format.
The date field in the response denotes the date for which the balance is requested.
includeCF needs to be sent as true if the customer wants to return carried forward balances for a date when the data is not available.
asofDate field in the response denotes the date as of which the balance was updated for that account.
When there is no balance available for a requested date and if includeCF is sent as true, the previous date for which the balance is available is provided in the response.
When there is no previous balance available, no data will be sent." provider: yodlee method: GET path: "/accounts/historicalBalances" encoding: json input: { type: "object" properties: { accountId: { type: "string" } fromDate: { type: "string" } includeCF: { type: "boolean" } interval: { type: "string" } skip: { type: "integer" format: "int32" } toDate: { type: "string" } top: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }