[GH-ISSUE #748] [Feature] nordigen bank sync historic data #41951

Closed
opened 2026-04-26 01:29:58 -05:00 by GiteaMirror · 3 comments
Owner

Originally created by @foremny on GitHub (Mar 13, 2023).
Original GitHub issue: https://github.com/actualbudget/actual/issues/748

Verified feature request does not already exist?

  • I have searched and found no existing issue

💻

  • Would you like to implement this feature?

Pitch: what problem are you trying to solve?

I want to sync my transactions from my bank to actualbudget via nordigen integration with as much history as the bank allows. Currently it is hardcoded to 31 days or the creation date of the account. see

let date = monthUtils.subDays(db.fromDateRepr(latestTransaction.date), 31);
// Never download transactions before the starting date. This was
// when the account was added to the system.
if (date < startingDate) {
  date = startingDate;
}

Describe your ideal solution to this problem

An Option to choose how far back the initial sync will pull data.

Teaching and learning

No response

Originally created by @foremny on GitHub (Mar 13, 2023). Original GitHub issue: https://github.com/actualbudget/actual/issues/748 ### Verified feature request does not already exist? - [X] I have searched and found no existing issue ### 💻 - [ ] Would you like to implement this feature? ### Pitch: what problem are you trying to solve? I want to sync my transactions from my bank to actualbudget via nordigen integration with as much history as the bank allows. Currently it is hardcoded to 31 days or the creation date of the account. [see](https://github.com/actualbudget/actual/blob/master/packages/loot-core/src/server/accounts/sync.js#L769) ``` js let date = monthUtils.subDays(db.fromDateRepr(latestTransaction.date), 31); // Never download transactions before the starting date. This was // when the account was added to the system. if (date < startingDate) { date = startingDate; } ``` ### Describe your ideal solution to this problem An Option to choose how far back the initial sync will pull data. ### Teaching and learning _No response_
GiteaMirror added the feature label 2026-04-26 01:29:58 -05:00
Author
Owner

@fstybel commented on GitHub (Mar 14, 2023):

It should be straightforward to do it.
We have this data in the Nordigen API response from /institutions endpoint (doc). We use currently this endpoint to fetch all institutions.
We could extend the modal where we select our Bank and add there for example checkbox to fetch all possible history or we can use just a textfield filled with max period

<!-- gh-comment-id:1468005713 --> @fstybel commented on GitHub (Mar 14, 2023): It should be straightforward to do it. We have this data in the Nordigen API response from `/institutions` endpoint ([doc](https://nordigen.com/en/docs/account-information/integration/parameters-and-responses/#/institutions/retrieve%20all%20supported%20Institutions%20in%20a%20given%20country)). We use currently this endpoint to fetch all institutions. We could extend the modal where we select our Bank and add there for example checkbox to fetch all possible history or we can use just a textfield filled with max period
Author
Owner

@github-actions[bot] commented on GitHub (May 1, 2023):

Thanks for sharing your idea!

This repository is now using lodash style issue management for enhancements. This means enhancement issues will now be closed instead of leaving them open. This doesn’t mean we don’t accept feature requests, though! We will consider implementing ones that receive many upvotes, and we welcome contributions for any feature requests marked as needing votes (just post a comment first so we can help you make a successful contribution).

The enhancement backlog can be found here: https://github.com/actualbudget/actual/issues?q=is%3Aissue+label%3A%22needs+votes%22+sort%3Areactions-%2B1-desc

Don’t forget to upvote the top comment with 👍!

<!-- gh-comment-id:1530114822 --> @github-actions[bot] commented on GitHub (May 1, 2023): :sparkles: Thanks for sharing your idea! :sparkles: This repository is now using lodash style issue management for enhancements. This means enhancement issues will now be closed instead of leaving them open. This doesn’t mean we don’t accept feature requests, though! We will consider implementing ones that receive many upvotes, and we welcome contributions for any feature requests marked as needing votes (just post a comment first so we can help you make a successful contribution). The enhancement backlog can be found here: https://github.com/actualbudget/actual/issues?q=is%3Aissue+label%3A%22needs+votes%22+sort%3Areactions-%2B1-desc Don’t forget to upvote the top comment with 👍!
Author
Owner

@youngcw commented on GitHub (Feb 8, 2024):

GoCardless currently pulls in 90 days, which I believe is the max allowed. Closing.

<!-- gh-comment-id:1934358100 --> @youngcw commented on GitHub (Feb 8, 2024): GoCardless currently pulls in 90 days, which I believe is the max allowed. Closing.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#41951