Get Statement
  Pull the list of your Bulkpe transactions including Success, Failed, and Pending using this API. You can apply filters as mentioned in the request body.
  API URL: https://api.bulkpe.in/client/accountStatement
  Method: POST
Auth: Please refer to the Authorization page.
{
    "page": 1,
    "limit": 50,
    //below all parameters are optional, can be used for better querying.
    "fromDate": "2024-03-01", //to filter by date: YYYY-MM-DD
    "toDate": "2024-03-29", //to filter by date: YYYY-MM-DD
    "type": "DEBIT", // DEBIT, CREDIT
    "paymentMode": "IMPS", // IMPS, NEFT, RTGS, UPI
    "status": "SUCCESS" // SUCCESS, PENDING, FAILED
    
    // "vaId": "", //optional param to filer by sub virtual accounts
    // "connectedAccountNumber": "502002821068" //filter param for connected banking accounts
}
  | Page | Page number > 0 | Int | 
| Limit | Limit > 0 | Int | 
| fromDate | Date Value | YYYY-MM-DD | 
| toDate | Date Value | YYYY-MM-DD | 
| vaId | Sub VA ID | SVA0161929 | 
| connectedAccountNumber | Account Number | For example: NSDL Account Number | 
{
    "status": true,
    "statusCode": 200,
    "data": [
        {
            "transcation_id": "TRAREF00030787123",
            "reference_id": "TNX001",
            "beneficiaryName": "Steve Jobs",
            "account_number": "50100267234",
            "ifsc": "HDFC0000600",
            "amount": 1,
            "payment_mode": "IMPS",
            "payment_remark": "monthly payout",
            "statusDescription": "Invalid Account",
            "status": "FAILED",
            "utr": "417115567092",
            "holderName": "",
            "type": "Debit",
            "charge": 0,
            "gst": 0,
            "settelment_amount": "1.00",
            "closing_balance": "83.48",
            "createdAt": "2024-06-19T10:15:16.804Z",
            "updatedAt": "2024-06-19T10:15:41.649Z",
            "isVirtualAccount": false,
            "SubVaId": "",
            "vaName": "",
            "SubVaAccountNumber": "",
            "isSetteled": true
        },
        {
            "transcation_id": "TRAREF000268578915",
            "reference_id": "",
            "beneficiaryName": "BulkpePenny26857216",
            "account_number": "RichardHendricks@upi",
            "ifsc": "",
            "amount": 0,
            "payment_mode": "UPI",
            "payment_remark": "",
            "statusDescription": "Transaction Success",
            "status": "SUCCESS",
            "utr": "",
            "holderName": "Richard Hendricks",
            "type": "Debit",
            "charge": 0,
            "gst": 0,
            "settelment_amount": "0.00",
            "closing_balance": "83.48",
            "createdAt": "2024-06-11T09:57:22.381Z",
            "updatedAt": "2024-06-11T09:57:22.559Z",
            "isVirtualAccount": false,
            "SubVaId": "",
            "vaName": "",
            "SubVaAccountNumber": "",
            "isSetteled": true
        },
        {
            "transcation_id": "TRAREF00023757827",
            "reference_id": "",
            "beneficiaryName": "Richar Hendricks",
            "account_number": "123456789",
            "ifsc": "UTIB0CCH274",
            "amount": 100,
            "payment_mode": "neft",
            "payment_remark": "testcredits",
            "statusDescription": "testcredits",
            "status": "SUCCESS",
            "utr": "232323232323",
            "holderName": "",
            "type": "Credit",
            "charge": 0,
            "gst": 0,
            "settelment_amount": "100.00",
            "closing_balance": "100.00",
            "createdAt": "2024-05-28T10:36:35.791Z",
            "updatedAt": "2024-05-28T10:36:35.814Z",
            "isVirtualAccount": false,
            "SubVaId": "",
            "vaName": "",
            "SubVaAccountNumber": "",
            "isSetteled": true
        }
    ],
    "message": "",
    "total": 3
}