Fund Statement Status
This status of fetching the bank statement through the account aggregation process. This status is updated whenever bank statement is fetched successfully or if the bank statement fetch fails
Payload
Field | Type | Description |
---|---|---|
eventId | String | Unique Event Identifier |
eventCd | String | Event Type |
timestamp | String | Time of the Queue Entry |
payload | Object | Payload Object with the Details about the fund transaction |
payload.transactionId | String | Unique id of transaction |
payload.statusReason | String | Transaction status reason (ex: Payment gateway - payment recd, waiting for docs) |
payload.reasonCode | String | Mentioned in the table below |
payload.statementStatus | String | STATEMENT_RECEIVED / STATEMENT_FAILD |
payload.custId | String | Unique Customer Identifier |
{
"eventId": "69ca71a4-e07b-4b5b-8b2c-e8e086634d45",
"eventCd": "fund.statementStatus",
"timestamp" : "2022-12-10T09:27:32.316Z",
"payload": {
"transactionId": "5ccab76b-9b47-4fa1-86e8-4d9db2fb6ebf",
"statusReason": “statement received”,
“reasonCode”: “”,
"statementStatus": “STATEMENT_RECEIVED”,
"custId" : "fcdd0bdb-10a8-440a-8c43-d79a5fcaf52e"
}
}
Status Reason
Reason Code | Status | Reason Message |
---|---|---|
STOF0042 | STATEMENT_FAILED | Bank statement aggregation failed, the user will need to upload via manual route |
STOF0043 | STATEMENT_RECEIVED | The bank statement has been fetched |
Updated about 2 years ago