Guides

GET_TRANSACTION_STATEMENT

This API is used to get the transaction statement (max. 20 transactions) with all the transaction details for a user defined time period.

Request

    payload: {
       "accountNo": "100710527800",
        "startDate": "2024-09-10T11:22:15Z",
        "endDate": "2024-09-11T16:22:15Z",
        "numberOfTxn": "10",
        "sortingOrder": "ASC"
    }

Response

{
    "headers": {},
    "body": {
        "accountNo": "100710527800",
        "transactionDetailDTOS": [
            {
                "postedDate": "2024-09-11T14:55:49.000",
                "transactionDate": "11/09/24",
                "transactionDesc": "TESTING                                           ",
                "transactionType": "Credited",
                "transactionAmount": "80000.00",
                "balance": "80000.00",
                "transactionId": "    DC563",
                "transactionSrNo": "   2"
            },
            {
                "postedDate": "2024-09-11T15:49:57.000",
                "transactionDate": "11/09/24",
                "transactionDesc": "NEFT/EB/SMCBH24255000122/PRACHI/XX7800/           ",
                "transactionType": "Debited",
                "transactionAmount": "10.00",
                "balance": "79990.00",
                "transactionId": "  S913756",
                "transactionSrNo": "   1"
            }
        ]
    },
    "statusCode": "OK",
    "statusCodeValue": 200
}