You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.journeyMode(MULTI_PDF) // Optional: Multi PDF journey
174
174
.aaJourneyMode(ONLY_RECURRING) // Optional: Recurring AA pulls
175
175
.aaRecurringTenureMonthCount(3) // Optional: Consent duration is valid for 3 months
176
-
.aaRecurringFrequecyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
176
+
.aaRecurringFrequencyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
177
177
.aaRecurringFrequencyValue(2) // Optional: Number of times to pull the data
178
178
.build()
179
179
```
@@ -193,7 +193,7 @@ new FinBoxBankConnect.Builder(getApplicationContext())
193
193
.journeyMode(MULTI_PDF) // Optional: Multi PDF journey
194
194
.aaJourneyMode(ONLY_RECURRING) // Optional: Recurring AA pulls
195
195
.aaRecurringTenureMonthCount(3) // Optional: Consent duration is valid for 3 months
196
-
.aaRecurringFrequecyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
196
+
.aaRecurringFrequencyUnit(TimeUnit.DAYS) // Optional: Frequency value is in Days
197
197
.aaRecurringFrequencyValue(2) // Optional: Number of times to pull the data
198
198
.build();
199
199
```
@@ -213,7 +213,7 @@ new FinBoxBankConnect.Builder(getApplicationContext())
213
213
|`journey_mode`| Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No |
214
214
|`aa_journey_mode`| set the journey mode for AA (i.e only_once or only_recurring) | No |
215
215
|`aa_recurring_tenure_month_count`| set the recurring consent duration (min: 1 and max: 24) | No |
216
-
|`aa_recurring_frequecy_unit`| set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
216
+
|`aa_recurring_frequency_unit`| set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
217
217
|`aa_recurring_frequency_value`| set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No |
218
218
219
219
`fromDate` and `toDate` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `fromDate` will be today's date - 6 months and `toDate` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.
| `journey_mode` | Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No |
126
126
| `aa_journey_mode` | set the journey mode for AA (i.e only_once or only_recurring) | No |
127
127
| `aa_recurring_tenure_month_count` | set the recurring consent duration (min: 1 and max: 24) | No |
128
-
| `aa_recurring_frequecy_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
128
+
| `aa_recurring_frequency_unit` | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No |
129
129
| `aa_recurring_frequency_value` | set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No |
130
130
131
131
`fromDate`and `toDate` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `fromDate` will be today's date - 6 months and `toDate` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.
Copy file name to clipboardExpand all lines: docs/bank-connect/javascript.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ POST **{{$page.frontmatter.base_url}}/{{$page.frontmatter.version}}/session/**
36
36
| journey_mode | string | Optional parameter to set the journey (i.e.multi_pdf or multi_banking) | No | - |
37
37
| aa_journey_mode | string | set the journey mode for AA (i.e only_once or only_recurring) | No | - |
38
38
| aa_recurring_tenure_month_count | integer | set the recurring consent duration (min: 1 and max: 24) | No | - |
39
-
|aa_recurring_frequecy_unit| string | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No | - |
39
+
|aa_recurring_frequency_unit| string | set the frequency unit to pull the data during the recurring consent duration (year, month, day, hour) | No | - |
40
40
| aa_recurring_frequency_value | integer | set the frequency value to pull the data during the recurring consent duration (min: 1 and max: 3) | No | - |
41
41
42
42
`from_date` and `to_date` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `from_date` will be today's date - 6 months and `to_date` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.
0 commit comments