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
Copy file name to clipboardExpand all lines: content/data/account-aggregator/api-integration/fip-apis.mdx
+31-15Lines changed: 31 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ The GET Active FIP List API is the new version of our API to call the list of Ac
12
12
- Dynamically activates and deactivates FIPs based on performance.
13
13
- Can be used to simply check the status of FIPs that are active or inactive on the ecosystem.
14
14
- Can be used by FIUs as a mode of selection of FIPs/providers where a user has an account.
15
+
- Provides real-time success rates to help FIUs make data-driven decisions about creating consents, allowing them to route users to alternate data collection methods when FIP performance is poor.
15
16
16
17
#### Details Shared in the FIP List API
17
18
@@ -21,15 +22,15 @@ These key details can be used by you for purposes like - offering a list of FIPs
21
22
<table>
22
23
<tr>
23
24
<th>
24
-
<strong>Status</strong>
25
+
<strong>Field</strong>
25
26
</th>
26
27
<th>
27
28
<strong>Description</strong>
28
29
</th>
29
30
</tr>
30
31
<tr>
31
32
<td>
32
-
<code>Name</code>
33
+
<code>name</code>
33
34
</td>
34
35
<td>
35
36
The name of the FIP - this is typically their brand name in camel
@@ -38,7 +39,7 @@ These key details can be used by you for purposes like - offering a list of FIPs
38
39
</tr>
39
40
<tr>
40
41
<td>
41
-
<code>FIP ID</code>
42
+
<code>fipId</code>
42
43
</td>
43
44
<td>
44
45
The unique identifier for the FIP in the central registry of
@@ -50,18 +51,18 @@ These key details can be used by you for purposes like - offering a list of FIPs
50
51
</tr>
51
52
<tr>
52
53
<td>
53
-
<code>FIP TYPES</code>
54
+
<code>fiTypes</code>
54
55
</td>
55
56
<td>
56
57
This refers to the type of data available via the FIP. For example,
57
-
an FIP with FIP_Types “DEPOSITS “ will have Savings or Current
58
+
an FIP with fiTypes “DEPOSITS “ will have Savings or Current
58
59
Accounts available and be able to share bank statements upon user
59
60
consent
60
61
</td>
61
62
</tr>
62
63
<tr>
63
64
<td>
64
-
<code>Status</code>
65
+
<code>status</code>
65
66
</td>
66
67
<td>
67
68
The Status field gives you the up-to-date status of the FIP. This
@@ -70,6 +71,14 @@ These key details can be used by you for purposes like - offering a list of FIPs
70
71
statuses in the next section.
71
72
</td>
72
73
</tr>
74
+
<tr>
75
+
<td>
76
+
<code>successRate</code>
77
+
</td>
78
+
<td>
79
+
The data fetch success rate (in %) for the FIP in the last 1 hour. This can be used by FIUs to make informed decisions about creating consents. A null value indicates insufficient data points in the last hour to calculate the success rate.
80
+
</td>
81
+
</tr>
73
82
</table>
74
83
75
84
#### Categories of FIP Status
@@ -146,7 +155,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
146
155
"DEPOSIT"
147
156
],
148
157
"institutionType": "BANK",
149
-
"status": "ACTIVE"
158
+
"status": "ACTIVE",
159
+
"successRate": 98.55
150
160
},
151
161
{
152
162
"name": "Federal Bank",
@@ -155,7 +165,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
155
165
"DEPOSIT"
156
166
],
157
167
"institutionType": "BANK",
158
-
"status": "ACTIVE"
168
+
"status": "ACTIVE",
169
+
"successRate": 95.25
159
170
},
160
171
{
161
172
"name": "IndusInd Bank Ltd.",
@@ -166,7 +177,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
166
177
"RECURRING_DEPOSIT"
167
178
],
168
179
"institutionType": "BANK",
169
-
"status": "TEMPORARILY_INACTIVE"
180
+
"status": "TEMPORARILY_INACTIVE",
181
+
"successRate": 45.20
170
182
},
171
183
{
172
184
"name": "HDFC Bank",
@@ -175,7 +187,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
175
187
"DEPOSIT"
176
188
],
177
189
"institutionType": "BANK",
178
-
"status": "INACTIVE"
190
+
"status": "INACTIVE",
191
+
"successRate": null
179
192
}
180
193
],
181
194
"traceId": "1-64313583-255e3a0705424652664584b2"
@@ -227,13 +240,14 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
227
240
{`{
228
241
"data": [
229
242
{
230
-
"name": "HDFC Bank",
231
-
"fipId": "HDFC-FIP",
243
+
"name": "Axis Bank",
244
+
"fipId": "AXIS001",
232
245
"fiTypes": [
233
246
"DEPOSIT"
234
247
],
235
248
"institutionType": "BANK",
236
-
"status": "INACTIVE"
249
+
"status": "ACTIVE",
250
+
"successRate": 98.55
237
251
}
238
252
],
239
253
"traceId": "1-66ff79c7-46029a1f1aaa59083489fd46"
@@ -291,7 +305,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
291
305
"DEPOSIT"
292
306
],
293
307
"institutionType": "BANK",
294
-
"status": "ACTIVE"
308
+
"status": "ACTIVE",
309
+
"successRate": 98.55
295
310
},
296
311
{
297
312
"name": "Federal Bank",
@@ -300,7 +315,8 @@ Below is the list of statuses for FIPs that you will see in a typical GET FIP Li
0 commit comments