curl --request GET \
--url https://sandbox.cashfree.com/verification/aa/fi \
--header 'x-client-id: <api-key>' \
--header 'x-client-secret: <api-key>'{
"fi_verification_id": "Fi_12345",
"consent_verification_id": "abc12345",
"fi_ref_id": 12462,
"fi_from": "2023-01-01T00:00:00Z",
"fi_to": "2023-12-31T23:59:59Z",
"status": "ACTIVE",
"fi_data": [
{
"fip_id": "FIP_1",
"accounts": [
{
"link_ref_number": "b2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b",
"masked_acc_number": "XXXXXX4363",
"status": "DELIVERED",
"data": {
"account": {
"type": "DEPOSIT",
"profile": {
"holders": {
"type": "SINGLE",
"holder": {
"address": "729, 2nd main 2nd Cross, 8th Block, Kormangala, Bangalore - 560095",
"ckyc_compliance": "true",
"dob": "1960-08-15",
"email": "[email protected]",
"landline": "",
"mobile": "9876543219",
"name": "Vinay Kumar",
"nominee": "REGISTERED",
"pan": "DUMPY0000A"
}
}
},
"summary": {
"current_balance": "666.33",
"currency": "INR",
"branch": "Kormangala 8th Block",
"balance_date_time": "2020-06-22T07:50:00+00:00",
"current_od_limit": "0",
"drawing_limit": "0",
"exchange_rate": " ",
"facility": "OD",
"ifsc_code": "ICIC0004444",
"micr_code": "5898240246",
"opening_date": "2002-07-06",
"status": "ACTIVE",
"type": "SAVINGS",
"pending": {
"transaction_type": "DEBIT",
"amount": "0"
}
},
"transactions": {
"start_date": "2022-04-01",
"end_date": "2022-08-30",
"transaction": [
{
"amount": "129",
"current_balance": "567.25",
"mode": "UPI",
"narration": "UPI/9876543219/getsimpl/simpl@axisbank/Axis Bank",
"reference": "RFN00076583",
"transaction_timestamp": "2021-04-01T13:20:14+05:30",
"txn_id": "M3256752",
"type": "DEBIT",
"value_date": "2022-04-01"
}
]
}
}
}
}
]
},
{
"fip_id": "FIP_2",
"accounts": [
{
"link_ref_number": "b2329f47-0dcd-2314-asb5-9ef7b4c1cz6b",
"masked_acc_number": "XXXXXX4372",
"status": "PENDING",
"data": null
}
]
}
]
}Fetch Financial Information
curl --request GET \
--url https://sandbox.cashfree.com/verification/aa/fi \
--header 'x-client-id: <api-key>' \
--header 'x-client-secret: <api-key>'{
"fi_verification_id": "Fi_12345",
"consent_verification_id": "abc12345",
"fi_ref_id": 12462,
"fi_from": "2023-01-01T00:00:00Z",
"fi_to": "2023-12-31T23:59:59Z",
"status": "ACTIVE",
"fi_data": [
{
"fip_id": "FIP_1",
"accounts": [
{
"link_ref_number": "b2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b",
"masked_acc_number": "XXXXXX4363",
"status": "DELIVERED",
"data": {
"account": {
"type": "DEPOSIT",
"profile": {
"holders": {
"type": "SINGLE",
"holder": {
"address": "729, 2nd main 2nd Cross, 8th Block, Kormangala, Bangalore - 560095",
"ckyc_compliance": "true",
"dob": "1960-08-15",
"email": "[email protected]",
"landline": "",
"mobile": "9876543219",
"name": "Vinay Kumar",
"nominee": "REGISTERED",
"pan": "DUMPY0000A"
}
}
},
"summary": {
"current_balance": "666.33",
"currency": "INR",
"branch": "Kormangala 8th Block",
"balance_date_time": "2020-06-22T07:50:00+00:00",
"current_od_limit": "0",
"drawing_limit": "0",
"exchange_rate": " ",
"facility": "OD",
"ifsc_code": "ICIC0004444",
"micr_code": "5898240246",
"opening_date": "2002-07-06",
"status": "ACTIVE",
"type": "SAVINGS",
"pending": {
"transaction_type": "DEBIT",
"amount": "0"
}
},
"transactions": {
"start_date": "2022-04-01",
"end_date": "2022-08-30",
"transaction": [
{
"amount": "129",
"current_balance": "567.25",
"mode": "UPI",
"narration": "UPI/9876543219/getsimpl/simpl@axisbank/Axis Bank",
"reference": "RFN00076583",
"transaction_timestamp": "2021-04-01T13:20:14+05:30",
"txn_id": "M3256752",
"type": "DEBIT",
"value_date": "2022-04-01"
}
]
}
}
}
}
]
},
{
"fip_id": "FIP_2",
"accounts": [
{
"link_ref_number": "b2329f47-0dcd-2314-asb5-9ef7b4c1cz6b",
"masked_acc_number": "XXXXXX4372",
"status": "PENDING",
"data": null
}
]
}
]
}Client ID. You can find your ID in the Merchant Dashboard.
Client secret key. You can find your secret key in the Merchant Dashboard.
Send the signature if IP is not whitelisted.
It is the unique ID created by Cashfree Payments that you receive in the response of Consent Request API.
It is the unique ID you created to identify the verification request.
Consent created successfully
It is the unique ID you create to identify the financial information request. The maximum character limit is 50. Only alphaumeric, period (.), hyphen (-), and underscore ( _ ) are allowed.
"abc123"
It is the unique ID you created in the Request Consent API to identify the consent request.
"def456"
It displays the unique ID created by Cashfree Payments for reference purpose.
123456
It displays the status of the financial information request. Possible values are
- `SUCCESS`
- `ACTIVE`
- `FAILED`
- `EXPIRED`
- `PENDING`"ACTIVE"
It is the beginning date and time of the financial information you require.
"2024-01-01T00:00:00Z"
It is the ending date and time of the financial information you require.
"2024-12-31T23:59:59Z"
Show child attributes
It displays the unique ID to identify the financial provider.
"FIP_1"
It displays the bank account information of the individual.
Show child attributes
It displays the unique identifier associated to specific transactions.
"b2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b"
It displays the masked bank account number of the individual.
"XXXXXX4363"
It displays the status of the financial information request.
Possible values are
READYDENIEDPENDINGDELIVEREDTIMEOUT"DELIVERED"
Show child attributes
Show child attributes
"DEPOSIT"
Show child attributes
Show child attributes
"SINGLE"
Show child attributes
"729, 2nd main 2nd Cross, 8th Block, Kormangala, Bangalore - 560095"
"true"
"1960-08-15"
""
"9876543219"
"Vinay Kumar"
"REGISTERED"
"DUMPY0000A"
It contains the summary of the financial information of the individual.
Show child attributes
"666.33"
"INR"
"Kormangala 8th Block"
"2020-06-22T07:50:00+00:00"
"0"
"0"
" "
"OD"
"ICIC0004444"
"5898240246"
"2002-07-06"
"ACTIVE"
"SAVINGS"
It contains the transactional information of the individual.
Show child attributes
"2022-04-01"
"2022-08-30"
Show child attributes
"129"
"567.25"
"UPI"
"UPI/9876543219/getsimpl/simpl@axisbank/Axis Bank"
"RFN00076583"
"2021-04-01T13:20:14+05:30"
"M3256752"
"DEBIT"
"2022-04-01"