Integration

Integration

Moneyone FinPro
Android Standard SDK

Can easily provide all consent management facilities to your customer through your Android application itself

Moneyone FinPro
Server Integration

Implement the flows server side to call FinPro server APIs

Webhooks

Receive notifications for subscribed consent flow events and data flow events

FinPro Android Standard SDK Integration

With the FinPro Android Standard SDK, you can easily provide all consent management facilities to your customer through your Android application itself. The Standard SDK provides screens and activities for user registration and consent management that are integrated into the FinPro server-side APIs.

Pre-requisites

Integration Steps

  • Install FinPro Android Standard SDK
  • Initialize FinPro Android Standard SDK
  • Initiate the Select Account Aggregator activity
  • Initiate the AA Sign Up activity, to help a new user set up an AA profile
  • Implement the Consent Request flow on your server-side
  • Initiate the Consent Approval activity
  • Handle success and error events
  • Implement the Data Request flow on your server-side
  • Store data details in your database, if required

FinPro Server Integration

Implement the following flows on your server-side to call FinPro server APIs. Some of these flows are not required if you drop in the FinPro Android SDK for AA user registration and consent management journeys in your Android app (i.e. if you are building an iOS application or a web application or wish to build your own Android screens by connecting directly to FinPro server APIs). Flows that have to be implemented on your server side are marked (Server-side only) in parentheses.

Pre-requisites

Integration Steps

  •  Implement flow to fetch the list of Account Aggregators
  • Implement flow to send VUA provided by the customer and product details to FinPro server, for FinPro to construct a consent request (server-side only).
  • Implement flow to get status of consent requests
  • Implement flow to get data using any of the relevant APIs in the FinPro data catalog. (server-side only)
  • Implement flow to allow the customer to modify his consent (coming soon) (server-side only)

    Note: If your customer does not have an Account Aggregator set up, use the Web URL parameter provided in the response to step 1 (List of Account Aggregators) to launch the web application of the AA selected by the customer on your front-end.

FinPro Android Standard SDK comes embedded with the above functionality.

Webhooks Integration to Moneyone FinPro

Webhooks Integration needs to be done for Moneyone FinPro FIU in the Developer Portal.

Ready to set up webhooks?

What is a webhook?

Webhook is a feature to receive notifications for subscribed consent flow events and data flow events. Notifications to subscribed events are triggered on completion of the subscribed event. For. e.g. if a webhook has been setup for a Consent approval event then notification would be sent once a user approves consent. The notification to a subscribed event is sent to a webhook URL setup by a user. The notification is sent as a plain string message. When setting up the webhook, you will be asked to specify a secret. Using this secret, you can validate that the webhook is from Moneyone.

List of Active Events available which can be subscribed when setting up webhooks

Consent Approve NotificationTriggered by Onemoney to FIU when a user approves a raised consent
Consent Reject NotificationTriggered by Onemoney to FIU when a user rejects a raised consent
Consent Revoke NotificationTriggered by Onemoney to FIU when a user revokes a consent.
Consent Expiry NotificationTriggered by Onemoney to FIU when an active consent expires
Consent Pause NotificationTriggered by Onemoney to FIU when an active consent has been paused by customer
Consent Resume NotificationTriggered by Onemoney to FIU when a Paused consent has been resumed by customer
Data Ready NotificationTriggered by Onemoney to FIU when the requested data is ready to be shared with FIU
Data Denied NotificationTriggered by Onemoney to FIU when the request data has been denied by the requested FIPs
Session Expired NotificationTriggered by Onemoney to FIU when the session between FIU and Onemoney to fetch data expires
Session Failed NotificationTriggered by Onemoney to FIU when FIP fails to provide data for the data request received from Onemoney or Onemoney fails to provide data to FIU after fetching data from FIP for whatever reason

The actual notification messages (event_msg)

  • Consent approved – Consent approved for <<ConsenthandleId>>
  • Consent Rejected – Consent rejected for <<ConsenthandleId>>
  • Consent Pause – Consent Paused for <<ConsentId>>
  • Consent Resume – Consent reactivated for <<ConsentId>>
  • Consent Revoke – Consent revoked for <<ConsentId>>
  • Consent Extpire – Consent expired for <<ConsentId>>
  • Data Denied – Data denied for <<Consentid>>
  • Session Failed – Data fetch session failed for <<Consent Id>>
  • Session expired – Data fetch session expired for <<Consent Id>>

Webhook Notification Format

Below is the URL notification format sent by the FinPro to a FIU server to receive notifications about the events subscribed.

{
  "timestamp": "<timestamp>",
  "consentHandle": "<consent handle value>",
  "eventType": "<event type>",
  "eventStatus": "<event status>",
  "consentId": "<consent id>",
  "eventMessage": "<event message>"
}

As an example:

{
  "timestamp": "2020-12-18T09:45:25.325Z",
  "consentHandle": "e8beada7-e0d3-473b-a1a2-96fb4b236708",
  "eventType": "CONSENT",
  "eventStatus": "CONSENT_APPROVED",
  "consentId": "a2a5d764-4c00-492f-bed3-d7a0061be4e0",
  "eventMessage": "Consent approved for consent id a2a5d764-4c00-492f-bed3-d7a0061be4e0"
}
FieldValueDescriptionRequired?
timestampstringCurrent timestampYes
consentHandlestringConsent Handle IDYes
eventTypestringType of Event can be "CONSENT" or "DATA"Yes
eventStatusstringStatus of the event. Depends on the eventTypeYes
consentIdstringConsent ID. This value will be null if the consent is rejected.Yes
eventMessagestringNotification MessageYes

Mechanism to verify the notification

Generate a signature by using the secret entered when setting up webhooks using the below code.

Generate a X-Webhook-Signature using https://www.jokecamp.com/blog/examples-of-creating-base64-hashes-using-hmac-sha256-in-different-languages/

Secret is what FIU has configured in our developer portal. After secret is generated, the generated signature and the X-Webhook-Signature from request header matches, the data is said to be coming from the correct source.

Use the below code to verify that the notification is coming from Moneyone server and to generate signature

requests.get(url, headers={‘X-Webhook-Signature’: })

Setting up Webhooks in Onemoney Sandbox

Pre-requisites

Usage Guide

  • Open Settings – > Webhooks – > Set up webhooks option in Onemoney Developer Portal.
  • Enter the Webhook URL to which you want to receive notifications.
  • Setup a secret of your own required to authenticate a webhook URL.
  • Choose at least one event available from active events.
  • Save and start receiving notifications.

Web Hook Notification Sample Values for Various Events

There are 2 types of event formats. By default, Type 1 is enabled. Contact us if you want to switch to Type 2.

CONSENT_APPROVED – TYPE 1
{
"timestamp":"2022-03-08T12:21:43.616Z",
"consentHandle":"c7f0d368-a05f-468d-8d6c-c75acc17f224",
"eventType":"CONSENT",
"eventStatus":"CONSENT_APPROVED",
"consentId":"bf0cda0b-776c-4104-a4f8-5bcd69764125",
"vua":"9999999999@onemoney",
"eventMessage":"Consent approved for consent id bf0cda0b-776c-4104-a4f8-5bcd69764125"
}
CONSENT_APPROVED – TYPE 2
{
   "timestamp":"2023-03-10T06:26:02.035Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_APPROVED",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Consent approved for consent id 3c92001e-57ea-4320-bbb8-66d524bfb435",
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13"
}
DATA_READY – TYPE 1
{
   "timestamp":"2022-03-08T12:22:03.146Z",
   "consentHandle":"c7f0d368-a05f-468d-8d6c-c75acc17f224",
   "eventType":"DATA",
   "eventStatus":"DATA_READY",
   "consentId":"bf0cda0b-776c-4104-a4f8-5bcd69764125",
   "vua":"9999999999@onemoney",
   "eventMessage":"Data ready for consent id bf0cda0b-776c-4104-a4f8-5bcd69764125",
   "linkRefNumbers":[
      {
         "linkRefNumber":"e7597a05-5b56-4223-95fc3f-9596ff12eb",
         "fiStatus":"READY"
      }
   ]
}
DATA_READY – TYPE 2
{
   "timestamp":"2023-03-10T06:26:10.823Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"DATA",
   "eventStatus":"DATA_READY",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Data ready for consent id 3c92001e-57ea-4320-bbb8-66d524bfb435",
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13",
   "dataExpiry":"2023-04-10T06:26:10.000Z",
   "firstTimeFetch":true,
   "linkRefNumbers":[
      {
         "linkRefNumber":"70814726-f02e-4db4-b380-df8d28ec6772",
         "fiStatus":"READY",
         "fipName":"FinShareBankServer",
         "fipId":"finsharebank",
         "maskedAccountNumber":"XXXXXXXX7300"
      }
   ]
}
CONSENT_PAUSED – TYPE 1
{
   "timestamp":"2022-03-08T12:24:40.836Z",
   "consentHandle":"c7f0d368-a05f-468d-8d6c-c75acc17f224",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_PAUSED",
   "consentId":"bf0cda0b-776c-4104-a4f8-5bcd69764125",
   "vua":"9999999999@onemoney",
   "eventMessage":"Consent paused for consent id bf0cda0b-776c-4104-a4f8-5bcd69764125"
}
CONSENT_PAUSED – TYPE 2
{
   "timestamp":"2023-03-10T06:29:11.246Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_PAUSED",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Consent paused for consent id 3c92001e-57ea-4320-bbb8-66d524bfb435",
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13"
}
CONSENT_RESUMED – TYPE 1
{
   "timestamp":"2022-03-08T12:25:18.377Z",
   "consentHandle":"c7f0d368-a05f-468d-8d6c-c75acc17f224",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_RESUMED",
   "consentId":"bf0cda0b-776c-4104-a4f8-5bcd69764125",
   "vua":"9999999999@onemoney",
   "eventMessage":"Consent reactivated for consent id bf0cda0b-776c-4104-a4f8-5bcd69764125"
}
CONSENT_RESUMED – TYPE 2
{
   "timestamp":"2023-03-10T06:29:49.212Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_RESUMED",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Consent reactivated for consent id 3c92001e-57ea-4320-bbb8-66d524bfb435",
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13"
}
CONSENT_REVOKED – TYPE 1
{
   "timestamp":"2022-03-08T12:25:55.476Z",
   "consentHandle":"c7f0d368-a05f-468d-8d6c-c75acc17f224",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_REVOKED",
   "consentId":"bf0cda0b-776c-4104-a4f8-5bcd69764125",
   "vua":"9999999999@onemoney",
   "eventMessage":"Consent revoked for consent id bf0cda0b-776c-4104-a4f8-5bcd69764125"
}
CONSENT_REVOKED – TYPE 2
{
   "timestamp":"2023-03-10T06:31:49.092Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_REVOKED",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXX773@onemoney",
   "eventMessage":"Consent revoked for consent id 3c92001e-57ea-4320-bbb8-66d524bfb435",
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13"
}
CONSENT_REJECTED – TYPE 1
{
  "timestamp": "2020-12-18T09:58:12.162Z",
  "consentHandle": "26a9b8a5-9396-47d5-a37e-b09b95740337",
  "eventType": "CONSENT",
  "eventStatus": "CONSENT_REJECTED",
  "consentId": "<NULL>",
  "eventMessage": "Consent rejected for consent id <NULL>"
}
CONSENT_REJECTED – TYPE 2
{
   "timestamp":"2023-03-10T07:06:51.513Z",
   "consentHandle":"b3bf17ec-9431-4def-be7d-48cffe2ef491",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_REJECTED",
   "consentId":"",
   "vua":"7730808773@onemoney",
   "eventMessage":"Consent is rejected",
   "productID":"AGENT",
   "accountID":"AGENT1678431946347",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 07:05:51"
}
SESSION_FAILED – TYPE 1
{
   "timestamp":"2022-04-07T07:28:37.485Z",
   "consentHandle":"995bad77-a003-402e-9b0d-8602c4069ef7",
   "eventType":"DATA",
   "eventStatus":"SESSION_FAILED",
   "consentId":"48ecb1ed-3256-463f-b9a9-7936a1bb6f79",
   "vua":"9999999999@onemoney",
   "eventMessage":"Data fetch failed for consent id 48ecb1ed-3256-463f-b9a9-7936a1bb6f79",
   "linkRefNumbers":[
      {
         "linkRefNumber":"5845ad3b-ae9d-435b-99fb-cc7462300706",
         "fiStatus":"TIMEOUT"
      }
   ]
}
SESSION_FAILED – TYPE 2
{
   "timestamp": "2023-09-28T06: 38: 37.886Z",
   "consentHandle": "f18714e0-001b-44ac-8c85-c3162c434516",
   "eventType": "DATA",
   "eventStatus": "SESSION_FAILED",
   "consentId": "59994ced-2620-4b12-9bd8-35025588887c",
   "vua": "9999999999@onemoney",
   "eventMessage": "Data fetch failed for consent id 59994ced-2620-4b12-9bd8-35025588887c",
  "productID": "TESTP",
  "accountID": "TESTP1695813566525",
  "fetchType": "PERIODIC",
  "consentExpiry": "2024-09-27 11: 19: 34",
  "dataExpiry": "2023-09-28T11: 22: 12.000Z",
  "sessionId": "728714aa-4fe3-430a-bd26-796ceea3de7d",
  "linkRefNumbers": [
     {
	"linkRefNumber": "cfe39ed2-0b92-4720-98a7-ffe03e3fbc13",
	"fiStatus": "TIMEOUT",
	"fipName": "FinShareBankServer",
	"fipId": "finsharebank",
	"maskedAccountNumber": "XXXXXXXX0600"
     }
   ]
}
SESSION_EXPIRED – TYPE 1
{
   "timestamp":"2021-04-23T13:08:01.514Z",
   "consentHandle":"825da2f2-ae80-469b-b69b-6fb428107500",
   "eventType":"DATA",
   "eventStatus":"SESSION_EXPIRED",
   "consentId":"91a2bb4c-8197-42c5-8de3-4ba02c16196d",
   "vua":"9999999999@onemoney",
   "eventMessage":"Data fetch expired for consent id 91a2bb4c-8197-42c5-8de3-4ba02c16196d"
}
CONSENT_EXPIRED – TYPE 1
{
  "timestamp": "2022-03-31T04:38:22.720Z",
  "consentHandle": "b600d92b-36ba-45d3-a42a-5fac53fabe87",
  "eventType": "CONSENT",
  "eventStatus": "CONSENT_EXPIRED",
  "consentId": "6d867fc2-24bd-4b89-b9fe-fefbb076cbd2",
  "vua": "9999999999@onemoney",
  "eventMessage": "Consent expired for consent id 6d867fc2-24bd-4b89-b9fe-fefbb076cbd2"
}
CONSENT_EXPIRED – TYPE 2
{
   "timestamp":"2023-03-11 07:09:51",
   "consentHandle":"3b14393a-ccb7-4df9-aad4-01634c909e45",
   "eventType":"CONSENT",
   "eventStatus":"CONSENT_EXPIRED",
   "consentId":"37c176a2-85a2-49df-924f-69ebb74df7a2",
   "vua":"XXXXXX499@onemoney",
   "eventMessage":"Consent expired for consent id 37c176a2-85a2-49df-924f-69ebb74df7a2",
   "productID":"RGS0002",
   "accountID":"888",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 07:09:51"
}
DATA_DENIED – TYPE 1
{
   "timestamp":"2022-04-07T06:33:28.592Z",
   "consentHandle":"91c1cc00-e98b-4ee1-8b69-5afbae03f6b3",
   "eventType":"DATA",
   "eventStatus":"DATA_DENIED",
   "consentId":"2f93c7f3-5fc5-479c-bea2-dfdac731b159",
   "vua":"9999999999@onemoney",
   "eventMessage":"Data denied for consent id 2f93c7f3-5fc5-479c-bea2-dfdac731b159",
   "linkRefNumbers":[
      {
         "linkRefNumber":"efc18641-62c1-4706-a84c-dd86ea87f528",
         "fiStatus":"DENIED"
      }
   ]
}
DATA_DENIED – TYPE 2
{
   "timestamp":"2023-02-23T12:26:28.548Z",
   "consentHandle":"60ff809a-61b6-4959-bb4a-81cb44ac1f51",
   "eventType":"DATA",
   "eventStatus":"DATA_DENIED",
   "consentId":"d2277986-a5cc-42c2-89cd-b8f4018dc309",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Data denied for consent id d2277986-a5cc-42c2-89cd-b8f4018dc309",
   "productID":"TESTONFEB17",
   "accountID":"1234",
   "fetchType":"PERIODIC",
   "consentExpiry":"2023-02-25 12:14:41",
   "dataExpiry":"",
   "linkRefNumbers":[
      {
         "linkRefNumber":"65a13110-d1db-4703-960b-39f7e02e7b23",
         "fiStatus":"DENIED",
         "fipName":"FinShareBankServer",
         "fipId":"finsharebank",
         "maskedAccountNumber":"XXXXXXXX7300"
      },
      {
         "linkRefNumber":"65a13110-d1db-4703-960b-39f7e02e7b23",
         "fiStatus":"DENIED",
         "fipName":"FinShareBankServer",
         "fipId":"finsharebank",
         "maskedAccountNumber":"XXXXXXXX7300"
      }
   ]
}
DATA_PUSH – TYPE 1
{{
   "timestamp":"2022-04-07T06:10:17.129Z",
   "consentHandle":"7793263e-ab71-4343-8f31-e7e695f4a3d1",
   "eventType":"DATA_EXT",
   "eventStatus":"DATA_PUSH",
   "consentId":"bd740c63-70a3-415a-944f-fc6b16e2c55f",
   "vua":"7730808773@onemoney",
   "eventMessage":"Data push for consent idbd740c63-70a3-415a-944f-fc6b16e2c55f",
   "data":[
      {
         "linkReferenceNumber":"b520384b-7174-4951-98cf-b09574266e61",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"RECURRING_DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "branch":"JayaNagar 4th Block",
            "openingDate":null,
            "ifsc":"ICIC0001124",
            "accountType":"RECURRING",
            "maturityAmount":"61693.00",
            "maturityDate":null,
            "description":"12 Months Recurring Deposit",
            "interestPayout":"OnMaturity",
            "interestRate":"5.15",
            "principalAmount":"5000.00",
            "tenureDays":"0",
            "tenureMonths":"12",
            "tenureYears":"0",
            "recurringAmount":"5000.00",
            "recurringDepositDay":"22",
            "interestComputation":"COMPOUND",
            "compoundingFrequency":"MONTHLY",
            "interestPeriodicPayoutAmount":"0",
            "interestOnMaturity":"1693",
            "currentValue":"35000.00"
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Akshay Kumar",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"",
                     "address":"8/1190, 5th Cross, 3rd Main, 7th Block, Jayanagar, Bangalore - 560011",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"5000.00",
                  "transactionDateTime":"2019-12-22T04:53:45.000Z",
                  "valueDate":"2019-12-22T04:53:45.000Z",
                  "txnId":"M2587459",
                  "narration":"TOWARDS RD OPENING",
                  "reference":"RFN0001338754"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"10000.00",
                  "transactionDateTime":"2020-01-22T04:53:45.000Z",
                  "valueDate":"2020-01-22T04:53:45.000Z",
                  "txnId":"M5874125",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0001587864"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"15000.00",
                  "transactionDateTime":"2020-02-22T04:53:45.000Z",
                  "valueDate":"2020-02-22T04:53:45.000Z",
                  "txnId":"M9160791",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0001836974"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"20000.00",
                  "transactionDateTime":"2020-03-22T04:53:45.000Z",
                  "valueDate":"2020-03-22T04:53:45.000Z",
                  "txnId":"M12447457",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002086084"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"25000.00",
                  "transactionDateTime":"2020-04-22T04:53:45.000Z",
                  "valueDate":"2020-04-22T04:53:45.000Z",
                  "txnId":"M15734123",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002335194"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"30000.00",
                  "transactionDateTime":"2020-05-22T04:53:45.000Z",
                  "valueDate":"2020-05-22T04:53:45.000Z",
                  "txnId":"M19020789",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002584304"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2020-06-22T04:53:45.000Z",
                  "valueDate":"2020-06-22T04:53:45.000Z",
                  "txnId":"M22307455",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002833414"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-01-01T04:53:45.000Z",
                  "valueDate":"2021-01-01T04:53:45.000Z",
                  "txnId":"M223074551",
                  "narration":"TOWARDS RD INSTALLMENT for month 1",
                  "reference":"RFN00028334141"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-02-02T04:53:45.000Z",
                  "valueDate":"2021-02-02T04:53:45.000Z",
                  "txnId":"M223074552",
                  "narration":"TOWARDS RD INSTALLMENT for month 2",
                  "reference":"RFN00028334142"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-03-03T04:53:45.000Z",
                  "valueDate":"2021-03-03T04:53:45.000Z",
                  "txnId":"M223074553",
                  "narration":"TOWARDS RD INSTALLMENT for month 3",
                  "reference":"RFN00028334143"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-04-04T04:53:45.000Z",
                  "valueDate":"2021-04-04T04:53:45.000Z",
                  "txnId":"M223074554",
                  "narration":"TOWARDS RD INSTALLMENT for month 4",
                  "reference":"RFN00028334144"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-05-05T04:53:45.000Z",
                  "valueDate":"2021-05-05T04:53:45.000Z",
                  "txnId":"M223074555",
                  "narration":"TOWARDS RD INSTALLMENT for month 5",
                  "reference":"RFN00028334145"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-06-06T04:53:45.000Z",
                  "valueDate":"2021-06-06T04:53:45.000Z",
                  "txnId":"M223074556",
                  "narration":"TOWARDS RD INSTALLMENT for month 6",
                  "reference":"RFN00028334146"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-07-07T04:53:45.000Z",
                  "valueDate":"2021-07-07T04:53:45.000Z",
                  "txnId":"M223074557",
                  "narration":"TOWARDS RD INSTALLMENT for month 7",
                  "reference":"RFN00028334147"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-08-08T04:53:45.000Z",
                  "valueDate":"2021-08-08T04:53:45.000Z",
                  "txnId":"M223074558",
                  "narration":"TOWARDS RD INSTALLMENT for month 8",
                  "reference":"RFN00028334148"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-09-09T04:53:45.000Z",
                  "valueDate":"2021-09-09T04:53:45.000Z",
                  "txnId":"M223074559",
                  "narration":"TOWARDS RD INSTALLMENT for month 9",
                  "reference":"RFN00028334149"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-10-10T04:53:45.000Z",
                  "valueDate":"2021-10-10T04:53:45.000Z",
                  "txnId":"M2230745510",
                  "narration":"TOWARDS RD INSTALLMENT for month 10",
                  "reference":"RFN000283341410"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-11-11T04:53:45.000Z",
                  "valueDate":"2021-11-11T04:53:45.000Z",
                  "txnId":"M2230745511",
                  "narration":"TOWARDS RD INSTALLMENT for month 11",
                  "reference":"RFN000283341411"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-12-12T04:53:45.000Z",
                  "valueDate":"2021-12-12T04:53:45.000Z",
                  "txnId":"M2230745512",
                  "narration":"TOWARDS RD INSTALLMENT for month 12",
                  "reference":"RFN000283341412"
               }
            ]
         }
      },
      {
         "linkReferenceNumber":"f827f14d-81ad-4bf7-b0b9-4d09f510e748",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"TERM_DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "branch":"Jayanagar 4th Block",
            "openingDate":"2019-12-22",
            "ifsc":"ICIC0001124",
            "accountType":"FIXED",
            "maturityDate":"2021-01-16",
            "maturityAmount":"105622.00",
            "description":"390 Days Cumulative Term Deposit ",
            "interestPayout":"OnMaturity",
            "interestRate":"5.15",
            "principalAmount":"100000.00",
            "tenureDays":"390",
            "tenureMonths":"0",
            "tenureYears":"0",
            "interestComputation":"COMPOUND",
            "compoundingFrequency":"QUARTERLY",
            "interestPeriodicPayoutAmount":"0",
            "interestOnMaturity":"5622",
            "currentValue":"100000.00"
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Mr. SANKET  SALVI",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"08942-223322",
                     "address":"ADD1001242",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2019-12-22T05:04:14.000Z",
                  "valueDate":"2019-12-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD OPENING",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-01-22T05:04:14.000Z",
                  "valueDate":"2020-01-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-03-22T05:04:14.000Z",
                  "valueDate":"2020-03-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-03-22T05:04:14.000Z",
                  "valueDate":"2020-03-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-06-22T05:04:14.000Z",
                  "valueDate":"2020-06-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-07-22T05:04:14.000Z",
                  "valueDate":"2020-07-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-08-22T05:04:14.000Z",
                  "valueDate":"2020-08-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-09-22T05:04:14.000Z",
                  "valueDate":"2020-09-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-10-22T05:04:14.000Z",
                  "valueDate":"2020-10-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-01-01T05:04:14.000Z",
                  "valueDate":"2021-01-01T00:00:00.000Z",
                  "txnId":"M47854351",
                  "narration":"TOWARDS FD for Month 1",
                  "reference":"RFN0001338301"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-02-02T05:04:14.000Z",
                  "valueDate":"2021-02-02T00:00:00.000Z",
                  "txnId":"M47854352",
                  "narration":"TOWARDS FD for Month 2",
                  "reference":"RFN0001338302"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-03-03T05:04:14.000Z",
                  "valueDate":"2021-03-03T00:00:00.000Z",
                  "txnId":"M47854353",
                  "narration":"TOWARDS FD for Month 3",
                  "reference":"RFN0001338303"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-04-04T05:04:14.000Z",
                  "valueDate":"2021-04-04T00:00:00.000Z",
                  "txnId":"M47854354",
                  "narration":"TOWARDS FD for Month 4",
                  "reference":"RFN0001338304"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-05-05T05:04:14.000Z",
                  "valueDate":"2021-05-05T00:00:00.000Z",
                  "txnId":"M47854355",
                  "narration":"TOWARDS FD for Month 5",
                  "reference":"RFN0001338305"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-06-06T05:04:14.000Z",
                  "valueDate":"2021-06-06T00:00:00.000Z",
                  "txnId":"M47854356",
                  "narration":"TOWARDS FD for Month 6",
                  "reference":"RFN0001338306"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-07-07T05:04:14.000Z",
                  "valueDate":"2021-07-07T00:00:00.000Z",
                  "txnId":"M47854357",
                  "narration":"TOWARDS FD for Month 7",
                  "reference":"RFN0001338307"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-08-08T05:04:14.000Z",
                  "valueDate":"2021-08-08T00:00:00.000Z",
                  "txnId":"M47854358",
                  "narration":"TOWARDS FD for Month 8",
                  "reference":"RFN0001338308"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-09-09T05:04:14.000Z",
                  "valueDate":"2021-09-09T00:00:00.000Z",
                  "txnId":"M47854359",
                  "narration":"TOWARDS FD for Month 9",
                  "reference":"RFN0001338309"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-10-10T05:04:14.000Z",
                  "valueDate":"2021-10-10T00:00:00.000Z",
                  "txnId":"M478543510",
                  "narration":"TOWARDS FD for Month 10",
                  "reference":"RFN00013383010"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-11-11T05:04:14.000Z",
                  "valueDate":"2021-11-11T00:00:00.000Z",
                  "txnId":"M478543511",
                  "narration":"TOWARDS FD for Month 11",
                  "reference":"RFN00013383011"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-12-01T05:04:14.000Z",
                  "valueDate":"2021-12-01T00:00:00.000Z",
                  "txnId":"M478543512",
                  "narration":"TOWARDS FD for Month 12",
                  "reference":"RFN00013383012"
               }
            ]
         }
      },
      {
         "linkReferenceNumber":"c56417f7-6d96-46f9-a03a-34b3d77c4fc9",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "currentBalance":"101666.33",
            "currency":"INR",
            "exchgeRate":" ",
            "balanceDateTime":"2020-06-22T07:50:00.000Z",
            "type":"SAVINGS",
            "branch":"Jayanagar 4th Block",
            "facility":"OD",
            "ifscCode":"ICIC0001124",
            "micrCode":"500240246",
            "openingDate":"2004-08-06",
            "currentODLimit":"0",
            "drawingLimit":"0",
            "status":"ACTIVE",
            "Pending":[
               {
                  "amount":0,
                  "transactionType":"DEBIT"
               }
            ]
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Akshay Kumar",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"",
                     "address":"8/1190, 5th Cross, 3rd Main, 7th Block, Jayanagar, Bangalore - 560011",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1239.00",
                  "currentBalance":"62289.25",
                  "transactionTimestamp":"2019-12-19T07:50:14.000Z",
                  "valueDate":"2019-12-19",
                  "txnId":"M3258741",
                  "narration":"UPI/935314560764/getsimpl/simpl@axisbank/Axis Bank",
                  "reference":"RFN00013383"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"16.00",
                  "currentBalance":"62073.25",
                  "transactionTimestamp":"2019-12-20T13:26:12.000Z",
                  "valueDate":"2019-12-20",
                  "txnId":"M3917183",
                  "narration":"UPI/935418465214/On tapping Pay/AMZN0002966107@/St",
                  "reference":"RFN00038195"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1432.00",
                  "currentBalance":"60641.25",
                  "transactionTimestamp":"2019-12-21T03:44:47.000Z",
                  "valueDate":"2019-12-21",
                  "txnId":"M4246404",
                  "narration":"UPI/935511799557/On tapping Pay/ola.money1@axis/Ax",
                  "reference":"RFN00050601"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"710.50",
                  "currentBalance":"45595.49",
                  "transactionTimestamp":"2019-12-21T10:39:04.000Z",
                  "valueDate":"2019-12-21",
                  "txnId":"M5563288",
                  "narration":"VIN/BBBP Bengal/201912220356/935522425140/ ",
                  "reference":"RFN00100225"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"4101.00",
                  "currentBalance":"41494.49",
                  "transactionTimestamp":"2019-12-22T04:44:59.000Z",
                  "valueDate":"2019-12-22",
                  "txnId":"M5892509",
                  "narration":"BIL/ONL/001876585007/State Bank/SBICARD_RICI833/SB",
                  "reference":"RFN00112631"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"200.00",
                  "currentBalance":"41294.49",
                  "transactionTimestamp":"2019-12-22T04:48:12.000Z",
                  "valueDate":"2019-12-22",
                  "txnId":"M6221730",
                  "narration":"GIB/000044233050/STAX /63900042212201900058 ",
                  "reference":"RFN00125037"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"31294.49",
                  "transactionTimestamp":"2019-12-25T06:04:44.000Z",
                  "valueDate":"2019-12-25",
                  "txnId":"M6550951",
                  "narration":"ATM/SECNQ998/CASH WDL/25-12-19 ",
                  "reference":"RFN00137443"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"29156.49",
                  "transactionTimestamp":"2019-12-30T03:01:47.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M6880172",
                  "narration":"ACH/TP Kotak Life Ins/1791288292 ",
                  "reference":"RFN00149849"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"330.00",
                  "currentBalance":"28826.49",
                  "transactionTimestamp":"2019-12-30T04:26:44.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M7209393",
                  "narration":"VIN/SWIGGY /201912301322/936407439400/ ",
                  "reference":"RFN00162255"
               },
               {
                  "type":"CREDIT",
                  "mode":"OTHERS",
                  "amount":"518.00",
                  "currentBalance":"27228.49",
                  "transactionTimestamp":"2019-12-30T07:45:04.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M7867835",
                  "narration":"000501523329:Int.Pd:30-09-2019 to 30-12-2019 ",
                  "reference":"RFN00187067"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2097.44",
                  "currentBalance":"24769.05",
                  "transactionTimestamp":"2020-01-01T11:06:47.000Z",
                  "valueDate":"2020-01-01",
                  "txnId":"M8526277",
                  "narration":"VIN/IRCTC /202001012059/000115145689/ ",
                  "reference":"RFN00211879"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"22576.5",
                  "transactionTimestamp":"2020-01-03T05:22:51.000Z",
                  "valueDate":"2020-01-03",
                  "txnId":"M9513940",
                  "narration":"ACH/TP ExideLife/INGLife/1793513439 ",
                  "reference":"RFN00249097"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"1297.00",
                  "currentBalance":"21193.5",
                  "transactionTimestamp":"2020-01-04T19:43:17.000Z",
                  "valueDate":"2020-01-05",
                  "txnId":"M10501603",
                  "narration":"VPS/SWATHI HOSP/202001051605/000510633940/BANGALOR",
                  "reference":"RFN00286315"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"16176.5",
                  "transactionTimestamp":"2020-01-04T20:32:25.000Z",
                  "valueDate":"2020-01-05",
                  "txnId":"M11160045",
                  "narration":"NFS/KBL18213/CASH WDL/05-01-20 ",
                  "reference":"RFN00311127"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"11176.5",
                  "transactionTimestamp":"2020-01-06T17:41:18.000Z",
                  "valueDate":"2020-01-06",
                  "txnId":"M11489266",
                  "narration":"BIL/BPAY/001888932102/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00323533"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"6176.5",
                  "transactionTimestamp":"2020-01-07T00:52:27.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M11818487",
                  "narration":"BIL/BPAY/001889944243/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00335939"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"1176.5",
                  "transactionTimestamp":"2020-01-07T01:53:34.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M12147708",
                  "narration":"BIL/BPAY/001889918950/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN00348345"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3062.00",
                  "currentBalance":"3114.5",
                  "transactionTimestamp":"2020-01-07T14:55:32.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M12806150",
                  "narration":"CMS/000599599606/AD_LIC__648652702 ",
                  "reference":"RFN00373157"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"464.00",
                  "currentBalance":"31916.5",
                  "transactionTimestamp":"2020-01-09T01:23:11.000Z",
                  "valueDate":"2020-01-09",
                  "txnId":"M14452255",
                  "narration":"VIN/DISH TV IND/202001091516/000909100480/ ",
                  "reference":"RFN00435187"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"81916.5",
                  "transactionTimestamp":"2020-01-09T01:31:17.000Z",
                  "valueDate":"2020-01-09",
                  "txnId":"M14781476",
                  "narration":"BIL/INFT/001892335260/ ",
                  "reference":"RFN00447593"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"51916.5",
                  "transactionTimestamp":"2020-01-10T02:41:17.000Z",
                  "valueDate":"2020-01-10",
                  "txnId":"M15110697",
                  "narration":"ACH/HDFCLTD/245261499 ",
                  "reference":"RFN00459999"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"935.18",
                  "currentBalance":"50981.32",
                  "transactionTimestamp":"2020-01-10T02:44:13.000Z",
                  "valueDate":"2020-01-10",
                  "txnId":"M15439918",
                  "narration":"VPS/AIRPLAZA RE/202001110253/001021150009/BANGALOR",
                  "reference":"RFN00472405"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"540.00",
                  "currentBalance":"50441.32",
                  "transactionTimestamp":"2020-01-11T17:37:17.000Z",
                  "valueDate":"2020-01-11",
                  "txnId":"M15769139",
                  "narration":"IPS/SAI SARVANA/202001112152/000000000526/BANGALOR",
                  "reference":"RFN00484811"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"50.00",
                  "currentBalance":"50391.32",
                  "transactionTimestamp":"2020-01-11T18:42:22.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16098360",
                  "narration":"UPI/001210722616/Collect/resident.uidai./HDFC BANK",
                  "reference":"RFN00497217"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"200391.32",
                  "transactionTimestamp":"2020-01-11T18:55:16.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16427581",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS DEC 2019",
                  "reference":"RFN00509623"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"150391.32",
                  "transactionTimestamp":"2020-01-11T19:03:36.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16756802",
                  "narration":"BIL/INFT/001894593460/ ",
                  "reference":"RFN00522029"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"138391.32",
                  "transactionTimestamp":"2020-01-11T19:15:47.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M17086023",
                  "narration":"MMT/IMPS/001211772937/Car Loan EMI/AKSHAY KUMAR /SBIN",
                  "reference":"RFN00534435"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12600.00",
                  "currentBalance":"125791.32",
                  "transactionTimestamp":"2020-01-11T19:31:57.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M17415244",
                  "narration":"MMT/IMPS/001211775491/Rent Jan 2020/SAILAKSHMI/HDF",
                  "reference":"RFN00546841"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"24827.00",
                  "currentBalance":"98564.32",
                  "transactionTimestamp":"2020-01-11T19:56:54.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M18073686",
                  "narration":"MMT/IMPS/001212834904/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN00571653"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"86051.82",
                  "transactionTimestamp":"2020-01-11T20:25:33.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M19390570",
                  "narration":"ATM/SPCND430/CASH WDL/12-01-20 ",
                  "reference":"RFN00621277"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1000.00",
                  "currentBalance":"84991.82",
                  "transactionTimestamp":"2020-01-15T11:40:10.000Z",
                  "valueDate":"2020-01-15",
                  "txnId":"M20049012",
                  "narration":"UPI/001520932727/Easebuzz/easebuzz.nbfc@h/HDFC BAN",
                  "reference":"RFN00646089"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"280.00",
                  "currentBalance":"84691.82",
                  "transactionTimestamp":"2020-01-17T15:50:33.000Z",
                  "valueDate":"2020-01-17",
                  "txnId":"M20707454",
                  "narration":"VPS/SRI MANJUNA/202001180407/001722830111/BANGALOR",
                  "reference":"RFN00670901"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"881.06",
                  "currentBalance":"83760.759999999995",
                  "transactionTimestamp":"2020-01-18T16:44:23.000Z",
                  "valueDate":"2020-01-18",
                  "txnId":"M21365896",
                  "narration":"VIN/Bigtree Ent/202001181624/001821423259/ ",
                  "reference":"RFN00695713"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"66926.759999999995",
                  "transactionTimestamp":"2020-01-24T13:44:23.000Z",
                  "valueDate":"2020-01-24",
                  "txnId":"M23341222",
                  "narration":"NFS/40782067/CASH WDL/21-01-20 ",
                  "reference":"RFN00770149"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"3041.91",
                  "currentBalance":"63394.85",
                  "transactionTimestamp":"2020-01-26T13:48:44.000Z",
                  "valueDate":"2020-01-26",
                  "txnId":"M24328885",
                  "narration":"IPS/BIG BAZAAR /202001252118/000000023015/BANGALOR",
                  "reference":"RFN00807367"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"203.00",
                  "currentBalance":"63191.85",
                  "transactionTimestamp":"2020-01-28T06:42:33.000Z",
                  "valueDate":"2020-01-28",
                  "txnId":"M24658106",
                  "narration":"UPI/002611196768/On tapping Pay/freshmenu@ybl/Yes ",
                  "reference":"RFN00819773"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61053.85",
                  "transactionTimestamp":"2020-01-30T08:55:46.000Z",
                  "valueDate":"2020-01-30",
                  "txnId":"M24987327",
                  "narration":"ACH/TP Kotak Life Ins/1800525191 ",
                  "reference":"RFN00832179"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"300.00",
                  "currentBalance":"60728.85",
                  "transactionTimestamp":"2020-01-31T09:13:19.000Z",
                  "valueDate":"2020-01-31",
                  "txnId":"M25645769",
                  "narration":"VPS/PREMIER SER/202001302249/003017151561/BANGALOR",
                  "reference":"RFN00856991"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"980.00",
                  "currentBalance":"59748.85",
                  "transactionTimestamp":"2020-01-31T10:21:44.000Z",
                  "valueDate":"2020-01-31",
                  "txnId":"M25974990",
                  "narration":"UPI/003122708332/On tapping Pay/Q30019000@ybl/ICIC",
                  "reference":"RFN00869397"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"20.00",
                  "currentBalance":"59728.85",
                  "transactionTimestamp":"2020-02-01T04:40:36.000Z",
                  "valueDate":"2020-02-01",
                  "txnId":"M26304211",
                  "narration":"UPI/003157736639/On tapping Pay/BHARATPE.904135/IC",
                  "reference":"RFN00881803"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"54568.85",
                  "transactionTimestamp":"2020-02-02T03:44:35.000Z",
                  "valueDate":"2020-02-02",
                  "txnId":"M26962653",
                  "narration":"NFS/SWCW5580/CASH WDL/01-02-20 ",
                  "reference":"RFN00906615"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5266.26",
                  "currentBalance":"49302.59",
                  "transactionTimestamp":"2020-02-02T05:48:49.000Z",
                  "valueDate":"2020-02-02",
                  "txnId":"M27291874",
                  "narration":"BIL/INFT/001910188793/ICICI CC PMT/Self ",
                  "reference":"RFN00919021"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"833.00",
                  "currentBalance":"48469.59",
                  "transactionTimestamp":"2020-02-03T05:59:56.000Z",
                  "valueDate":"2020-02-03",
                  "txnId":"M27621095",
                  "narration":"BIL/ONL/001910495836/State Bank/SBICARD_RICI848/SB",
                  "reference":"RFN00931427"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"46295.040000000001",
                  "transactionTimestamp":"2020-02-03T06:25:55.000Z",
                  "valueDate":"2020-02-03",
                  "txnId":"M28279537",
                  "narration":"ACH/TP ExideLife/INGLife/1802506498 ",
                  "reference":"RFN00956239"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"399.00",
                  "currentBalance":"45898.29",
                  "transactionTimestamp":"2020-02-05T05:48:49.000Z",
                  "valueDate":"2020-02-05",
                  "txnId":"M28937979",
                  "narration":"VPS/SWATHI HOSP/202002041509/003509590219/BANGALOR",
                  "reference":"RFN00981051"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"40898.29",
                  "transactionTimestamp":"2020-02-05T06:52:32.000Z",
                  "valueDate":"2020-02-05",
                  "txnId":"M29267200",
                  "narration":"BIL/BPAY/001913373631/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00993457"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"30898.29",
                  "transactionTimestamp":"2020-02-07T11:03:47.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M29596421",
                  "narration":"NFS/40782067/CASH WDL/05-02-20 ",
                  "reference":"RFN01005863"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"25898.29",
                  "transactionTimestamp":"2020-02-07T11:08:17.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M29925642",
                  "narration":"BIL/BPAY/001915367034/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN01018269"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"20898.29",
                  "transactionTimestamp":"2020-02-07T11:09:55.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M30254863",
                  "narration":"BIL/BPAY/001915358808/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01030675"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3062.00",
                  "currentBalance":"17836.29",
                  "transactionTimestamp":"2020-02-08T07:44:47.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M30584084",
                  "narration":"CMS/000611711611/AD_LIC__648652702 ",
                  "reference":"RFN01043081"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"464.00",
                  "currentBalance":"17372.29",
                  "transactionTimestamp":"2020-02-08T08:58:54.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M30913305",
                  "narration":"BIL/ONL/001916614369/Dish Infra/109767039469-10/DI",
                  "reference":"RFN01055487"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"100.00",
                  "currentBalance":"17272.29",
                  "transactionTimestamp":"2020-02-08T10:28:12.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31242526",
                  "narration":"BIL/ONL/001916723481/Bharti Air/airtel11karprep/Ai",
                  "reference":"RFN01067893"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"167272.29",
                  "transactionTimestamp":"2020-02-08T10:39:24.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31571747",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS JAN 2020",
                  "reference":"RFN01080299"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"155272.29",
                  "transactionTimestamp":"2020-02-08T11:44:23.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31900968",
                  "narration":"MMT/IMPS/003917379724/Twds Car EMI/AKSHAY KUMAR /SBIN",
                  "reference":"RFN01092705"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"140272.29",
                  "transactionTimestamp":"2020-02-08T13:02:05.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M32230189",
                  "narration":"MMT/IMPS/003917381129/Rent Feb 2020/SAILAKSHMI/HDF",
                  "reference":"RFN01105111"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"9095.00",
                  "currentBalance":"131177.29",
                  "transactionTimestamp":"2020-02-08T13:50:21.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M32559410",
                  "narration":"MMT/IMPS/003917401747/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN01117517"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"2656.00",
                  "currentBalance":"121058.29",
                  "transactionTimestamp":"2020-02-09T18:41:01.000Z",
                  "valueDate":"2020-02-10",
                  "txnId":"M34205515",
                  "narration":"VPS/UTH FASHION/202002092044/004015649751/BANGALOR",
                  "reference":"RFN01179547"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"91058.29",
                  "transactionTimestamp":"2020-02-09T19:32:09.000Z",
                  "valueDate":"2020-02-10",
                  "txnId":"M34534736",
                  "narration":"ACH/HDFCLTD/247295911 ",
                  "reference":"RFN01191953"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"2187.00",
                  "currentBalance":"87500.29",
                  "transactionTimestamp":"2020-02-12T21:41:12.000Z",
                  "valueDate":"2020-02-13",
                  "txnId":"M35193178",
                  "narration":"VPS/LEVITATE BR/202002112208/004216049503/BANGALOR",
                  "reference":"RFN01216765"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"300.00",
                  "currentBalance":"87200.29",
                  "transactionTimestamp":"2020-02-13T22:45:43.000Z",
                  "valueDate":"2020-02-14",
                  "txnId":"M35522399",
                  "narration":"NFS/01626621/CASH WDL/13-02-20 ",
                  "reference":"RFN01229171"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"20000.71",
                  "currentBalance":"67005.58",
                  "transactionTimestamp":"2020-02-16T00:47:36.000Z",
                  "valueDate":"2020-02-16",
                  "txnId":"M36180841",
                  "narration":"BIL/ONL/001922566340/NPS Trust/XBCMFNPS_RICI85/NPS",
                  "reference":"RFN01253983"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"18.00",
                  "currentBalance":"65107.58",
                  "transactionTimestamp":"2020-02-19T05:44:44.000Z",
                  "valueDate":"2020-02-19",
                  "txnId":"M37826946",
                  "narration":"UPI/004928011116/On tapping Pay/Q46323859@ybl/Unio",
                  "reference":"RFN01316013"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"165.00",
                  "currentBalance":"64574.58",
                  "transactionTimestamp":"2020-02-21T07:23:13.000Z",
                  "valueDate":"2020-02-21",
                  "txnId":"M39143830",
                  "narration":"VPS/MARIYA MART/202002212105/005215700989/BENGALUR",
                  "reference":"RFN01365637"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"53509.58",
                  "transactionTimestamp":"2020-02-22T07:59:47.000Z",
                  "valueDate":"2020-02-22",
                  "txnId":"M39802272",
                  "narration":"NFS/SWCW5580/CASH WDL/22-02-20 ",
                  "reference":"RFN01390449"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"928.55",
                  "currentBalance":"52581.03",
                  "transactionTimestamp":"2020-02-22T08:00:11.000Z",
                  "valueDate":"2020-02-22",
                  "txnId":"M40131493",
                  "narration":"UPI/005321449659/Zomato payment/zomato-order@pa/Pa",
                  "reference":"RFN01402855"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"496.00",
                  "currentBalance":"52090.03",
                  "transactionTimestamp":"2020-02-27T09:42:02.000Z",
                  "valueDate":"2020-02-27",
                  "txnId":"M40789935",
                  "narration":"VIN/WWW OLACABS/202002261039/005705021876/ ",
                  "reference":"RFN01427667"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"170.00",
                  "currentBalance":"51920.03",
                  "transactionTimestamp":"2020-02-28T11:06:19.000Z",
                  "valueDate":"2020-02-28",
                  "txnId":"M41119156",
                  "narration":"VPS/ROLLS ON WH/202002271409/005808024752/BANGALOR",
                  "reference":"RFN01440073"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"49712.03",
                  "transactionTimestamp":"2020-02-29T12:15:28.000Z",
                  "valueDate":"2020-02-29",
                  "txnId":"M41777598",
                  "narration":"ACH/TP Kotak Life Ins/1811082917 ",
                  "reference":"RFN01464885"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"46947.48",
                  "transactionTimestamp":"2020-03-03T01:49:47.000Z",
                  "valueDate":"2020-03-03",
                  "txnId":"M43423703",
                  "narration":"ACH/TP ExideLife/INGLife/1812475429 ",
                  "reference":"RFN01526915"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"10000.00",
                  "currentBalance":"36797.480000000003",
                  "transactionTimestamp":"2020-03-04T03:41:44.000Z",
                  "valueDate":"2020-03-04",
                  "txnId":"M44082145",
                  "narration":"NFS/40782067/CASH WDL/03-03-20 ",
                  "reference":"RFN01551727"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"136797.48000000001",
                  "transactionTimestamp":"2020-03-04T03:47:46.000Z",
                  "valueDate":"2020-03-04",
                  "txnId":"M44411366",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAR 2020",
                  "reference":"RFN01564133"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"131235.48000000001",
                  "transactionTimestamp":"2020-03-07T02:39:17.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45069808",
                  "narration":"BIL/BPAY/001937764765/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01588945"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"126235.48",
                  "transactionTimestamp":"2020-03-07T02:44:47.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45399029",
                  "narration":"BIL/BPAY/001939911220/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN01601351"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3561.26",
                  "currentBalance":"122674.22",
                  "transactionTimestamp":"2020-03-07T04:01:44.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45728250",
                  "narration":"BIL/INFT/001940171101/ICICI CC PMT/Self ",
                  "reference":"RFN01613757"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"107674.22",
                  "transactionTimestamp":"2020-03-07T05:03:37.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46057471",
                  "narration":"MMT/IMPS/006711568031/Rent ",
                  "reference":"RFN01626163"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"95674.22",
                  "transactionTimestamp":"2020-03-07T05:09:11.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46386692",
                  "narration":"MMT/IMPS/006711573661/Car Loan EMI/SBIN",
                  "reference":"RFN01638569"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"17000.00",
                  "currentBalance":"78674.22",
                  "transactionTimestamp":"2020-03-07T09:44:35.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46715913",
                  "narration":"BIL/INFT/001940175419/ ",
                  "reference":"RFN01650975"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"8559.00",
                  "currentBalance":"70115.22",
                  "transactionTimestamp":"2020-03-07T10:08:47.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47045134",
                  "narration":"MMT/IMPS/006712597972/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN01663381"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"120115.22",
                  "transactionTimestamp":"2020-03-07T10:19:21.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47374355",
                  "narration":"MMT/IMPS/006712781113/TRANSFER TO SEL/AKSHAY KU/C",
                  "reference":"RFN01675787"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"6336.00",
                  "currentBalance":"113779.22",
                  "transactionTimestamp":"2020-03-07T10:44:33.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47703576",
                  "narration":"VIN/EASEMYTRIP /202003071359/006719220700/ ",
                  "reference":"RFN01688193"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"110717.22",
                  "transactionTimestamp":"2020-03-07T11:08:33.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M48032797",
                  "narration":"CMS/000624000438/AD_LIC__648652702 ",
                  "reference":"RFN01700599"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"442.00",
                  "currentBalance":"110275.22",
                  "transactionTimestamp":"2020-03-07T11:39:44.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M48362018",
                  "narration":"IIN/I-Debit/DISH INFRA /202003071657/006701016468/",
                  "reference":"RFN01713005"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"7534.00",
                  "currentBalance":"99586.12",
                  "transactionTimestamp":"2020-03-10T03:44:10.000Z",
                  "valueDate":"2020-03-10",
                  "txnId":"M49678902",
                  "narration":"VIN/EASEMYTRIP /202003082121/006902048650/ ",
                  "reference":"RFN01762629"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"94586.12",
                  "transactionTimestamp":"2020-03-11T14:46:54.000Z",
                  "valueDate":"2020-03-11",
                  "txnId":"M50008123",
                  "narration":"BIL/BPAY/001941514032/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01775035"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"64586.12",
                  "transactionTimestamp":"2020-03-14T04:54:18.000Z",
                  "valueDate":"2020-03-14",
                  "txnId":"M50337344",
                  "narration":"ACH/HDFCLTD/249354424 ",
                  "reference":"RFN01787441"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"600.00",
                  "currentBalance":"63846.12",
                  "transactionTimestamp":"2020-03-16T09:17:48.000Z",
                  "valueDate":"2020-03-16",
                  "txnId":"M50995786",
                  "narration":"UPI/007420114201/Dentist/gpay-1116609841/Axis Bank",
                  "reference":"RFN01812253"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"53846.12",
                  "transactionTimestamp":"2020-03-16T09:49:46.000Z",
                  "valueDate":"2020-03-16",
                  "txnId":"M51325007",
                  "narration":"ATM/SPCNF280/CASH WDL/14-03-20 ",
                  "reference":"RFN01824659"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"39104.24",
                  "currentBalance":"92950.36",
                  "transactionTimestamp":"2020-03-18T02:45:48.000Z",
                  "valueDate":"2020-03-18",
                  "txnId":"M51654228",
                  "narration":"NEFT-SBIN420076198612-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN01837065"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"33070.22",
                  "currentBalance":"126020.58",
                  "transactionTimestamp":"2020-03-19T10:03:57.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M51983449",
                  "narration":"NEFT-CITIN20042002999-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN01849471"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"62438.37",
                  "currentBalance":"187942.95",
                  "transactionTimestamp":"2020-03-19T10:56:55.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M52641891",
                  "narration":"NEFT-SBIN220079143128-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN01874283"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"106982.95",
                  "currentBalance":"294925.90000000002",
                  "transactionTimestamp":"2020-03-19T11:09:11.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M52971112",
                  "narration":"NEFT-CITIN20043807506-MTL OSWL NASDQ 100 FUND OF FUND R",
                  "reference":"RFN01886689"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"144925.9",
                  "transactionTimestamp":"2020-03-21T05:45:33.000Z",
                  "valueDate":"2020-03-21",
                  "txnId":"M53300333",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS FEB 2020",
                  "reference":"RFN01899095"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"1574.00",
                  "currentBalance":"92291.82",
                  "transactionTimestamp":"2020-03-25T17:46:11.000Z",
                  "valueDate":"2020-03-25",
                  "txnId":"M54946438",
                  "narration":"BIL/ONL/001951605503/State Bank/SBICARD_SICI864/SB",
                  "reference":"RFN01961125"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"81601.460000000006",
                  "transactionTimestamp":"2020-03-29T01:48:19.000Z",
                  "valueDate":"2020-03-29",
                  "txnId":"M56263322",
                  "narration":"NFS/KBL18213/CASH WDL/28-03-20 ",
                  "reference":"RFN02010749"
               },
               {
                  "type":"CREDIT",
                  "mode":"OTHERS",
                  "amount":"594.00",
                  "currentBalance":"80996.460000000006",
                  "transactionTimestamp":"2020-03-30T14:44:19.000Z",
                  "valueDate":"2020-03-30",
                  "txnId":"M56921764",
                  "narration":"000501523329:Int.Pd:31-12-2019 to 29-03-2020 ",
                  "reference":"RFN02035561"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"78858.460000000006",
                  "transactionTimestamp":"2020-03-30T16:14:59.000Z",
                  "valueDate":"2020-03-30",
                  "txnId":"M57250985",
                  "narration":"ACH/TP Kotak Life Ins/1819650671 ",
                  "reference":"RFN02047967"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"1575.00",
                  "currentBalance":"77283.460000000006",
                  "transactionTimestamp":"2020-04-02T13:55:32.000Z",
                  "valueDate":"2020-04-02",
                  "txnId":"M57580206",
                  "narration":"VPS/MARIYA MART/202003301618/009010507447/BENGALUR",
                  "reference":"RFN02060373"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"503.00",
                  "currentBalance":"76600.460000000006",
                  "transactionTimestamp":"2020-04-07T15:58:12.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M58238648",
                  "narration":"VIN/DISH TV IND/202004022210/009316172254/ ",
                  "reference":"RFN02085185"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"74425.91",
                  "transactionTimestamp":"2020-04-07T16:30:25.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M58897090",
                  "narration":"ACH/TP ExideLife/INGLife/1821585640 ",
                  "reference":"RFN02109997"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"69425.91",
                  "transactionTimestamp":"2020-04-07T16:53:11.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M59226311",
                  "narration":"BIL/BPAY/001962606701/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02122403"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"64425.91",
                  "transactionTimestamp":"2020-04-07T17:31:18.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M59555532",
                  "narration":"BIL/BPAY/001962608700/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN02134809"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"59425.91",
                  "transactionTimestamp":"2020-04-08T06:52:07.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M59884753",
                  "narration":"BIL/BPAY/001962559893/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02147215"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"56450.47",
                  "transactionTimestamp":"2020-04-08T09:17:18.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M60543195",
                  "narration":"CMS/000634264039/AD_LIC__648652702 ",
                  "reference":"RFN02172027"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"974.00",
                  "currentBalance":"55476.47",
                  "transactionTimestamp":"2020-04-08T09:27:53.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M60872416",
                  "narration":"BIL/ONL/001963344975/Easy Trip /wwweasemytripco/Fl",
                  "reference":"RFN02184433"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15408.00",
                  "currentBalance":"40068.47",
                  "transactionTimestamp":"2020-04-08T13:55:46.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M61201637",
                  "narration":"MMT/IMPS/009900364262/Credit Card/HDFC CREDI/HDFC0",
                  "reference":"RFN02196839"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"140068.47",
                  "transactionTimestamp":"2020-04-09T17:39:17.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M61530858",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAR 2020",
                  "reference":"RFN02209245"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"125068.47",
                  "transactionTimestamp":"2020-04-09T17:44:28.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M61860079",
                  "narration":"MMT/IMPS/009900356311/Rent/SAILAKSHMI/HDFC0000847 ",
                  "reference":"RFN02221651"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"115068.47",
                  "transactionTimestamp":"2020-04-09T17:58:42.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M62189300",
                  "narration":"MMT/IMPS/009900355713/For car loan EMI/SBIN",
                  "reference":"RFN02234057"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"69343.47",
                  "transactionTimestamp":"2020-04-25T11:45:18.000Z",
                  "valueDate":"2020-04-25",
                  "txnId":"M64164626",
                  "narration":"ACH/HDFCLTD/251443203 ",
                  "reference":"RFN02308493"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3294.00",
                  "currentBalance":"64190.97",
                  "transactionTimestamp":"2020-05-02T14:46:54.000Z",
                  "valueDate":"2020-05-02",
                  "txnId":"M66469173",
                  "narration":"BIL/ONL/001973684380/State Bank/SBICARD_SICI874/SB",
                  "reference":"RFN02395335"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61962.97",
                  "transactionTimestamp":"2020-05-04T05:52:57.000Z",
                  "valueDate":"2020-05-04",
                  "txnId":"M67127615",
                  "narration":"ACH/TP Kotak Life Ins/1826771816 ",
                  "reference":"RFN02420147"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"59243.42",
                  "transactionTimestamp":"2020-05-06T09:45:45.000Z",
                  "valueDate":"2020-05-06",
                  "txnId":"M68444499",
                  "narration":"ACH/TP ExideLife/INGLife/1827934796 ",
                  "reference":"RFN02469771"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"159243.42000000001",
                  "transactionTimestamp":"2020-05-07T06:38:19.000Z",
                  "valueDate":"2020-05-07",
                  "txnId":"M68773720",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS APR 2020",
                  "reference":"RFN02482177"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"147857.42000000001",
                  "transactionTimestamp":"2020-05-09T13:03:56.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M69761383",
                  "narration":"BIL/BPAY/001982030055/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02519395"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"144795.42000000001",
                  "transactionTimestamp":"2020-05-09T13:42:12.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M70090604",
                  "narration":"CMS/000641754365/AD_LIC__648652702 ",
                  "reference":"RFN02531801"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"135795.42000000001",
                  "transactionTimestamp":"2020-05-09T14:35:12.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M70419825",
                  "narration":"MMT/IMPS/012923807671/For Car Loan/SBIN",
                  "reference":"RFN02544207"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"9000.00",
                  "currentBalance":"131053.42",
                  "transactionTimestamp":"2020-10-05T17:41:19.000Z",
                  "valueDate":"2020-05-10",
                  "txnId":"M70749046",
                  "narration":"BIL/001983772909/ICICI BANK CREDIT CA/524193208676",
                  "reference":"RFN02556613"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"4742.00",
                  "currentBalance":"115657.42",
                  "transactionTimestamp":"2020-05-11T16:48:15.000Z",
                  "valueDate":"2020-05-11",
                  "txnId":"M71078267",
                  "narration":"MMT/IMPS/013019273318/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN02569019"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"100657.42",
                  "transactionTimestamp":"2020-05-15T15:50:37.000Z",
                  "valueDate":"2020-05-15",
                  "txnId":"M71407488",
                  "narration":"MMT/IMPS/013019275684/Rent May 2020/SAILAKSHMI/HDF",
                  "reference":"RFN02581425"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"70600.42",
                  "transactionTimestamp":"2020-05-19T13:55:32.000Z",
                  "valueDate":"2020-05-19",
                  "txnId":"M72065930",
                  "narration":"ACH/HDFCLTD/253928436 ",
                  "reference":"RFN02606237"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"12.00",
                  "currentBalance":"68415.42",
                  "transactionTimestamp":"2020-05-24T05:43:26.000Z",
                  "valueDate":"2020-05-24",
                  "txnId":"M73712035",
                  "narration":"PMSBY RENEWAL PREMIUM FY 21 ",
                  "reference":"RFN02668267"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"4058.00",
                  "currentBalance":"64357.42",
                  "transactionTimestamp":"2020-05-25T08:47:37.000Z",
                  "valueDate":"2020-05-25",
                  "txnId":"M74041256",
                  "narration":"BIL/001992356805/ICICI BANK CREDIT CA/431581009199",
                  "reference":"RFN02680673"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61125.42",
                  "transactionTimestamp":"2020-06-03T11:47:18.000Z",
                  "valueDate":"2020-06-03",
                  "txnId":"M75358140",
                  "narration":"ACH/TP Kotak Life Ins/1832189136 ",
                  "reference":"RFN02730297"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"50851.87",
                  "transactionTimestamp":"2020-06-04T07:56:11.000Z",
                  "valueDate":"2020-06-04",
                  "txnId":"M76675024",
                  "narration":"ACH/TP ExideLife/INGLife/1834310500 ",
                  "reference":"RFN02779921"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"141851.87",
                  "transactionTimestamp":"2020-06-08T13:05:14.000Z",
                  "valueDate":"2020-06-08",
                  "txnId":"M77333466",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAY 2020",
                  "reference":"RFN02804733"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3000.00",
                  "currentBalance":"133851.87",
                  "transactionTimestamp":"2020-06-11T02:28:36.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M77991908",
                  "narration":"BIL/BPAY/002001526478/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02829545"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"130789.87",
                  "transactionTimestamp":"2020-06-11T02:39:17.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M78321129",
                  "narration":"CMS/000651994446/AD_LIC__648652702 ",
                  "reference":"RFN02841951"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"100789.87",
                  "transactionTimestamp":"2020-06-11T03:41:45.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M78650350",
                  "narration":"ACH/HDFCLTD/256070866 ",
                  "reference":"RFN02854357"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"16037.22",
                  "currentBalance":"116827.09",
                  "transactionTimestamp":"2020-11-11T02:45:48.000Z",
                  "valueDate":"2020-11-11",
                  "txnId":"M78979571",
                  "narration":"NEFT-SBIN120163800892-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN02866763"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"15691.88",
                  "currentBalance":"132518.97",
                  "transactionTimestamp":"2020-12-11T22:24:00.000Z",
                  "valueDate":"2020-12-12",
                  "txnId":"M79308792",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"15691.88",
                  "currentBalance":"148210.85",
                  "transactionTimestamp":"2020-12-31T20:24:00.000Z",
                  "valueDate":"2021-01-01",
                  "txnId":"M793087102",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879167"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10202.88",
                  "currentBalance":"158413.73",
                  "transactionTimestamp":"2021-02-01T22:24:00.000Z",
                  "valueDate":"2021-02-02",
                  "txnId":"M793087902",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10303.88",
                  "currentBalance":"168717.61",
                  "transactionTimestamp":"2021-03-02T22:24:00.000Z",
                  "valueDate":"2021-03-03",
                  "txnId":"M793087903",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10404.88",
                  "currentBalance":"179122.49",
                  "transactionTimestamp":"2021-04-03T22:24:00.000Z",
                  "valueDate":"2021-04-04",
                  "txnId":"M7930879204",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10505.88",
                  "currentBalance":"189628.37",
                  "transactionTimestamp":"2021-05-04T22:24:00.000Z",
                  "valueDate":"2021-05-05",
                  "txnId":"M7930879205",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10606.88",
                  "currentBalance":"200235.25",
                  "transactionTimestamp":"2021-06-05T22:24:00.000Z",
                  "valueDate":"2021-06-06",
                  "txnId":"M7930879206",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10707.88",
                  "currentBalance":"210943.13",
                  "transactionTimestamp":"2021-07-06T22:24:00.000Z",
                  "valueDate":"2021-07-07",
                  "txnId":"M7930879207",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10808.88",
                  "currentBalance":"221752.01",
                  "transactionTimestamp":"2021-08-07T22:24:00.000Z",
                  "valueDate":"2021-08-08",
                  "txnId":"M7930879208",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10909.88",
                  "currentBalance":"232661.89",
                  "transactionTimestamp":"2021-09-08T22:24:00.000Z",
                  "valueDate":"2021-09-09",
                  "txnId":"M7930879209",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11010.88",
                  "currentBalance":"243672.77",
                  "transactionTimestamp":"2021-10-09T22:24:00.000Z",
                  "valueDate":"2021-10-10",
                  "txnId":"M7930879210",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11111.88",
                  "currentBalance":"254784.65",
                  "transactionTimestamp":"2021-11-10T22:24:00.000Z",
                  "valueDate":"2021-11-11",
                  "txnId":"M7930879211",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11201.88",
                  "currentBalance":"265986.53",
                  "transactionTimestamp":"2021-11-30T22:24:00.000Z",
                  "valueDate":"2021-12-01",
                  "txnId":"M7930879212",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11208.88",
                  "currentBalance":"277195.41",
                  "transactionTimestamp":"2021-12-07T22:24:00.000Z",
                  "valueDate":"2021-12-08",
                  "txnId":"M7930879213",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879170"
               }
            ]
         }
      }
   ],
   "linkRefNumbers":[
      {
         "linkRefNumber":"b520384b-7174-4951-98cf-b09574266e61",
         "fiStatus":"READY"
      },
      {
         "linkRefNumber":"f827f14d-81ad-4bf7-b0b9-4d09f510e748",
         "fiStatus":"READY"
      },
      {
         "linkRefNumber":"c56417f7-6d96-46f9-a03a-34b3d77c4fc9",
         "fiStatus":"READY"
      }
   ]
}
   "timestamp":"2022-04-07T06:10:17.129Z",
   "consentHandle":"7793263e-ab71-4343-8f31-e7e695f4a3d1",
   "eventType":"DATA_EXT",
   "eventStatus":"DATA_PUSH",
   "consentId":"bd740c63-70a3-415a-944f-fc6b16e2c55f",
   "vua":"7730808773@onemoney",
   "eventMessage":"Data push for consent idbd740c63-70a3-415a-944f-fc6b16e2c55f",
   "data":[
      {
         "linkReferenceNumber":"b520384b-7174-4951-98cf-b09574266e61",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"RECURRING_DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "branch":"JayaNagar 4th Block",
            "openingDate":null,
            "ifsc":"ICIC0001124",
            "accountType":"RECURRING",
            "maturityAmount":"61693.00",
            "maturityDate":null,
            "description":"12 Months Recurring Deposit",
            "interestPayout":"OnMaturity",
            "interestRate":"5.15",
            "principalAmount":"5000.00",
            "tenureDays":"0",
            "tenureMonths":"12",
            "tenureYears":"0",
            "recurringAmount":"5000.00",
            "recurringDepositDay":"22",
            "interestComputation":"COMPOUND",
            "compoundingFrequency":"MONTHLY",
            "interestPeriodicPayoutAmount":"0",
            "interestOnMaturity":"1693",
            "currentValue":"35000.00"
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Akshay Kumar",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"",
                     "address":"8/1190, 5th Cross, 3rd Main, 7th Block, Jayanagar, Bangalore - 560011",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"5000.00",
                  "transactionDateTime":"2019-12-22T04:53:45.000Z",
                  "valueDate":"2019-12-22T04:53:45.000Z",
                  "txnId":"M2587459",
                  "narration":"TOWARDS RD OPENING",
                  "reference":"RFN0001338754"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"10000.00",
                  "transactionDateTime":"2020-01-22T04:53:45.000Z",
                  "valueDate":"2020-01-22T04:53:45.000Z",
                  "txnId":"M5874125",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0001587864"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"15000.00",
                  "transactionDateTime":"2020-02-22T04:53:45.000Z",
                  "valueDate":"2020-02-22T04:53:45.000Z",
                  "txnId":"M9160791",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0001836974"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"20000.00",
                  "transactionDateTime":"2020-03-22T04:53:45.000Z",
                  "valueDate":"2020-03-22T04:53:45.000Z",
                  "txnId":"M12447457",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002086084"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"25000.00",
                  "transactionDateTime":"2020-04-22T04:53:45.000Z",
                  "valueDate":"2020-04-22T04:53:45.000Z",
                  "txnId":"M15734123",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002335194"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"30000.00",
                  "transactionDateTime":"2020-05-22T04:53:45.000Z",
                  "valueDate":"2020-05-22T04:53:45.000Z",
                  "txnId":"M19020789",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002584304"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2020-06-22T04:53:45.000Z",
                  "valueDate":"2020-06-22T04:53:45.000Z",
                  "txnId":"M22307455",
                  "narration":"TOWARDS RD INSTALLMENT",
                  "reference":"RFN0002833414"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-01-01T04:53:45.000Z",
                  "valueDate":"2021-01-01T04:53:45.000Z",
                  "txnId":"M223074551",
                  "narration":"TOWARDS RD INSTALLMENT for month 1",
                  "reference":"RFN00028334141"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-02-02T04:53:45.000Z",
                  "valueDate":"2021-02-02T04:53:45.000Z",
                  "txnId":"M223074552",
                  "narration":"TOWARDS RD INSTALLMENT for month 2",
                  "reference":"RFN00028334142"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-03-03T04:53:45.000Z",
                  "valueDate":"2021-03-03T04:53:45.000Z",
                  "txnId":"M223074553",
                  "narration":"TOWARDS RD INSTALLMENT for month 3",
                  "reference":"RFN00028334143"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-04-04T04:53:45.000Z",
                  "valueDate":"2021-04-04T04:53:45.000Z",
                  "txnId":"M223074554",
                  "narration":"TOWARDS RD INSTALLMENT for month 4",
                  "reference":"RFN00028334144"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-05-05T04:53:45.000Z",
                  "valueDate":"2021-05-05T04:53:45.000Z",
                  "txnId":"M223074555",
                  "narration":"TOWARDS RD INSTALLMENT for month 5",
                  "reference":"RFN00028334145"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-06-06T04:53:45.000Z",
                  "valueDate":"2021-06-06T04:53:45.000Z",
                  "txnId":"M223074556",
                  "narration":"TOWARDS RD INSTALLMENT for month 6",
                  "reference":"RFN00028334146"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-07-07T04:53:45.000Z",
                  "valueDate":"2021-07-07T04:53:45.000Z",
                  "txnId":"M223074557",
                  "narration":"TOWARDS RD INSTALLMENT for month 7",
                  "reference":"RFN00028334147"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-08-08T04:53:45.000Z",
                  "valueDate":"2021-08-08T04:53:45.000Z",
                  "txnId":"M223074558",
                  "narration":"TOWARDS RD INSTALLMENT for month 8",
                  "reference":"RFN00028334148"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-09-09T04:53:45.000Z",
                  "valueDate":"2021-09-09T04:53:45.000Z",
                  "txnId":"M223074559",
                  "narration":"TOWARDS RD INSTALLMENT for month 9",
                  "reference":"RFN00028334149"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-10-10T04:53:45.000Z",
                  "valueDate":"2021-10-10T04:53:45.000Z",
                  "txnId":"M2230745510",
                  "narration":"TOWARDS RD INSTALLMENT for month 10",
                  "reference":"RFN000283341410"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-11-11T04:53:45.000Z",
                  "valueDate":"2021-11-11T04:53:45.000Z",
                  "txnId":"M2230745511",
                  "narration":"TOWARDS RD INSTALLMENT for month 11",
                  "reference":"RFN000283341411"
               },
               {
                  "type":"INSTALLMENT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "balance":"35000.00",
                  "transactionDateTime":"2021-12-12T04:53:45.000Z",
                  "valueDate":"2021-12-12T04:53:45.000Z",
                  "txnId":"M2230745512",
                  "narration":"TOWARDS RD INSTALLMENT for month 12",
                  "reference":"RFN000283341412"
               }
            ]
         }
      },
      {
         "linkReferenceNumber":"f827f14d-81ad-4bf7-b0b9-4d09f510e748",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"TERM_DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "branch":"Jayanagar 4th Block",
            "openingDate":"2019-12-22",
            "ifsc":"ICIC0001124",
            "accountType":"FIXED",
            "maturityDate":"2021-01-16",
            "maturityAmount":"105622.00",
            "description":"390 Days Cumulative Term Deposit ",
            "interestPayout":"OnMaturity",
            "interestRate":"5.15",
            "principalAmount":"100000.00",
            "tenureDays":"390",
            "tenureMonths":"0",
            "tenureYears":"0",
            "interestComputation":"COMPOUND",
            "compoundingFrequency":"QUARTERLY",
            "interestPeriodicPayoutAmount":"0",
            "interestOnMaturity":"5622",
            "currentValue":"100000.00"
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Mr. SANKET  SALVI",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"08942-223322",
                     "address":"ADD1001242",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2019-12-22T05:04:14.000Z",
                  "valueDate":"2019-12-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD OPENING",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-01-22T05:04:14.000Z",
                  "valueDate":"2020-01-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-03-22T05:04:14.000Z",
                  "valueDate":"2020-03-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-03-22T05:04:14.000Z",
                  "valueDate":"2020-03-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-06-22T05:04:14.000Z",
                  "valueDate":"2020-06-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-07-22T05:04:14.000Z",
                  "valueDate":"2020-07-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-08-22T05:04:14.000Z",
                  "valueDate":"2020-08-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-09-22T05:04:14.000Z",
                  "valueDate":"2020-09-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2020-10-22T05:04:14.000Z",
                  "valueDate":"2020-10-22T00:00:00.000Z",
                  "txnId":"M4785435",
                  "narration":"TOWARDS FD 1st ",
                  "reference":"RFN00013383"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-01-01T05:04:14.000Z",
                  "valueDate":"2021-01-01T00:00:00.000Z",
                  "txnId":"M47854351",
                  "narration":"TOWARDS FD for Month 1",
                  "reference":"RFN0001338301"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-02-02T05:04:14.000Z",
                  "valueDate":"2021-02-02T00:00:00.000Z",
                  "txnId":"M47854352",
                  "narration":"TOWARDS FD for Month 2",
                  "reference":"RFN0001338302"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-03-03T05:04:14.000Z",
                  "valueDate":"2021-03-03T00:00:00.000Z",
                  "txnId":"M47854353",
                  "narration":"TOWARDS FD for Month 3",
                  "reference":"RFN0001338303"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-04-04T05:04:14.000Z",
                  "valueDate":"2021-04-04T00:00:00.000Z",
                  "txnId":"M47854354",
                  "narration":"TOWARDS FD for Month 4",
                  "reference":"RFN0001338304"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-05-05T05:04:14.000Z",
                  "valueDate":"2021-05-05T00:00:00.000Z",
                  "txnId":"M47854355",
                  "narration":"TOWARDS FD for Month 5",
                  "reference":"RFN0001338305"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-06-06T05:04:14.000Z",
                  "valueDate":"2021-06-06T00:00:00.000Z",
                  "txnId":"M47854356",
                  "narration":"TOWARDS FD for Month 6",
                  "reference":"RFN0001338306"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-07-07T05:04:14.000Z",
                  "valueDate":"2021-07-07T00:00:00.000Z",
                  "txnId":"M47854357",
                  "narration":"TOWARDS FD for Month 7",
                  "reference":"RFN0001338307"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-08-08T05:04:14.000Z",
                  "valueDate":"2021-08-08T00:00:00.000Z",
                  "txnId":"M47854358",
                  "narration":"TOWARDS FD for Month 8",
                  "reference":"RFN0001338308"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-09-09T05:04:14.000Z",
                  "valueDate":"2021-09-09T00:00:00.000Z",
                  "txnId":"M47854359",
                  "narration":"TOWARDS FD for Month 9",
                  "reference":"RFN0001338309"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-10-10T05:04:14.000Z",
                  "valueDate":"2021-10-10T00:00:00.000Z",
                  "txnId":"M478543510",
                  "narration":"TOWARDS FD for Month 10",
                  "reference":"RFN00013383010"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-11-11T05:04:14.000Z",
                  "valueDate":"2021-11-11T00:00:00.000Z",
                  "txnId":"M478543511",
                  "narration":"TOWARDS FD for Month 11",
                  "reference":"RFN00013383011"
               },
               {
                  "type":"OPENING",
                  "mode":"FT",
                  "amount":"100000.00",
                  "balance":"100000.00",
                  "transactionDateTime":"2021-12-01T05:04:14.000Z",
                  "valueDate":"2021-12-01T00:00:00.000Z",
                  "txnId":"M478543512",
                  "narration":"TOWARDS FD for Month 12",
                  "reference":"RFN00013383012"
               }
            ]
         }
      },
      {
         "linkReferenceNumber":"c56417f7-6d96-46f9-a03a-34b3d77c4fc9",
         "maskedAccountNumber":"XXXXXX8773",
         "fiType":"DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "currentBalance":"101666.33",
            "currency":"INR",
            "exchgeRate":" ",
            "balanceDateTime":"2020-06-22T07:50:00.000Z",
            "type":"SAVINGS",
            "branch":"Jayanagar 4th Block",
            "facility":"OD",
            "ifscCode":"ICIC0001124",
            "micrCode":"500240246",
            "openingDate":"2004-08-06",
            "currentODLimit":"0",
            "drawingLimit":"0",
            "status":"ACTIVE",
            "Pending":[
               {
                  "amount":0,
                  "transactionType":"DEBIT"
               }
            ]
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Akshay Kumar",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"",
                     "address":"8/1190, 5th Cross, 3rd Main, 7th Block, Jayanagar, Bangalore - 560011",
                     "email":"mail@mail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2019-04-07",
            "endDate":"2022-04-07",
            "Transaction":[
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1239.00",
                  "currentBalance":"62289.25",
                  "transactionTimestamp":"2019-12-19T07:50:14.000Z",
                  "valueDate":"2019-12-19",
                  "txnId":"M3258741",
                  "narration":"UPI/935314560764/getsimpl/simpl@axisbank/Axis Bank",
                  "reference":"RFN00013383"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"16.00",
                  "currentBalance":"62073.25",
                  "transactionTimestamp":"2019-12-20T13:26:12.000Z",
                  "valueDate":"2019-12-20",
                  "txnId":"M3917183",
                  "narration":"UPI/935418465214/On tapping Pay/AMZN0002966107@/St",
                  "reference":"RFN00038195"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1432.00",
                  "currentBalance":"60641.25",
                  "transactionTimestamp":"2019-12-21T03:44:47.000Z",
                  "valueDate":"2019-12-21",
                  "txnId":"M4246404",
                  "narration":"UPI/935511799557/On tapping Pay/ola.money1@axis/Ax",
                  "reference":"RFN00050601"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"710.50",
                  "currentBalance":"45595.49",
                  "transactionTimestamp":"2019-12-21T10:39:04.000Z",
                  "valueDate":"2019-12-21",
                  "txnId":"M5563288",
                  "narration":"VIN/BBBP Bengal/201912220356/935522425140/ ",
                  "reference":"RFN00100225"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"4101.00",
                  "currentBalance":"41494.49",
                  "transactionTimestamp":"2019-12-22T04:44:59.000Z",
                  "valueDate":"2019-12-22",
                  "txnId":"M5892509",
                  "narration":"BIL/ONL/001876585007/State Bank/SBICARD_RICI833/SB",
                  "reference":"RFN00112631"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"200.00",
                  "currentBalance":"41294.49",
                  "transactionTimestamp":"2019-12-22T04:48:12.000Z",
                  "valueDate":"2019-12-22",
                  "txnId":"M6221730",
                  "narration":"GIB/000044233050/STAX /63900042212201900058 ",
                  "reference":"RFN00125037"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"31294.49",
                  "transactionTimestamp":"2019-12-25T06:04:44.000Z",
                  "valueDate":"2019-12-25",
                  "txnId":"M6550951",
                  "narration":"ATM/SECNQ998/CASH WDL/25-12-19 ",
                  "reference":"RFN00137443"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"29156.49",
                  "transactionTimestamp":"2019-12-30T03:01:47.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M6880172",
                  "narration":"ACH/TP Kotak Life Ins/1791288292 ",
                  "reference":"RFN00149849"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"330.00",
                  "currentBalance":"28826.49",
                  "transactionTimestamp":"2019-12-30T04:26:44.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M7209393",
                  "narration":"VIN/SWIGGY /201912301322/936407439400/ ",
                  "reference":"RFN00162255"
               },
               {
                  "type":"CREDIT",
                  "mode":"OTHERS",
                  "amount":"518.00",
                  "currentBalance":"27228.49",
                  "transactionTimestamp":"2019-12-30T07:45:04.000Z",
                  "valueDate":"2019-12-30",
                  "txnId":"M7867835",
                  "narration":"000501523329:Int.Pd:30-09-2019 to 30-12-2019 ",
                  "reference":"RFN00187067"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2097.44",
                  "currentBalance":"24769.05",
                  "transactionTimestamp":"2020-01-01T11:06:47.000Z",
                  "valueDate":"2020-01-01",
                  "txnId":"M8526277",
                  "narration":"VIN/IRCTC /202001012059/000115145689/ ",
                  "reference":"RFN00211879"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"22576.5",
                  "transactionTimestamp":"2020-01-03T05:22:51.000Z",
                  "valueDate":"2020-01-03",
                  "txnId":"M9513940",
                  "narration":"ACH/TP ExideLife/INGLife/1793513439 ",
                  "reference":"RFN00249097"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"1297.00",
                  "currentBalance":"21193.5",
                  "transactionTimestamp":"2020-01-04T19:43:17.000Z",
                  "valueDate":"2020-01-05",
                  "txnId":"M10501603",
                  "narration":"VPS/SWATHI HOSP/202001051605/000510633940/BANGALOR",
                  "reference":"RFN00286315"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"16176.5",
                  "transactionTimestamp":"2020-01-04T20:32:25.000Z",
                  "valueDate":"2020-01-05",
                  "txnId":"M11160045",
                  "narration":"NFS/KBL18213/CASH WDL/05-01-20 ",
                  "reference":"RFN00311127"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"11176.5",
                  "transactionTimestamp":"2020-01-06T17:41:18.000Z",
                  "valueDate":"2020-01-06",
                  "txnId":"M11489266",
                  "narration":"BIL/BPAY/001888932102/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00323533"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"6176.5",
                  "transactionTimestamp":"2020-01-07T00:52:27.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M11818487",
                  "narration":"BIL/BPAY/001889944243/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00335939"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"1176.5",
                  "transactionTimestamp":"2020-01-07T01:53:34.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M12147708",
                  "narration":"BIL/BPAY/001889918950/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN00348345"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3062.00",
                  "currentBalance":"3114.5",
                  "transactionTimestamp":"2020-01-07T14:55:32.000Z",
                  "valueDate":"2020-01-07",
                  "txnId":"M12806150",
                  "narration":"CMS/000599599606/AD_LIC__648652702 ",
                  "reference":"RFN00373157"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"464.00",
                  "currentBalance":"31916.5",
                  "transactionTimestamp":"2020-01-09T01:23:11.000Z",
                  "valueDate":"2020-01-09",
                  "txnId":"M14452255",
                  "narration":"VIN/DISH TV IND/202001091516/000909100480/ ",
                  "reference":"RFN00435187"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"81916.5",
                  "transactionTimestamp":"2020-01-09T01:31:17.000Z",
                  "valueDate":"2020-01-09",
                  "txnId":"M14781476",
                  "narration":"BIL/INFT/001892335260/ ",
                  "reference":"RFN00447593"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"51916.5",
                  "transactionTimestamp":"2020-01-10T02:41:17.000Z",
                  "valueDate":"2020-01-10",
                  "txnId":"M15110697",
                  "narration":"ACH/HDFCLTD/245261499 ",
                  "reference":"RFN00459999"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"935.18",
                  "currentBalance":"50981.32",
                  "transactionTimestamp":"2020-01-10T02:44:13.000Z",
                  "valueDate":"2020-01-10",
                  "txnId":"M15439918",
                  "narration":"VPS/AIRPLAZA RE/202001110253/001021150009/BANGALOR",
                  "reference":"RFN00472405"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"540.00",
                  "currentBalance":"50441.32",
                  "transactionTimestamp":"2020-01-11T17:37:17.000Z",
                  "valueDate":"2020-01-11",
                  "txnId":"M15769139",
                  "narration":"IPS/SAI SARVANA/202001112152/000000000526/BANGALOR",
                  "reference":"RFN00484811"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"50.00",
                  "currentBalance":"50391.32",
                  "transactionTimestamp":"2020-01-11T18:42:22.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16098360",
                  "narration":"UPI/001210722616/Collect/resident.uidai./HDFC BANK",
                  "reference":"RFN00497217"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"200391.32",
                  "transactionTimestamp":"2020-01-11T18:55:16.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16427581",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS DEC 2019",
                  "reference":"RFN00509623"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"150391.32",
                  "transactionTimestamp":"2020-01-11T19:03:36.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M16756802",
                  "narration":"BIL/INFT/001894593460/ ",
                  "reference":"RFN00522029"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"138391.32",
                  "transactionTimestamp":"2020-01-11T19:15:47.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M17086023",
                  "narration":"MMT/IMPS/001211772937/Car Loan EMI/AKSHAY KUMAR /SBIN",
                  "reference":"RFN00534435"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12600.00",
                  "currentBalance":"125791.32",
                  "transactionTimestamp":"2020-01-11T19:31:57.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M17415244",
                  "narration":"MMT/IMPS/001211775491/Rent Jan 2020/SAILAKSHMI/HDF",
                  "reference":"RFN00546841"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"24827.00",
                  "currentBalance":"98564.32",
                  "transactionTimestamp":"2020-01-11T19:56:54.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M18073686",
                  "narration":"MMT/IMPS/001212834904/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN00571653"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"86051.82",
                  "transactionTimestamp":"2020-01-11T20:25:33.000Z",
                  "valueDate":"2020-01-12",
                  "txnId":"M19390570",
                  "narration":"ATM/SPCND430/CASH WDL/12-01-20 ",
                  "reference":"RFN00621277"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"1000.00",
                  "currentBalance":"84991.82",
                  "transactionTimestamp":"2020-01-15T11:40:10.000Z",
                  "valueDate":"2020-01-15",
                  "txnId":"M20049012",
                  "narration":"UPI/001520932727/Easebuzz/easebuzz.nbfc@h/HDFC BAN",
                  "reference":"RFN00646089"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"280.00",
                  "currentBalance":"84691.82",
                  "transactionTimestamp":"2020-01-17T15:50:33.000Z",
                  "valueDate":"2020-01-17",
                  "txnId":"M20707454",
                  "narration":"VPS/SRI MANJUNA/202001180407/001722830111/BANGALOR",
                  "reference":"RFN00670901"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"881.06",
                  "currentBalance":"83760.759999999995",
                  "transactionTimestamp":"2020-01-18T16:44:23.000Z",
                  "valueDate":"2020-01-18",
                  "txnId":"M21365896",
                  "narration":"VIN/Bigtree Ent/202001181624/001821423259/ ",
                  "reference":"RFN00695713"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"66926.759999999995",
                  "transactionTimestamp":"2020-01-24T13:44:23.000Z",
                  "valueDate":"2020-01-24",
                  "txnId":"M23341222",
                  "narration":"NFS/40782067/CASH WDL/21-01-20 ",
                  "reference":"RFN00770149"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"3041.91",
                  "currentBalance":"63394.85",
                  "transactionTimestamp":"2020-01-26T13:48:44.000Z",
                  "valueDate":"2020-01-26",
                  "txnId":"M24328885",
                  "narration":"IPS/BIG BAZAAR /202001252118/000000023015/BANGALOR",
                  "reference":"RFN00807367"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"203.00",
                  "currentBalance":"63191.85",
                  "transactionTimestamp":"2020-01-28T06:42:33.000Z",
                  "valueDate":"2020-01-28",
                  "txnId":"M24658106",
                  "narration":"UPI/002611196768/On tapping Pay/freshmenu@ybl/Yes ",
                  "reference":"RFN00819773"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61053.85",
                  "transactionTimestamp":"2020-01-30T08:55:46.000Z",
                  "valueDate":"2020-01-30",
                  "txnId":"M24987327",
                  "narration":"ACH/TP Kotak Life Ins/1800525191 ",
                  "reference":"RFN00832179"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"300.00",
                  "currentBalance":"60728.85",
                  "transactionTimestamp":"2020-01-31T09:13:19.000Z",
                  "valueDate":"2020-01-31",
                  "txnId":"M25645769",
                  "narration":"VPS/PREMIER SER/202001302249/003017151561/BANGALOR",
                  "reference":"RFN00856991"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"980.00",
                  "currentBalance":"59748.85",
                  "transactionTimestamp":"2020-01-31T10:21:44.000Z",
                  "valueDate":"2020-01-31",
                  "txnId":"M25974990",
                  "narration":"UPI/003122708332/On tapping Pay/Q30019000@ybl/ICIC",
                  "reference":"RFN00869397"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"20.00",
                  "currentBalance":"59728.85",
                  "transactionTimestamp":"2020-02-01T04:40:36.000Z",
                  "valueDate":"2020-02-01",
                  "txnId":"M26304211",
                  "narration":"UPI/003157736639/On tapping Pay/BHARATPE.904135/IC",
                  "reference":"RFN00881803"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"5000.00",
                  "currentBalance":"54568.85",
                  "transactionTimestamp":"2020-02-02T03:44:35.000Z",
                  "valueDate":"2020-02-02",
                  "txnId":"M26962653",
                  "narration":"NFS/SWCW5580/CASH WDL/01-02-20 ",
                  "reference":"RFN00906615"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5266.26",
                  "currentBalance":"49302.59",
                  "transactionTimestamp":"2020-02-02T05:48:49.000Z",
                  "valueDate":"2020-02-02",
                  "txnId":"M27291874",
                  "narration":"BIL/INFT/001910188793/ICICI CC PMT/Self ",
                  "reference":"RFN00919021"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"833.00",
                  "currentBalance":"48469.59",
                  "transactionTimestamp":"2020-02-03T05:59:56.000Z",
                  "valueDate":"2020-02-03",
                  "txnId":"M27621095",
                  "narration":"BIL/ONL/001910495836/State Bank/SBICARD_RICI848/SB",
                  "reference":"RFN00931427"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"46295.040000000001",
                  "transactionTimestamp":"2020-02-03T06:25:55.000Z",
                  "valueDate":"2020-02-03",
                  "txnId":"M28279537",
                  "narration":"ACH/TP ExideLife/INGLife/1802506498 ",
                  "reference":"RFN00956239"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"399.00",
                  "currentBalance":"45898.29",
                  "transactionTimestamp":"2020-02-05T05:48:49.000Z",
                  "valueDate":"2020-02-05",
                  "txnId":"M28937979",
                  "narration":"VPS/SWATHI HOSP/202002041509/003509590219/BANGALOR",
                  "reference":"RFN00981051"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"40898.29",
                  "transactionTimestamp":"2020-02-05T06:52:32.000Z",
                  "valueDate":"2020-02-05",
                  "txnId":"M29267200",
                  "narration":"BIL/BPAY/001913373631/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN00993457"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"30898.29",
                  "transactionTimestamp":"2020-02-07T11:03:47.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M29596421",
                  "narration":"NFS/40782067/CASH WDL/05-02-20 ",
                  "reference":"RFN01005863"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"25898.29",
                  "transactionTimestamp":"2020-02-07T11:08:17.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M29925642",
                  "narration":"BIL/BPAY/001915367034/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN01018269"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"20898.29",
                  "transactionTimestamp":"2020-02-07T11:09:55.000Z",
                  "valueDate":"2020-02-07",
                  "txnId":"M30254863",
                  "narration":"BIL/BPAY/001915358808/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01030675"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3062.00",
                  "currentBalance":"17836.29",
                  "transactionTimestamp":"2020-02-08T07:44:47.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M30584084",
                  "narration":"CMS/000611711611/AD_LIC__648652702 ",
                  "reference":"RFN01043081"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"464.00",
                  "currentBalance":"17372.29",
                  "transactionTimestamp":"2020-02-08T08:58:54.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M30913305",
                  "narration":"BIL/ONL/001916614369/Dish Infra/109767039469-10/DI",
                  "reference":"RFN01055487"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"100.00",
                  "currentBalance":"17272.29",
                  "transactionTimestamp":"2020-02-08T10:28:12.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31242526",
                  "narration":"BIL/ONL/001916723481/Bharti Air/airtel11karprep/Ai",
                  "reference":"RFN01067893"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"167272.29",
                  "transactionTimestamp":"2020-02-08T10:39:24.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31571747",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS JAN 2020",
                  "reference":"RFN01080299"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"155272.29",
                  "transactionTimestamp":"2020-02-08T11:44:23.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M31900968",
                  "narration":"MMT/IMPS/003917379724/Twds Car EMI/AKSHAY KUMAR /SBIN",
                  "reference":"RFN01092705"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"140272.29",
                  "transactionTimestamp":"2020-02-08T13:02:05.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M32230189",
                  "narration":"MMT/IMPS/003917381129/Rent Feb 2020/SAILAKSHMI/HDF",
                  "reference":"RFN01105111"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"9095.00",
                  "currentBalance":"131177.29",
                  "transactionTimestamp":"2020-02-08T13:50:21.000Z",
                  "valueDate":"2020-02-08",
                  "txnId":"M32559410",
                  "narration":"MMT/IMPS/003917401747/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN01117517"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"2656.00",
                  "currentBalance":"121058.29",
                  "transactionTimestamp":"2020-02-09T18:41:01.000Z",
                  "valueDate":"2020-02-10",
                  "txnId":"M34205515",
                  "narration":"VPS/UTH FASHION/202002092044/004015649751/BANGALOR",
                  "reference":"RFN01179547"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"91058.29",
                  "transactionTimestamp":"2020-02-09T19:32:09.000Z",
                  "valueDate":"2020-02-10",
                  "txnId":"M34534736",
                  "narration":"ACH/HDFCLTD/247295911 ",
                  "reference":"RFN01191953"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"2187.00",
                  "currentBalance":"87500.29",
                  "transactionTimestamp":"2020-02-12T21:41:12.000Z",
                  "valueDate":"2020-02-13",
                  "txnId":"M35193178",
                  "narration":"VPS/LEVITATE BR/202002112208/004216049503/BANGALOR",
                  "reference":"RFN01216765"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"300.00",
                  "currentBalance":"87200.29",
                  "transactionTimestamp":"2020-02-13T22:45:43.000Z",
                  "valueDate":"2020-02-14",
                  "txnId":"M35522399",
                  "narration":"NFS/01626621/CASH WDL/13-02-20 ",
                  "reference":"RFN01229171"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"20000.71",
                  "currentBalance":"67005.58",
                  "transactionTimestamp":"2020-02-16T00:47:36.000Z",
                  "valueDate":"2020-02-16",
                  "txnId":"M36180841",
                  "narration":"BIL/ONL/001922566340/NPS Trust/XBCMFNPS_RICI85/NPS",
                  "reference":"RFN01253983"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"18.00",
                  "currentBalance":"65107.58",
                  "transactionTimestamp":"2020-02-19T05:44:44.000Z",
                  "valueDate":"2020-02-19",
                  "txnId":"M37826946",
                  "narration":"UPI/004928011116/On tapping Pay/Q46323859@ybl/Unio",
                  "reference":"RFN01316013"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"165.00",
                  "currentBalance":"64574.58",
                  "transactionTimestamp":"2020-02-21T07:23:13.000Z",
                  "valueDate":"2020-02-21",
                  "txnId":"M39143830",
                  "narration":"VPS/MARIYA MART/202002212105/005215700989/BENGALUR",
                  "reference":"RFN01365637"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"53509.58",
                  "transactionTimestamp":"2020-02-22T07:59:47.000Z",
                  "valueDate":"2020-02-22",
                  "txnId":"M39802272",
                  "narration":"NFS/SWCW5580/CASH WDL/22-02-20 ",
                  "reference":"RFN01390449"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"928.55",
                  "currentBalance":"52581.03",
                  "transactionTimestamp":"2020-02-22T08:00:11.000Z",
                  "valueDate":"2020-02-22",
                  "txnId":"M40131493",
                  "narration":"UPI/005321449659/Zomato payment/zomato-order@pa/Pa",
                  "reference":"RFN01402855"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"496.00",
                  "currentBalance":"52090.03",
                  "transactionTimestamp":"2020-02-27T09:42:02.000Z",
                  "valueDate":"2020-02-27",
                  "txnId":"M40789935",
                  "narration":"VIN/WWW OLACABS/202002261039/005705021876/ ",
                  "reference":"RFN01427667"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"170.00",
                  "currentBalance":"51920.03",
                  "transactionTimestamp":"2020-02-28T11:06:19.000Z",
                  "valueDate":"2020-02-28",
                  "txnId":"M41119156",
                  "narration":"VPS/ROLLS ON WH/202002271409/005808024752/BANGALOR",
                  "reference":"RFN01440073"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"49712.03",
                  "transactionTimestamp":"2020-02-29T12:15:28.000Z",
                  "valueDate":"2020-02-29",
                  "txnId":"M41777598",
                  "narration":"ACH/TP Kotak Life Ins/1811082917 ",
                  "reference":"RFN01464885"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"46947.48",
                  "transactionTimestamp":"2020-03-03T01:49:47.000Z",
                  "valueDate":"2020-03-03",
                  "txnId":"M43423703",
                  "narration":"ACH/TP ExideLife/INGLife/1812475429 ",
                  "reference":"RFN01526915"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"10000.00",
                  "currentBalance":"36797.480000000003",
                  "transactionTimestamp":"2020-03-04T03:41:44.000Z",
                  "valueDate":"2020-03-04",
                  "txnId":"M44082145",
                  "narration":"NFS/40782067/CASH WDL/03-03-20 ",
                  "reference":"RFN01551727"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"136797.48000000001",
                  "transactionTimestamp":"2020-03-04T03:47:46.000Z",
                  "valueDate":"2020-03-04",
                  "txnId":"M44411366",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAR 2020",
                  "reference":"RFN01564133"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"131235.48000000001",
                  "transactionTimestamp":"2020-03-07T02:39:17.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45069808",
                  "narration":"BIL/BPAY/001937764765/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01588945"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"126235.48",
                  "transactionTimestamp":"2020-03-07T02:44:47.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45399029",
                  "narration":"BIL/BPAY/001939911220/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN01601351"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3561.26",
                  "currentBalance":"122674.22",
                  "transactionTimestamp":"2020-03-07T04:01:44.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M45728250",
                  "narration":"BIL/INFT/001940171101/ICICI CC PMT/Self ",
                  "reference":"RFN01613757"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"107674.22",
                  "transactionTimestamp":"2020-03-07T05:03:37.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46057471",
                  "narration":"MMT/IMPS/006711568031/Rent ",
                  "reference":"RFN01626163"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"95674.22",
                  "transactionTimestamp":"2020-03-07T05:09:11.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46386692",
                  "narration":"MMT/IMPS/006711573661/Car Loan EMI/SBIN",
                  "reference":"RFN01638569"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"17000.00",
                  "currentBalance":"78674.22",
                  "transactionTimestamp":"2020-03-07T09:44:35.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M46715913",
                  "narration":"BIL/INFT/001940175419/ ",
                  "reference":"RFN01650975"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"8559.00",
                  "currentBalance":"70115.22",
                  "transactionTimestamp":"2020-03-07T10:08:47.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47045134",
                  "narration":"MMT/IMPS/006712597972/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN01663381"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"50000.00",
                  "currentBalance":"120115.22",
                  "transactionTimestamp":"2020-03-07T10:19:21.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47374355",
                  "narration":"MMT/IMPS/006712781113/TRANSFER TO SEL/AKSHAY KU/C",
                  "reference":"RFN01675787"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"6336.00",
                  "currentBalance":"113779.22",
                  "transactionTimestamp":"2020-03-07T10:44:33.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M47703576",
                  "narration":"VIN/EASEMYTRIP /202003071359/006719220700/ ",
                  "reference":"RFN01688193"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"110717.22",
                  "transactionTimestamp":"2020-03-07T11:08:33.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M48032797",
                  "narration":"CMS/000624000438/AD_LIC__648652702 ",
                  "reference":"RFN01700599"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"442.00",
                  "currentBalance":"110275.22",
                  "transactionTimestamp":"2020-03-07T11:39:44.000Z",
                  "valueDate":"2020-03-07",
                  "txnId":"M48362018",
                  "narration":"IIN/I-Debit/DISH INFRA /202003071657/006701016468/",
                  "reference":"RFN01713005"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"7534.00",
                  "currentBalance":"99586.12",
                  "transactionTimestamp":"2020-03-10T03:44:10.000Z",
                  "valueDate":"2020-03-10",
                  "txnId":"M49678902",
                  "narration":"VIN/EASEMYTRIP /202003082121/006902048650/ ",
                  "reference":"RFN01762629"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"94586.12",
                  "transactionTimestamp":"2020-03-11T14:46:54.000Z",
                  "valueDate":"2020-03-11",
                  "txnId":"M50008123",
                  "narration":"BIL/BPAY/001941514032/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN01775035"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"64586.12",
                  "transactionTimestamp":"2020-03-14T04:54:18.000Z",
                  "valueDate":"2020-03-14",
                  "txnId":"M50337344",
                  "narration":"ACH/HDFCLTD/249354424 ",
                  "reference":"RFN01787441"
               },
               {
                  "type":"DEBIT",
                  "mode":"UPI",
                  "amount":"600.00",
                  "currentBalance":"63846.12",
                  "transactionTimestamp":"2020-03-16T09:17:48.000Z",
                  "valueDate":"2020-03-16",
                  "txnId":"M50995786",
                  "narration":"UPI/007420114201/Dentist/gpay-1116609841/Axis Bank",
                  "reference":"RFN01812253"
               },
               {
                  "type":"DEBIT",
                  "mode":"ATM",
                  "amount":"10000.00",
                  "currentBalance":"53846.12",
                  "transactionTimestamp":"2020-03-16T09:49:46.000Z",
                  "valueDate":"2020-03-16",
                  "txnId":"M51325007",
                  "narration":"ATM/SPCNF280/CASH WDL/14-03-20 ",
                  "reference":"RFN01824659"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"39104.24",
                  "currentBalance":"92950.36",
                  "transactionTimestamp":"2020-03-18T02:45:48.000Z",
                  "valueDate":"2020-03-18",
                  "txnId":"M51654228",
                  "narration":"NEFT-SBIN420076198612-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN01837065"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"33070.22",
                  "currentBalance":"126020.58",
                  "transactionTimestamp":"2020-03-19T10:03:57.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M51983449",
                  "narration":"NEFT-CITIN20042002999-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN01849471"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"62438.37",
                  "currentBalance":"187942.95",
                  "transactionTimestamp":"2020-03-19T10:56:55.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M52641891",
                  "narration":"NEFT-SBIN220079143128-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN01874283"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"106982.95",
                  "currentBalance":"294925.90000000002",
                  "transactionTimestamp":"2020-03-19T11:09:11.000Z",
                  "valueDate":"2020-03-19",
                  "txnId":"M52971112",
                  "narration":"NEFT-CITIN20043807506-MTL OSWL NASDQ 100 FUND OF FUND R",
                  "reference":"RFN01886689"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"144925.9",
                  "transactionTimestamp":"2020-03-21T05:45:33.000Z",
                  "valueDate":"2020-03-21",
                  "txnId":"M53300333",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS FEB 2020",
                  "reference":"RFN01899095"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"1574.00",
                  "currentBalance":"92291.82",
                  "transactionTimestamp":"2020-03-25T17:46:11.000Z",
                  "valueDate":"2020-03-25",
                  "txnId":"M54946438",
                  "narration":"BIL/ONL/001951605503/State Bank/SBICARD_SICI864/SB",
                  "reference":"RFN01961125"
               },
               {
                  "type":"DEBIT",
                  "mode":"CASH",
                  "amount":"10000.00",
                  "currentBalance":"81601.460000000006",
                  "transactionTimestamp":"2020-03-29T01:48:19.000Z",
                  "valueDate":"2020-03-29",
                  "txnId":"M56263322",
                  "narration":"NFS/KBL18213/CASH WDL/28-03-20 ",
                  "reference":"RFN02010749"
               },
               {
                  "type":"CREDIT",
                  "mode":"OTHERS",
                  "amount":"594.00",
                  "currentBalance":"80996.460000000006",
                  "transactionTimestamp":"2020-03-30T14:44:19.000Z",
                  "valueDate":"2020-03-30",
                  "txnId":"M56921764",
                  "narration":"000501523329:Int.Pd:31-12-2019 to 29-03-2020 ",
                  "reference":"RFN02035561"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"78858.460000000006",
                  "transactionTimestamp":"2020-03-30T16:14:59.000Z",
                  "valueDate":"2020-03-30",
                  "txnId":"M57250985",
                  "narration":"ACH/TP Kotak Life Ins/1819650671 ",
                  "reference":"RFN02047967"
               },
               {
                  "type":"DEBIT",
                  "mode":"CARD",
                  "amount":"1575.00",
                  "currentBalance":"77283.460000000006",
                  "transactionTimestamp":"2020-04-02T13:55:32.000Z",
                  "valueDate":"2020-04-02",
                  "txnId":"M57580206",
                  "narration":"VPS/MARIYA MART/202003301618/009010507447/BENGALUR",
                  "reference":"RFN02060373"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"503.00",
                  "currentBalance":"76600.460000000006",
                  "transactionTimestamp":"2020-04-07T15:58:12.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M58238648",
                  "narration":"VIN/DISH TV IND/202004022210/009316172254/ ",
                  "reference":"RFN02085185"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"74425.91",
                  "transactionTimestamp":"2020-04-07T16:30:25.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M58897090",
                  "narration":"ACH/TP ExideLife/INGLife/1821585640 ",
                  "reference":"RFN02109997"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"69425.91",
                  "transactionTimestamp":"2020-04-07T16:53:11.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M59226311",
                  "narration":"BIL/BPAY/001962606701/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02122403"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"64425.91",
                  "transactionTimestamp":"2020-04-07T17:31:18.000Z",
                  "valueDate":"2020-04-07",
                  "txnId":"M59555532",
                  "narration":"BIL/BPAY/001962608700/MOTILAL OS/MODIRECT-B02925 ",
                  "reference":"RFN02134809"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"59425.91",
                  "transactionTimestamp":"2020-04-08T06:52:07.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M59884753",
                  "narration":"BIL/BPAY/001962559893/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02147215"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"56450.47",
                  "transactionTimestamp":"2020-04-08T09:17:18.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M60543195",
                  "narration":"CMS/000634264039/AD_LIC__648652702 ",
                  "reference":"RFN02172027"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"974.00",
                  "currentBalance":"55476.47",
                  "transactionTimestamp":"2020-04-08T09:27:53.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M60872416",
                  "narration":"BIL/ONL/001963344975/Easy Trip /wwweasemytripco/Fl",
                  "reference":"RFN02184433"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15408.00",
                  "currentBalance":"40068.47",
                  "transactionTimestamp":"2020-04-08T13:55:46.000Z",
                  "valueDate":"2020-04-08",
                  "txnId":"M61201637",
                  "narration":"MMT/IMPS/009900364262/Credit Card/HDFC CREDI/HDFC0",
                  "reference":"RFN02196839"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"140068.47",
                  "transactionTimestamp":"2020-04-09T17:39:17.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M61530858",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAR 2020",
                  "reference":"RFN02209245"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"125068.47",
                  "transactionTimestamp":"2020-04-09T17:44:28.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M61860079",
                  "narration":"MMT/IMPS/009900356311/Rent/SAILAKSHMI/HDFC0000847 ",
                  "reference":"RFN02221651"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"115068.47",
                  "transactionTimestamp":"2020-04-09T17:58:42.000Z",
                  "valueDate":"2020-04-09",
                  "txnId":"M62189300",
                  "narration":"MMT/IMPS/009900355713/For car loan EMI/SBIN",
                  "reference":"RFN02234057"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"69343.47",
                  "transactionTimestamp":"2020-04-25T11:45:18.000Z",
                  "valueDate":"2020-04-25",
                  "txnId":"M64164626",
                  "narration":"ACH/HDFCLTD/251443203 ",
                  "reference":"RFN02308493"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3294.00",
                  "currentBalance":"64190.97",
                  "transactionTimestamp":"2020-05-02T14:46:54.000Z",
                  "valueDate":"2020-05-02",
                  "txnId":"M66469173",
                  "narration":"BIL/ONL/001973684380/State Bank/SBICARD_SICI874/SB",
                  "reference":"RFN02395335"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61962.97",
                  "transactionTimestamp":"2020-05-04T05:52:57.000Z",
                  "valueDate":"2020-05-04",
                  "txnId":"M67127615",
                  "narration":"ACH/TP Kotak Life Ins/1826771816 ",
                  "reference":"RFN02420147"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"59243.42",
                  "transactionTimestamp":"2020-05-06T09:45:45.000Z",
                  "valueDate":"2020-05-06",
                  "txnId":"M68444499",
                  "narration":"ACH/TP ExideLife/INGLife/1827934796 ",
                  "reference":"RFN02469771"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"150000.00",
                  "currentBalance":"159243.42000000001",
                  "transactionTimestamp":"2020-05-07T06:38:19.000Z",
                  "valueDate":"2020-05-07",
                  "txnId":"M68773720",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS APR 2020",
                  "reference":"RFN02482177"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"5000.00",
                  "currentBalance":"147857.42000000001",
                  "transactionTimestamp":"2020-05-09T13:03:56.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M69761383",
                  "narration":"BIL/BPAY/001982030055/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02519395"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"144795.42000000001",
                  "transactionTimestamp":"2020-05-09T13:42:12.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M70090604",
                  "narration":"CMS/000641754365/AD_LIC__648652702 ",
                  "reference":"RFN02531801"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"12000.00",
                  "currentBalance":"135795.42000000001",
                  "transactionTimestamp":"2020-05-09T14:35:12.000Z",
                  "valueDate":"2020-05-09",
                  "txnId":"M70419825",
                  "narration":"MMT/IMPS/012923807671/For Car Loan/SBIN",
                  "reference":"RFN02544207"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"9000.00",
                  "currentBalance":"131053.42",
                  "transactionTimestamp":"2020-10-05T17:41:19.000Z",
                  "valueDate":"2020-05-10",
                  "txnId":"M70749046",
                  "narration":"BIL/001983772909/ICICI BANK CREDIT CA/524193208676",
                  "reference":"RFN02556613"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"4742.00",
                  "currentBalance":"115657.42",
                  "transactionTimestamp":"2020-05-11T16:48:15.000Z",
                  "valueDate":"2020-05-11",
                  "txnId":"M71078267",
                  "narration":"MMT/IMPS/013019273318/HDFC CC PMT/HDFC CREDI/HDFC0",
                  "reference":"RFN02569019"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"15000.00",
                  "currentBalance":"100657.42",
                  "transactionTimestamp":"2020-05-15T15:50:37.000Z",
                  "valueDate":"2020-05-15",
                  "txnId":"M71407488",
                  "narration":"MMT/IMPS/013019275684/Rent May 2020/SAILAKSHMI/HDF",
                  "reference":"RFN02581425"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"70600.42",
                  "transactionTimestamp":"2020-05-19T13:55:32.000Z",
                  "valueDate":"2020-05-19",
                  "txnId":"M72065930",
                  "narration":"ACH/HDFCLTD/253928436 ",
                  "reference":"RFN02606237"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"12.00",
                  "currentBalance":"68415.42",
                  "transactionTimestamp":"2020-05-24T05:43:26.000Z",
                  "valueDate":"2020-05-24",
                  "txnId":"M73712035",
                  "narration":"PMSBY RENEWAL PREMIUM FY 21 ",
                  "reference":"RFN02668267"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"4058.00",
                  "currentBalance":"64357.42",
                  "transactionTimestamp":"2020-05-25T08:47:37.000Z",
                  "valueDate":"2020-05-25",
                  "txnId":"M74041256",
                  "narration":"BIL/001992356805/ICICI BANK CREDIT CA/431581009199",
                  "reference":"RFN02680673"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2138.00",
                  "currentBalance":"61125.42",
                  "transactionTimestamp":"2020-06-03T11:47:18.000Z",
                  "valueDate":"2020-06-03",
                  "txnId":"M75358140",
                  "narration":"ACH/TP Kotak Life Ins/1832189136 ",
                  "reference":"RFN02730297"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"2024.55",
                  "currentBalance":"50851.87",
                  "transactionTimestamp":"2020-06-04T07:56:11.000Z",
                  "valueDate":"2020-06-04",
                  "txnId":"M76675024",
                  "narration":"ACH/TP ExideLife/INGLife/1834310500 ",
                  "reference":"RFN02779921"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"100000.00",
                  "currentBalance":"141851.87",
                  "transactionTimestamp":"2020-06-08T13:05:14.000Z",
                  "valueDate":"2020-06-08",
                  "txnId":"M77333466",
                  "narration":"SAL FINTECH PRODUCTS and SOLUTIONS MAY 2020",
                  "reference":"RFN02804733"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"3000.00",
                  "currentBalance":"133851.87",
                  "transactionTimestamp":"2020-06-11T02:28:36.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M77991908",
                  "narration":"BIL/BPAY/002001526478/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN02829545"
               },
               {
                  "type":"DEBIT",
                  "mode":"OTHERS",
                  "amount":"3062.00",
                  "currentBalance":"130789.87",
                  "transactionTimestamp":"2020-06-11T02:39:17.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M78321129",
                  "narration":"CMS/000651994446/AD_LIC__648652702 ",
                  "reference":"RFN02841951"
               },
               {
                  "type":"DEBIT",
                  "mode":"FT",
                  "amount":"30000.00",
                  "currentBalance":"100789.87",
                  "transactionTimestamp":"2020-06-11T03:41:45.000Z",
                  "valueDate":"2020-06-11",
                  "txnId":"M78650350",
                  "narration":"ACH/HDFCLTD/256070866 ",
                  "reference":"RFN02854357"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"16037.22",
                  "currentBalance":"116827.09",
                  "transactionTimestamp":"2020-11-11T02:45:48.000Z",
                  "valueDate":"2020-11-11",
                  "txnId":"M78979571",
                  "narration":"NEFT-SBIN120163800892-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN02866763"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"15691.88",
                  "currentBalance":"132518.97",
                  "transactionTimestamp":"2020-12-11T22:24:00.000Z",
                  "valueDate":"2020-12-12",
                  "txnId":"M79308792",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"15691.88",
                  "currentBalance":"148210.85",
                  "transactionTimestamp":"2020-12-31T20:24:00.000Z",
                  "valueDate":"2021-01-01",
                  "txnId":"M793087102",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879167"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10202.88",
                  "currentBalance":"158413.73",
                  "transactionTimestamp":"2021-02-01T22:24:00.000Z",
                  "valueDate":"2021-02-02",
                  "txnId":"M793087902",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10303.88",
                  "currentBalance":"168717.61",
                  "transactionTimestamp":"2021-03-02T22:24:00.000Z",
                  "valueDate":"2021-03-03",
                  "txnId":"M793087903",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10404.88",
                  "currentBalance":"179122.49",
                  "transactionTimestamp":"2021-04-03T22:24:00.000Z",
                  "valueDate":"2021-04-04",
                  "txnId":"M7930879204",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10505.88",
                  "currentBalance":"189628.37",
                  "transactionTimestamp":"2021-05-04T22:24:00.000Z",
                  "valueDate":"2021-05-05",
                  "txnId":"M7930879205",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10606.88",
                  "currentBalance":"200235.25",
                  "transactionTimestamp":"2021-06-05T22:24:00.000Z",
                  "valueDate":"2021-06-06",
                  "txnId":"M7930879206",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10707.88",
                  "currentBalance":"210943.13",
                  "transactionTimestamp":"2021-07-06T22:24:00.000Z",
                  "valueDate":"2021-07-07",
                  "txnId":"M7930879207",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10808.88",
                  "currentBalance":"221752.01",
                  "transactionTimestamp":"2021-08-07T22:24:00.000Z",
                  "valueDate":"2021-08-08",
                  "txnId":"M7930879208",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"10909.88",
                  "currentBalance":"232661.89",
                  "transactionTimestamp":"2021-09-08T22:24:00.000Z",
                  "valueDate":"2021-09-09",
                  "txnId":"M7930879209",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11010.88",
                  "currentBalance":"243672.77",
                  "transactionTimestamp":"2021-10-09T22:24:00.000Z",
                  "valueDate":"2021-10-10",
                  "txnId":"M7930879210",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11111.88",
                  "currentBalance":"254784.65",
                  "transactionTimestamp":"2021-11-10T22:24:00.000Z",
                  "valueDate":"2021-11-11",
                  "txnId":"M7930879211",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11201.88",
                  "currentBalance":"265986.53",
                  "transactionTimestamp":"2021-11-30T22:24:00.000Z",
                  "valueDate":"2021-12-01",
                  "txnId":"M7930879212",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879169"
               },
               {
                  "type":"CREDIT",
                  "mode":"FT",
                  "amount":"11208.88",
                  "currentBalance":"277195.41",
                  "transactionTimestamp":"2021-12-07T22:24:00.000Z",
                  "valueDate":"2021-12-08",
                  "txnId":"M7930879213",
                  "narration":"NEFT-CITIN20080903889-MOTILAL OSWAL MLTICP 35FUND RED A",
                  "reference":"RFN02879170"
               }
            ]
         }
      }
   ],
   "linkRefNumbers":[
      {
         "linkRefNumber":"b520384b-7174-4951-98cf-b09574266e61",
         "fiStatus":"READY"
      },
      {
         "linkRefNumber":"f827f14d-81ad-4bf7-b0b9-4d09f510e748",
         "fiStatus":"READY"
      },
      {
         "linkRefNumber":"c56417f7-6d96-46f9-a03a-34b3d77c4fc9",
         "fiStatus":"READY"
      }
   ]
}
DATA_PUSH – TYPE 2
{
   "timestamp":"2023-03-10T06:26:11.587Z",
   "consentHandle":"5eada97a-9852-4227-9558-45849b2800a3",
   "eventType":"DATA_EXT",
   "eventStatus":"DATA_PUSH",
   "consentId":"3c92001e-57ea-4320-bbb8-66d524bfb435",
   "vua":"XXXXXXX773@onemoney",
   "eventMessage":"Data push for consent id3c92001e-57ea-4320-bbb8-66d524bfb435",
   "data":[
      {
         "linkReferenceNumber":"70814726-f02e-4db4-b380-df8d28ec6772",
         "maskedAccountNumber":"XXXXXXXX7300",
         "fiType":"DEPOSIT",
         "bank":"FinShareBankServer",
         "Summary":{
            "currentBalance":"213003.39",
            "currency":"INR",
            "exchgeRate":" ",
            "balanceDateTime":"2023-03-10T06:26:04.000Z",
            "type":"SAVINGS",
            "branch":"Jayanagar 4th Block",
            "facility":"OD",
            "ifscCode":"ICIC0001124",
            "micrCode":"500240246",
            "openingDate":"2004-08-06",
            "currentODLimit":"0",
            "drawingLimit":"0",
            "status":"ACTIVE",
            "Pending":[
               {
                  "amount":0,
                  "transactionType":"DEBIT"
               }
            ]
         },
         "Profile":{
            "Holders":{
               "type":"SINGLE",
               "Holder":[
                  {
                     "name":"Akshay Kumar",
                     "dob":"1947-08-15",
                     "mobile":"7730808773",
                     "nominee":"REGISTERED",
                     "landline":"",
                     "address":"8/1190, 5th Cross, 3rd Main, 7th Block, Jayanagar, Bangalore - 560011",
                     "email":"akshayku@gmail.com",
                     "pan":"AAAAA0000A",
                     "ckycCompliance":"true"
                  }
               ]
            }
         },
         "Transactions":{
            "startDate":"2023-03-07",
            "endDate":"2023-03-10",
            "Transaction":[
               {
                  "type":"CREDIT",
                  "mode":"Others",
                  "amount":"5752.68",
                  "currentBalance":"205807.36",
                  "transactionTimestamp":"2023-03-07T06:33:00.000Z",
                  "valueDate":"2023-03-07",
                  "txnId":"M1188796079",
                  "narration":"BIL/BPAY/001982030055/BSE ISIP/BSE000000034260 ",
                  "reference":"RFN03578486"
               },
               {
                  "type":"CREDIT",
                  "mode":"UPI",
                  "amount":"1360.43",
                  "currentBalance":"207167.79",
                  "transactionTimestamp":"2023-03-08T06:33:00.000Z",
                  "valueDate":"2023-03-08",
                  "txnId":"M1394275292",
                  "narration":"NEFT-SBIN120163800892-PRINCIPAL MUTUAL FUND-/ATTN//INB-",
                  "reference":"RFN01165789"
               },
               {
                  "type":"CREDIT",
                  "mode":"Others",
                  "amount":"5835.60",
                  "currentBalance":"213003.39",
                  "transactionTimestamp":"2023-03-09T06:33:00.000Z",
                  "valueDate":"2023-03-09",
                  "txnId":"M5956677032",
                  "narration":"CMS/000651994446/AD_LIC__648652702 ",
                  "reference":"RFN01560689"
               }
            ]
         }
      }
   ],
   "productID":"AGENT",
   "accountID":"AGENT1678429501561",
   "fetchType":"ONETIME",
   "consentExpiry":"2023-03-11 06:25:13",
   "dataExpiry":"2023-04-10T06:26:10.000Z",
   "firstTimeFetch":true,
   "linkRefNumbers":[
      {
         "linkRefNumber":"70814726-f02e-4db4-b380-df8d28ec6772",
         "fiStatus":"READY",
         "fipName":"FinShareBankServer",
         "fipId":"finsharebank",
         "maskedAccountNumber":"XXXXXXXX7300"
      }
   ]
}