Bump GoCardless access validity from 30 to 90 days (#2518)

All banks are supposed to provide at least 90 days of access.

As of July 2023 EEA banks are required to allow access for up to 180
days[0], but this does not apply to UK banks, and apparently there might
still be EEA banks which don't comply with the new regulations.

We should consider eventually defaulting to 180 days and allowing
per-bank and maybe per-country overrides, but bumping it to 90 days
immediately provides a better user experience.

  [0]: https://nordigen.zendesk.com/hc/en-gb/articles/13239212055581-EEA-180-day-access

Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
This commit is contained in:
Johannes Löthberg
2024-04-02 19:31:44 +02:00
committed by GitHub
parent 2a1c452aac
commit 9b40610f26
2 changed files with 7 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ function _authorize(
const resp = await send('gocardless-create-web-token', {
upgradingAccountId,
institutionId,
accessValidForDays: 30,
accessValidForDays: 90,
});
if ('error' in resp) return resp;

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [kyrias]
---
Bump GoCardless access validity from 30 to 90 days.