Skip to content

Commit 511d79b

Browse files
committed
Merge branch 'main' into staging
2 parents 495b153 + d72bf9b commit 511d79b

File tree

2 files changed

+36
-16
lines changed

2 files changed

+36
-16
lines changed

api-references/data/account-aggregator.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4134,7 +4134,11 @@
41344134
"TEMPORARILY_INACTIVE"
41354135
],
41364136
"description": "Current status of the FIP"
4137-
}
4137+
},
4138+
"successRate": {
4139+
"type": "number",
4140+
"description": "Data fetch success rate of the FIP in percentage for the last 1 hour"
4141+
}
41384142
},
41394143
"required": [
41404144
"fiTypes",

content/data/account-aggregator/api-integration/fip-apis.mdx

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff 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
1212
- Dynamically activates and deactivates FIPs based on performance.
1313
- Can be used to simply check the status of FIPs that are active or inactive on the ecosystem.
1414
- 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.
1516

1617
#### Details Shared in the FIP List API
1718

@@ -21,15 +22,15 @@ These key details can be used by you for purposes like - offering a list of FIPs
2122
<table>
2223
<tr>
2324
<th>
24-
<strong>Status</strong>
25+
<strong>Field</strong>
2526
</th>
2627
<th>
2728
<strong>Description</strong>
2829
</th>
2930
</tr>
3031
<tr>
3132
<td>
32-
<code>Name</code>
33+
<code>name</code>
3334
</td>
3435
<td>
3536
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
3839
</tr>
3940
<tr>
4041
<td>
41-
<code>FIP ID</code>
42+
<code>fipId</code>
4243
</td>
4344
<td>
4445
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
5051
</tr>
5152
<tr>
5253
<td>
53-
<code>FIP TYPES</code>
54+
<code>fiTypes</code>
5455
</td>
5556
<td>
5657
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
5859
Accounts available and be able to share bank statements upon user
5960
consent
6061
</td>
6162
</tr>
6263
<tr>
6364
<td>
64-
<code>Status</code>
65+
<code>status</code>
6566
</td>
6667
<td>
6768
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
7071
statuses in the next section.
7172
</td>
7273
</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>
7382
</table>
7483

7584
#### 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
146155
"DEPOSIT"
147156
],
148157
"institutionType": "BANK",
149-
"status": "ACTIVE"
158+
"status": "ACTIVE",
159+
"successRate": 98.55
150160
},
151161
{
152162
"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
155165
"DEPOSIT"
156166
],
157167
"institutionType": "BANK",
158-
"status": "ACTIVE"
168+
"status": "ACTIVE",
169+
"successRate": 95.25
159170
},
160171
{
161172
"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
166177
"RECURRING_DEPOSIT"
167178
],
168179
"institutionType": "BANK",
169-
"status": "TEMPORARILY_INACTIVE"
180+
"status": "TEMPORARILY_INACTIVE",
181+
"successRate": 45.20
170182
},
171183
{
172184
"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
175187
"DEPOSIT"
176188
],
177189
"institutionType": "BANK",
178-
"status": "INACTIVE"
190+
"status": "INACTIVE",
191+
"successRate": null
179192
}
180193
],
181194
"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
227240
{`{
228241
"data": [
229242
{
230-
"name": "HDFC Bank",
231-
"fipId": "HDFC-FIP",
243+
"name": "Axis Bank",
244+
"fipId": "AXIS001",
232245
"fiTypes": [
233246
"DEPOSIT"
234247
],
235248
"institutionType": "BANK",
236-
"status": "INACTIVE"
249+
"status": "ACTIVE",
250+
"successRate": 98.55
237251
}
238252
],
239253
"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
291305
"DEPOSIT"
292306
],
293307
"institutionType": "BANK",
294-
"status": "ACTIVE"
308+
"status": "ACTIVE",
309+
"successRate": 98.55
295310
},
296311
{
297312
"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
300315
"DEPOSIT"
301316
],
302317
"institutionType": "BANK",
303-
"status": "ACTIVE"
318+
"status": "ACTIVE",
319+
"successRate": 95.25
304320
}
305321
],
306322
"traceId": "1-64313583-255e3a0705424652664584b2"

0 commit comments

Comments
 (0)