Settlement Detail Range API

Settlement Details Range API provides transaction level data for a given date or date range. This API returns paginated response for the given input page and page size.

Environment

Request parameters

Header parameters

The API needs encoded key and salt and date time when the request was generated in the header for authorisation. The following values that are needed in header:

  • Date: date time when request was triggerd (Wed, 28 Jun 2023 11:25:19 GMT)
  • Authorisation: TheSHA512 token generated from the current date time, key and salt for the MID. Below is JS function to get the same.
var merchant_key = '<key>';
var merchant_secret = '<salt or secret>';

// date
var date = new Date();
// var date = "Wed, 28 Jun 2023 11:25:19 GMT";
date = new Date().toUTCString();

// authorization
var authorization = getAuthHeader(date);
 
function getAuthHeader(date) {
  var AUTH_TYPE = 'sha512';
  var data = isEmpty(request['data'])?"":request['data'];
  var hash_string = data + '|' + date + '|' + merchant_secret;
  console.log("Hash String is ", hash_string);
  var hash = CryptoJS.SHA512(hash_string).toString(CryptoJS.enc.Hex);
  var authHeader = 'hmac username="' + merchant_key + '", ' + 'algorithm="' + AUTH_TYPE + '", headers="date", signature="' + hash + '"'
  return authHeader;
}

Query Parameters

ParameterDescriptionExample
dateFrom
mandatory
This parameter must contain from date for the settlement range is required is in YYYY-MM-DD format. 2024-03-26
dateTo
optional
This parameter must contain date for the settlement range is required is in YYYY-MM-DD format. 
Note: Date range is cannot be more tha. 3 days, so dateTo value must be posted accordingly.
2024-03-28
pageSize
optional
This parameter must contain the number of records to be paginated on each page is specified in this parameter. By default, the value is 100. 1000
page
optional
This parameter must contain the page to be displayed.1

Sample request

curl --location 'https://apitest.payu.in/settlement/range/?pageSize=200&page=1&dateFrom=2025-02-04' \
--header 'Authorization: hmac username="NpXRwp", algorithm="sha512", headers="date", signature="df282e193cc74618e8f7e13097acab38c321fc17ceed770f71ba5f4cb5e672a2b74a9b86ac8ba8baa3074cf740d1d91075bd3122acfa10833361d5f797a123a9"' \
--header 'date: Tue, 04 Feb 2025 12:09:59 GMT' \
--header 'mid: 114757' 

Response parameters

The description of fields in the data JSON of the response:

ParameterFieldsSample Value
settlementIdThis parameter contains a unique settlement ID generated by PayU.8763692202306200915
settlementCompletedDateThis parameter contains settlement completion date.2023-06-20 11:00:03
settlementAmountThis parameter contains settlement amount.10.00
merchantIdThis parameter contains a merchant ID that is provided by PayU.8763692
utrNumberThis parameter contains an alphanumeric code generated by banks when a transaction is executed. This number serves as a reference code that helps track and identify specific transactions and their status.UTIBR72023062000022728
transactionThis parameter contains the transaction details in a JSON format. For more information, refer to transaction JSON fields desciption.Refer to sample response.

transaction JSON fields description

The description of fields in the transaction JSON of the response:

FieldDescriptionExample
actionThis parameter contains the action taken on the transaction. The action can be any of the following:
capture

refund

cancel
chargeback
chargeback reversal
refundreversal
refund
payuidThis parameter contains a unique reference number created for each transaction at PayU’s end. You must note this transaction ID as this will be used as a reference for all the future actions on this transaction like Inquiry or Refund.403993715521937565
parentPayuIdThis parameter contains a parent PayU ID in case of Split Payment transactions.
requestidThis parameter contains the request ID value posted by the merchant during the transaction request.131278418
transactionAmountThis parameter contains the original amount which was sent in the transaction request by the merchant.100
merchantServiceFeeThis parameter contains the service fee paid by the merchant to the bank. for the transaction239.6000
merchantServiceTaxThis parameter contains the tax on service fee paid by the merchant to the bank. for the transaction43.1300
merchantNetAmountThis parameter contains the net amount to be settled by bank to merchant.100
merchantTransactionIdThis parameter contains the transaction ID of the transaction.13818
cgstThis parameter contains the CGST (Central GST) for the transaction.43.13000
igstThis parameter contains the IGST (Integrated GST) for the transaction.43.13000
sgstThis parameter contains the SGST (State GST) for the transaction where the supplier or merchant is from a different state of the customer.43.13000
modeThis parameter contains the mode of the transaction such as credit card, debit card, etc. For more information, refer to Payment Mode Codes.CC
payemntStatus
transactionDateThis parameter contains the date of the transaction.2021-08-10 23:46:25
requestDateThis parameter contains the request date and time stamp.2021-08-10 23:49:16
requestedAmountThe parameter contains the amount requested by the merchant to the bank.100
bankNameThis parameter contains the bank name or the card type based on the transaction.MAST
offerServiceFeeThis parameter contains the service fee incurred for offer if the transaction involved offer.2
offerServiceTaxThis parameter contains service tax incurred for offer if the transaction involved offer.0.36

To learn more about the possible error codes and their description, refer to Error Codes.

Sample response

Success Sscenarios

  • Only Start date is provided
{
    "status": 0,
    "result": {
        "page": 1,
        "size": 13,
        "totalCount": 14,
        "data": [
            {
                "settlementId": "114757202502051245",
                "settlementCompletedDate": "2025-02-04 17:18:21",
                "settlementAmount": "190806.60",
                "merchantId": 114757,
                "utrNumber": "AXIS2345",
                "transaction": [
                    {
                        "action": "capture",
                        "payuId": "403993715533296817",
                        "requestId": "137726099",
                        "transactionAmount": "10.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "d5f1c4a0bf65655eae3f",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 17:09:10",
                        "requestDate": "2025-02-04 11:39:19",
                        "requestedAmount": "10.00",
                        "bankName": "TESTPGNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296767",
                        "requestId": "137726067",
                        "transactionAmount": "6949.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6949.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qeledwFSJEUDYDWC2P-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 17:05:49",
                        "requestDate": "2025-02-04 11:35:56",
                        "requestedAmount": "6949.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "Retail",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296682",
                        "requestId": "137726010",
                        "transactionAmount": "4635.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "4635.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qee5q33SRSQL9C23XQ-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 17:00:11",
                        "requestDate": "2025-02-04 11:30:19",
                        "requestedAmount": "4635.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autonew_bikemo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296659",
                        "requestId": "137725996",
                        "transactionAmount": "4575.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "4575.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qebw7z3TI3TCKFSFDR-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:58:38",
                        "requestDate": "2025-02-04 11:28:47",
                        "requestedAmount": "4575.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autonew_bikemo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296600",
                        "requestId": "137725955",
                        "transactionAmount": "21087.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "21087.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qe75me7B56FFGDKBMV-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:54:40",
                        "requestDate": "2025-02-04 11:24:50",
                        "requestedAmount": "21087.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autoprivate_carmo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296479",
                        "requestId": "137725883",
                        "transactionAmount": "9299.0",
                        "merchantServiceFee": "88.34000",
                        "merchantServiceTax": "15.90000",
                        "merchantNetAmount": "9299.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "15.90000",
                        "merchantTransactionId": "acko_general-m6qdxrhbMWNNKYK0OGGA-1",
                        "cardType": "domestic",
                        "mode": "CC",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:47:35",
                        "requestDate": "2025-02-04 11:17:48",
                        "requestedAmount": "9299.00",
                        "bankName": "CC",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "Retail",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "15.90000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "88.34000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296403",
                        "requestId": "137725832",
                        "transactionAmount": "6949.0",
                        "merchantServiceFee": "66.02000",
                        "merchantServiceTax": "11.88000",
                        "merchantNetAmount": "6949.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "11.88000",
                        "merchantTransactionId": "acko_general-m6qdr6q82IXCCMH87S3J-1",
                        "cardType": "domestic",
                        "mode": "CC",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:42:26",
                        "requestDate": "2025-02-04 11:12:38",
                        "requestedAmount": "6949.00",
                        "bankName": "CC",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "Retail",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "11.88000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "66.02000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296379",
                        "requestId": "137725818",
                        "transactionAmount": "15363.6",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "15363.6",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qdpebgYQDZT04I8EYU-1",
                        "cardType": "domestic",
                        "mode": "CC",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:41:18",
                        "requestDate": "2025-02-04 11:11:31",
                        "requestedAmount": "15363.60",
                        "bankName": "CC",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "retail",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533296275",
                        "requestId": "137725750",
                        "transactionAmount": "21643.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "21643.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qdgjc8CW14G2QH6CEE-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:33:57",
                        "requestDate": "2025-02-04 11:04:05",
                        "requestedAmount": "21643.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autoprivate_new_carmo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533295929",
                        "requestId": "137725578",
                        "transactionAmount": "6737.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6737.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qclj0qA53LIAE0AOFI-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:09:53",
                        "requestDate": "2025-02-04 10:40:04",
                        "requestedAmount": "6737.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autoprivate_carmo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533295927",
                        "requestId": "137725574",
                        "transactionAmount": "5999.0",
                        "merchantServiceFee": "56.99000",
                        "merchantServiceTax": "10.26000",
                        "merchantNetAmount": "5999.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "10.26000",
                        "merchantTransactionId": "et-L0jGYBUdE1nlvjMoeU-1",
                        "cardType": "domestic",
                        "mode": "CC",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:09:43",
                        "requestDate": "2025-02-04 10:39:55",
                        "requestedAmount": "5999.00",
                        "bankName": "CC",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "WEB",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "10.26000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "56.99000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533295870",
                        "requestId": "137725534",
                        "transactionAmount": "6737.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6737.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qcg64nQL9L70ERZO8K-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:05:47",
                        "requestDate": "2025-02-04 10:35:58",
                        "requestedAmount": "6737.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autoprivate_carmo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "403993715533295862",
                        "requestId": "137725530",
                        "transactionAmount": "56767.0",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "56767.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "acko_general-m6qcfxxsITAATN6NHS2U-1",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2025-02-04 16:05:29",
                        "requestDate": "2025-02-04 10:35:36",
                        "requestedAmount": "56767.00",
                        "bankName": "AXIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00",
                        "forexAmount": "0.00",
                        "discount": "0.00",
                        "udf2": "autoprivate_new_carmo",
                        "additionalTdrFee": "0.00",
                        "totalServiceTax": "0.00000",
                        "transactionCurrency": "INR",
                        "settlementCurrency": "INR",
                        "totalProcessingFee": "0.00000",
                        "additionalTdrTax": "0.00"
                    }
                ]
            }
        ]
    }
}
  • Start date and End date are provided
{
    "status": 0,
    "result": {
        "page": 1,
        "size": 200,
        "totalCount": 3666,
        "data": [
            {
                "settlementId": "8763692202306210915",
                "settlementCompletedDate": "2023-06-21 10:30:04",
                "settlementAmount": "72290243.51",
                "merchantId": 8763692,
                "utrNumber": "UTIBR72023062100032746",
                "transaction": [
                    {
                        "action": "capture",
                        "payuId": "17582956258",
                        "parentPayuId": "17582955571",
                        "requestId": "12277542863",
                        "transactionAmount": "60000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872856738328302",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:58:23",
                        "requestDate": "2023-06-20 23:58:23",
                        "requestedAmount": "60000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582954836",
                        "parentPayuId": "17582953952",
                        "requestId": "12277541840",
                        "transactionAmount": "30000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "30000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872856006580808",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:58:01",
                        "requestDate": "2023-06-20 23:58:01",
                        "requestedAmount": "30000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582934931",
                        "parentPayuId": "17582933216",
                        "requestId": "12277527553",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687285349871452",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:53:03",
                        "requestDate": "2023-06-20 23:53:03",
                        "requestedAmount": "50000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582928335",
                        "parentPayuId": "17582927726",
                        "requestId": "12277522626",
                        "transactionAmount": "24525.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "24525.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872852539906647",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:51:18",
                        "requestDate": "2023-06-20 23:51:18",
                        "requestedAmount": "24525.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582916594",
                        "parentPayuId": "17582915556",
                        "requestId": "12277514382",
                        "transactionAmount": "37000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "37000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687285074583609",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:48:23",
                        "requestDate": "2023-06-20 23:48:23",
                        "requestedAmount": "37000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582899008",
                        "parentPayuId": "17582895230",
                        "requestId": "12277501385",
                        "transactionAmount": "242000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "242000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872847826721928",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:44:01",
                        "requestDate": "2023-06-20 23:44:01",
                        "requestedAmount": "242000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582893172",
                        "parentPayuId": "17582885828",
                        "requestId": "12277497257",
                        "transactionAmount": "200000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "200000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872846547707746",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:42:41",
                        "requestDate": "2023-06-20 23:42:41",
                        "requestedAmount": "200000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582859493",
                        "parentPayuId": "17582858527",
                        "requestId": "12277474686",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872843035284371",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:35:24",
                        "requestDate": "2023-06-20 23:35:24",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582853199",
                        "parentPayuId": "17582849906",
                        "requestId": "12277470343",
                        "transactionAmount": "150000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "150000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872841944051435",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:34:04",
                        "requestDate": "2023-06-20 23:34:04",
                        "requestedAmount": "150000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582848983",
                        "parentPayuId": "17582843845",
                        "requestId": "12277467550",
                        "transactionAmount": "24643.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "24643.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687284110831849",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:33:09",
                        "requestDate": "2023-06-20 23:33:09",
                        "requestedAmount": "24643.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582827126",
                        "parentPayuId": "17582825649",
                        "requestId": "12277451772",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872838827415078",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:28:22",
                        "requestDate": "2023-06-20 23:28:22",
                        "requestedAmount": "20000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582795013",
                        "parentPayuId": "17582793844",
                        "requestId": "12277428327",
                        "transactionAmount": "6.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687283485968436",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:21:46",
                        "requestDate": "2023-06-20 23:21:46",
                        "requestedAmount": "6.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582793478",
                        "parentPayuId": "17582786738",
                        "requestId": "12277427210",
                        "transactionAmount": "35824.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "35824.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872833961145916",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:21:28",
                        "requestDate": "2023-06-20 23:21:28",
                        "requestedAmount": "35824.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582775853",
                        "parentPayuId": "17582771672",
                        "requestId": "12277414289",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872832129048657",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:17:53",
                        "requestDate": "2023-06-20 23:17:53",
                        "requestedAmount": "50000.00",
                        "bankName": "AUSFNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582773073",
                        "parentPayuId": "17582770732",
                        "requestId": "12277412151",
                        "transactionAmount": "75000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "75000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872832046043656",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:17:18",
                        "requestDate": "2023-06-20 23:17:18",
                        "requestedAmount": "75000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582772772",
                        "parentPayuId": "17582771595",
                        "requestId": "12277411960",
                        "transactionAmount": "10000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687283212793847",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:17:15",
                        "requestDate": "2023-06-20 23:17:15",
                        "requestedAmount": "10000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582768538",
                        "parentPayuId": "17582766746",
                        "requestId": "12277408910",
                        "transactionAmount": "400.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "400.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872831504605405",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:16:24",
                        "requestDate": "2023-06-20 23:16:24",
                        "requestedAmount": "400.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582768459",
                        "parentPayuId": "17582764770",
                        "requestId": "12277408855",
                        "transactionAmount": "42000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "42000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872831300812318",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:16:23",
                        "requestDate": "2023-06-20 23:16:23",
                        "requestedAmount": "42000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582766248",
                        "parentPayuId": "17582761053",
                        "requestId": "12277407226",
                        "transactionAmount": "187820.81",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "187820.81",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687283087032285",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:15:56",
                        "requestDate": "2023-06-20 23:15:56",
                        "requestedAmount": "187820.81",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582763280",
                        "parentPayuId": "17582754987",
                        "requestId": "12277405034",
                        "transactionAmount": "250000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "250000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687283009150169",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:15:20",
                        "requestDate": "2023-06-20 23:15:20",
                        "requestedAmount": "250000.00",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582758974",
                        "parentPayuId": "17582752807",
                        "requestId": "12277401863",
                        "transactionAmount": "170000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "170000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872829865576928",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:14:28",
                        "requestDate": "2023-06-20 23:14:28",
                        "requestedAmount": "170000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582758564",
                        "parentPayuId": "17582753780",
                        "requestId": "12277401570",
                        "transactionAmount": "205985.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "205985.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872829939164598",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:14:23",
                        "requestDate": "2023-06-20 23:14:23",
                        "requestedAmount": "205985.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582751108",
                        "parentPayuId": "17582748353",
                        "requestId": "12277395995",
                        "transactionAmount": "118923.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "118923.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872829324706194",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:12:52",
                        "requestDate": "2023-06-20 23:12:52",
                        "requestedAmount": "118923.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582744199",
                        "parentPayuId": "17582742828",
                        "requestId": "12277390817",
                        "transactionAmount": "23000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "23000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872828632982044",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:11:28",
                        "requestDate": "2023-06-20 23:11:28",
                        "requestedAmount": "23000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582732019",
                        "parentPayuId": "17582729783",
                        "requestId": "12277381700",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872827004746113",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:09:01",
                        "requestDate": "2023-06-20 23:09:01",
                        "requestedAmount": "50000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582720042",
                        "parentPayuId": "17582718590",
                        "requestId": "12277372668",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "168728256913089",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:06:36",
                        "requestDate": "2023-06-20 23:06:36",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582717910",
                        "parentPayuId": "17582715236",
                        "requestId": "12277371114",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872825260171068",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:06:11",
                        "requestDate": "2023-06-20 23:06:11",
                        "requestedAmount": "20000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582708897",
                        "parentPayuId": "17582708261",
                        "requestId": "12277364393",
                        "transactionAmount": "1000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "1000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872824499496627",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:04:24",
                        "requestDate": "2023-06-20 23:04:24",
                        "requestedAmount": "1000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582708820",
                        "parentPayuId": "17582707490",
                        "requestId": "12277364342",
                        "transactionAmount": "9257.79",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "9257.79",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872824295485978",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:04:24",
                        "requestDate": "2023-06-20 23:04:24",
                        "requestedAmount": "9257.79",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582708136",
                        "parentPayuId": "17582703503",
                        "requestId": "12277363840",
                        "transactionAmount": "142741.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "142741.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872823880318954",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:04:15",
                        "requestDate": "2023-06-20 23:04:15",
                        "requestedAmount": "142741.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582705799",
                        "parentPayuId": "17582701864",
                        "requestId": "12277362125",
                        "transactionAmount": "25692.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "25692.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872823733450453",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:03:47",
                        "requestDate": "2023-06-20 23:03:47",
                        "requestedAmount": "25692.00",
                        "bankName": "CABB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582704286",
                        "parentPayuId": "17582701016",
                        "requestId": "12277361033",
                        "transactionAmount": "6337.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6337.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872823392680724",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:03:29",
                        "requestDate": "2023-06-20 23:03:29",
                        "requestedAmount": "6337.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582702362",
                        "parentPayuId": "17582694459",
                        "requestId": "12277359643",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872822934477851",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:03:07",
                        "requestDate": "2023-06-20 23:03:07",
                        "requestedAmount": "50000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582695664",
                        "parentPayuId": "17582694750",
                        "requestId": "12277354637",
                        "transactionAmount": "17506.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "17506.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872822907872243",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:01:48",
                        "requestDate": "2023-06-20 23:01:48",
                        "requestedAmount": "17506.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582695506",
                        "parentPayuId": "17582692335",
                        "requestId": "12277354531",
                        "transactionAmount": "250000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "250000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872822614931705",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:01:46",
                        "requestDate": "2023-06-20 23:01:46",
                        "requestedAmount": "250000.00",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582692823",
                        "parentPayuId": "17582690965",
                        "requestId": "12277352507",
                        "transactionAmount": "9000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "9000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687282244097398",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:01:14",
                        "requestDate": "2023-06-20 23:01:14",
                        "requestedAmount": "9000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582692649",
                        "parentPayuId": "17582688460",
                        "requestId": "12277352410",
                        "transactionAmount": "94650.87",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "94650.87",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872821970327358",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 23:01:12",
                        "requestDate": "2023-06-20 23:01:12",
                        "requestedAmount": "94650.87",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582670860",
                        "parentPayuId": "17582667894",
                        "requestId": "12277336281",
                        "transactionAmount": "77520.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "77520.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872819818082893",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:56:59",
                        "requestDate": "2023-06-20 22:56:59",
                        "requestedAmount": "77520.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582666921",
                        "parentPayuId": "17582662402",
                        "requestId": "12277333274",
                        "transactionAmount": "200000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "200000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872819175052524",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:56:15",
                        "requestDate": "2023-06-20 22:56:15",
                        "requestedAmount": "200000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582660945",
                        "parentPayuId": "17582658744",
                        "requestId": "12277328830",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687281875151034",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:55:10",
                        "requestDate": "2023-06-20 22:55:10",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582640953",
                        "parentPayuId": "17582615522",
                        "requestId": "12277313743",
                        "transactionAmount": "100000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "100000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872813781482165",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:51:27",
                        "requestDate": "2023-06-20 22:51:27",
                        "requestedAmount": "100000.00",
                        "bankName": "CSBN",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582623712",
                        "parentPayuId": "17582617238",
                        "requestId": "12277300803",
                        "transactionAmount": "75000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "75000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872814183700106",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:48:19",
                        "requestDate": "2023-06-20 22:48:19",
                        "requestedAmount": "75000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582606698",
                        "parentPayuId": "17582595805",
                        "requestId": "12277287921",
                        "transactionAmount": "25000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "25000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872811823524938",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:45:13",
                        "requestDate": "2023-06-20 22:45:13",
                        "requestedAmount": "25000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582601795",
                        "parentPayuId": "17582579853",
                        "requestId": "12277284384",
                        "transactionAmount": "29560.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "29560.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687281012155155",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:44:19",
                        "requestDate": "2023-06-20 22:44:19",
                        "requestedAmount": "29560.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582571180",
                        "parentPayuId": "17582556785",
                        "requestId": "12277262079",
                        "transactionAmount": "19000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "19000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687280772589435",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:38:52",
                        "requestDate": "2023-06-20 22:38:52",
                        "requestedAmount": "19000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582566913",
                        "parentPayuId": "17582564878",
                        "requestId": "12277259029",
                        "transactionAmount": "26449.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "26449.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872808543441138",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:38:06",
                        "requestDate": "2023-06-20 22:38:06",
                        "requestedAmount": "26449.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582550896",
                        "parentPayuId": "17582546370",
                        "requestId": "12277247330",
                        "transactionAmount": "65000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "65000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872806642247696",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:35:19",
                        "requestDate": "2023-06-20 22:35:19",
                        "requestedAmount": "65000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582544852",
                        "parentPayuId": "17582536225",
                        "requestId": "12277242952",
                        "transactionAmount": "75000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "75000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872805509692833",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:34:17",
                        "requestDate": "2023-06-20 22:34:17",
                        "requestedAmount": "75000.00",
                        "bankName": "INDB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582538214",
                        "parentPayuId": "17582533925",
                        "requestId": "12277238186",
                        "transactionAmount": "66213.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "66213.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687280540445593",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:33:10",
                        "requestDate": "2023-06-20 22:33:10",
                        "requestedAmount": "66213.00",
                        "bankName": "AUSFNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582510143",
                        "parentPayuId": "17582502477",
                        "requestId": "12277217765",
                        "transactionAmount": "31708.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31708.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872801970626457",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:28:16",
                        "requestDate": "2023-06-20 22:28:16",
                        "requestedAmount": "31708.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582506973",
                        "parentPayuId": "17582499373",
                        "requestId": "12277215541",
                        "transactionAmount": "250000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "250000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872801605957465",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:27:39",
                        "requestDate": "2023-06-20 22:27:39",
                        "requestedAmount": "250000.00",
                        "bankName": "PNBB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582487235",
                        "parentPayuId": "17582483496",
                        "requestId": "12277201546",
                        "transactionAmount": "999.66",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "999.66",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872799833899174",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:23:51",
                        "requestDate": "2023-06-20 22:23:51",
                        "requestedAmount": "999.66",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582485259",
                        "parentPayuId": "17582484166",
                        "requestId": "12277200251",
                        "transactionAmount": "79500.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "79500.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872799815480173",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:23:29",
                        "requestDate": "2023-06-20 22:23:29",
                        "requestedAmount": "79500.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582482371",
                        "parentPayuId": "17582470676",
                        "requestId": "12277198258",
                        "transactionAmount": "150000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "150000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872798308467603",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:22:55",
                        "requestDate": "2023-06-20 22:22:55",
                        "requestedAmount": "150000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582474792",
                        "parentPayuId": "17582473684",
                        "requestId": "12277192944",
                        "transactionAmount": "10000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872798738077435",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:21:31",
                        "requestDate": "2023-06-20 22:21:31",
                        "requestedAmount": "10000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582466925",
                        "parentPayuId": "17582465414",
                        "requestId": "12277187451",
                        "transactionAmount": "36863.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "36863.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872797807937653",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:20:06",
                        "requestDate": "2023-06-20 22:20:06",
                        "requestedAmount": "36863.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582458680",
                        "parentPayuId": "17582457186",
                        "requestId": "12277181783",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687279694328553",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:18:38",
                        "requestDate": "2023-06-20 22:18:38",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582454317",
                        "parentPayuId": "17582452655",
                        "requestId": "12277178895",
                        "transactionAmount": "10.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687279644570855",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:17:52",
                        "requestDate": "2023-06-20 22:17:52",
                        "requestedAmount": "10.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582450642",
                        "parentPayuId": "17582441508",
                        "requestId": "12277176369",
                        "transactionAmount": "55000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "55000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872795236503587",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:17:12",
                        "requestDate": "2023-06-20 22:17:12",
                        "requestedAmount": "55000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582449009",
                        "parentPayuId": "17582448085",
                        "requestId": "12277175210",
                        "transactionAmount": "5000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "5000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687279598551809",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:16:54",
                        "requestDate": "2023-06-20 22:16:54",
                        "requestedAmount": "5000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582443933",
                        "parentPayuId": "17582441668",
                        "requestId": "12277171683",
                        "transactionAmount": "26618.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "26618.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872795215148616",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:15:59",
                        "requestDate": "2023-06-20 22:15:59",
                        "requestedAmount": "26618.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582437518",
                        "parentPayuId": "17582434522",
                        "requestId": "12277167154",
                        "transactionAmount": "36666.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "36666.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687279450330465",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:14:51",
                        "requestDate": "2023-06-20 22:14:51",
                        "requestedAmount": "36666.00",
                        "bankName": "SVCNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582436825",
                        "parentPayuId": "17582426713",
                        "requestId": "12277166594",
                        "transactionAmount": "75000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "75000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872793606797047",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:14:43",
                        "requestDate": "2023-06-20 22:14:43",
                        "requestedAmount": "75000.00",
                        "bankName": "BBRB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582434876",
                        "parentPayuId": "17582427111",
                        "requestId": "12277165308",
                        "transactionAmount": "60000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872793727308462",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:14:22",
                        "requestDate": "2023-06-20 22:14:22",
                        "requestedAmount": "60000.00",
                        "bankName": "CABB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582427250",
                        "parentPayuId": "17582421386",
                        "requestId": "12277159714",
                        "transactionAmount": "49000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "49000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872792990474806",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:12:54",
                        "requestDate": "2023-06-20 22:12:54",
                        "requestedAmount": "49000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582426964",
                        "parentPayuId": "17582424974",
                        "requestId": "12277159515",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872793211449134",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:12:51",
                        "requestDate": "2023-06-20 22:12:51",
                        "requestedAmount": "50000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582392284",
                        "parentPayuId": "17582383078",
                        "requestId": "12277134474",
                        "transactionAmount": "74071.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "74071.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872788718797941",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:06:24",
                        "requestDate": "2023-06-20 22:06:24",
                        "requestedAmount": "74071.00",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582389243",
                        "parentPayuId": "17582384967",
                        "requestId": "12277132356",
                        "transactionAmount": "5000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "5000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872788921218946",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:05:50",
                        "requestDate": "2023-06-20 22:05:50",
                        "requestedAmount": "5000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582389147",
                        "parentPayuId": "17582384320",
                        "requestId": "12277132277",
                        "transactionAmount": "123479.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "123479.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872788879003613",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:05:49",
                        "requestDate": "2023-06-20 22:05:49",
                        "requestedAmount": "123479.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582377767",
                        "parentPayuId": "17582374827",
                        "requestId": "12277123962",
                        "transactionAmount": "35154.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "35154.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872787647175279",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:03:47",
                        "requestDate": "2023-06-20 22:03:47",
                        "requestedAmount": "35154.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582369798",
                        "parentPayuId": "17582362158",
                        "requestId": "12277118074",
                        "transactionAmount": "99000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "99000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687278648848514",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 22:02:19",
                        "requestDate": "2023-06-20 22:02:19",
                        "requestedAmount": "99000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582348424",
                        "parentPayuId": "17582345006",
                        "requestId": "12277102562",
                        "transactionAmount": "400000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "400000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872784752952673",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:58:32",
                        "requestDate": "2023-06-20 21:58:32",
                        "requestedAmount": "400000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582348412",
                        "parentPayuId": "17582346833",
                        "requestId": "12277102551",
                        "transactionAmount": "21000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "21000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872784860413063",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:58:32",
                        "requestDate": "2023-06-20 21:58:32",
                        "requestedAmount": "21000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582331599",
                        "parentPayuId": "17582155395",
                        "requestId": "12277090353",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872764353385363",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:55:31",
                        "requestDate": "2023-06-20 21:55:31",
                        "requestedAmount": "20000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582298094",
                        "parentPayuId": "17582296737",
                        "requestId": "12277066189",
                        "transactionAmount": "29307.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "29307.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872779549549356",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:49:34",
                        "requestDate": "2023-06-20 21:49:34",
                        "requestedAmount": "29307.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582281822",
                        "parentPayuId": "17582279791",
                        "requestId": "12277054338",
                        "transactionAmount": "728625.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "728625.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687277767011768",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:46:37",
                        "requestDate": "2023-06-20 21:46:37",
                        "requestedAmount": "728625.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582280628",
                        "parentPayuId": "17582274690",
                        "requestId": "12277053567",
                        "transactionAmount": "77903.44",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "77903.44",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872777115472226",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:46:24",
                        "requestDate": "2023-06-20 21:46:24",
                        "requestedAmount": "77903.44",
                        "bankName": "YESB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582271221",
                        "parentPayuId": "17582270428",
                        "requestId": "12277046214",
                        "transactionAmount": "43000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "43000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687277669764311",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:44:45",
                        "requestDate": "2023-06-20 21:44:45",
                        "requestedAmount": "43000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582266856",
                        "parentPayuId": "17582265700",
                        "requestId": "12277043188",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872776167457626",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:43:58",
                        "requestDate": "2023-06-20 21:43:58",
                        "requestedAmount": "50000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582264850",
                        "parentPayuId": "17582255112",
                        "requestId": "12277041694",
                        "transactionAmount": "243000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "243000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872775005224369",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:43:36",
                        "requestDate": "2023-06-20 21:43:36",
                        "requestedAmount": "243000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582264589",
                        "parentPayuId": "17582263647",
                        "requestId": "12277041526",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687277595798184",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:43:33",
                        "requestDate": "2023-06-20 21:43:33",
                        "requestedAmount": "50000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582240310",
                        "parentPayuId": "17582228341",
                        "requestId": "12277023683",
                        "transactionAmount": "10000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872772139856853",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:39:14",
                        "requestDate": "2023-06-20 21:39:14",
                        "requestedAmount": "10000.00",
                        "bankName": "162B",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582237765",
                        "parentPayuId": "17582230960",
                        "requestId": "12277021984",
                        "transactionAmount": "31730.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31730.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872772529784448",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:38:47",
                        "requestDate": "2023-06-20 21:38:47",
                        "requestedAmount": "31730.00",
                        "bankName": "INOB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582234093",
                        "parentPayuId": "17582233415",
                        "requestId": "12277019190",
                        "transactionAmount": "22000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "22000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872772749174545",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:38:06",
                        "requestDate": "2023-06-20 21:38:06",
                        "requestedAmount": "22000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582220815",
                        "parentPayuId": "17582216095",
                        "requestId": "12277009428",
                        "transactionAmount": "12000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "12000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872770865360963",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:35:43",
                        "requestDate": "2023-06-20 21:35:43",
                        "requestedAmount": "12000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582220818",
                        "parentPayuId": "17582213194",
                        "requestId": "12277009430",
                        "transactionAmount": "110000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "110000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872770544098701",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:35:43",
                        "requestDate": "2023-06-20 21:35:43",
                        "requestedAmount": "110000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582216687",
                        "parentPayuId": "17582216005",
                        "requestId": "12277006302",
                        "transactionAmount": "8770.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "8770.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872770866906025",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:35:01",
                        "requestDate": "2023-06-20 21:35:01",
                        "requestedAmount": "8770.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582189509",
                        "parentPayuId": "17582184481",
                        "requestId": "12276986624",
                        "transactionAmount": "80000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "80000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872767458328207",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:30:14",
                        "requestDate": "2023-06-20 21:30:14",
                        "requestedAmount": "80000.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582187931",
                        "parentPayuId": "17582179713",
                        "requestId": "12276985515",
                        "transactionAmount": "49000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "49000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872766894559743",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:29:57",
                        "requestDate": "2023-06-20 21:29:57",
                        "requestedAmount": "49000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582185143",
                        "parentPayuId": "17582176790",
                        "requestId": "12276983397",
                        "transactionAmount": "108435.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "108435.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872766739197872",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:29:26",
                        "requestDate": "2023-06-20 21:29:26",
                        "requestedAmount": "108435.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582183157",
                        "parentPayuId": "17582177558",
                        "requestId": "12276982134",
                        "transactionAmount": "160000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "160000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872766792609553",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:29:05",
                        "requestDate": "2023-06-20 21:29:05",
                        "requestedAmount": "160000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582174823",
                        "parentPayuId": "17582161044",
                        "requestId": "12276976109",
                        "transactionAmount": "8000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "8000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872765035021148",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:27:37",
                        "requestDate": "2023-06-20 21:27:37",
                        "requestedAmount": "8000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582167065",
                        "parentPayuId": "17582165424",
                        "requestId": "12276970538",
                        "transactionAmount": "5000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "5000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872765493350646",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:26:16",
                        "requestDate": "2023-06-20 21:26:16",
                        "requestedAmount": "5000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582148041",
                        "parentPayuId": "17582135032",
                        "requestId": "12276956892",
                        "transactionAmount": "200000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "200000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872762247756224",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:22:57",
                        "requestDate": "2023-06-20 21:22:57",
                        "requestedAmount": "200000.00",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582147592",
                        "parentPayuId": "17582143165",
                        "requestId": "12276956581",
                        "transactionAmount": "116000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "116000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687276321008256",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:22:52",
                        "requestDate": "2023-06-20 21:22:52",
                        "requestedAmount": "116000.00",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582143836",
                        "parentPayuId": "17582133914",
                        "requestId": "12276953894",
                        "transactionAmount": "200000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "200000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872762098605967",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:22:11",
                        "requestDate": "2023-06-20 21:22:11",
                        "requestedAmount": "200000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582143809",
                        "parentPayuId": "17582137736",
                        "requestId": "12276953871",
                        "transactionAmount": "150000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "150000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872762589056127",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:22:11",
                        "requestDate": "2023-06-20 21:22:11",
                        "requestedAmount": "150000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582132537",
                        "parentPayuId": "17582129692",
                        "requestId": "12276945631",
                        "transactionAmount": "6000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872761684191818",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:20:15",
                        "requestDate": "2023-06-20 21:20:15",
                        "requestedAmount": "6000.00",
                        "bankName": "UPI",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582127947",
                        "parentPayuId": "17582125362",
                        "requestId": "12276942329",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872761165911813",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:19:27",
                        "requestDate": "2023-06-20 21:19:27",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582120727",
                        "parentPayuId": "17582109985",
                        "requestId": "12276937328",
                        "transactionAmount": "250000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "250000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872759543283722",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:18:11",
                        "requestDate": "2023-06-20 21:18:11",
                        "requestedAmount": "250000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582119445",
                        "parentPayuId": "17582118017",
                        "requestId": "12276936414",
                        "transactionAmount": "9510.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "9510.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872760463000267",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:17:57",
                        "requestDate": "2023-06-20 21:17:57",
                        "requestedAmount": "9510.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582111101",
                        "parentPayuId": "17582110094",
                        "requestId": "12276930344",
                        "transactionAmount": "60000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872759716681666",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:16:28",
                        "requestDate": "2023-06-20 21:16:28",
                        "requestedAmount": "60000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582094988",
                        "parentPayuId": "17582093378",
                        "requestId": "12276918680",
                        "transactionAmount": "61880.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "61880.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872757923710601",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:13:42",
                        "requestDate": "2023-06-20 21:13:42",
                        "requestedAmount": "61880.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582090320",
                        "parentPayuId": "17582084626",
                        "requestId": "12276915291",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872757012064369",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:12:51",
                        "requestDate": "2023-06-20 21:12:51",
                        "requestedAmount": "20000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582068028",
                        "parentPayuId": "17582067102",
                        "requestId": "12276898895",
                        "transactionAmount": "0.80",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "0.8",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872755201071403",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:08:55",
                        "requestDate": "2023-06-20 21:08:55",
                        "requestedAmount": "0.80",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582059317",
                        "parentPayuId": "17582052683",
                        "requestId": "12276892343",
                        "transactionAmount": "37000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "37000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872753586241224",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:07:18",
                        "requestDate": "2023-06-20 21:07:18",
                        "requestedAmount": "37000.00",
                        "bankName": "IDFCNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582033512",
                        "parentPayuId": "17582027502",
                        "requestId": "12276873431",
                        "transactionAmount": "525767.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "525767.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687275097449051",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:02:48",
                        "requestDate": "2023-06-20 21:02:48",
                        "requestedAmount": "525767.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582029933",
                        "parentPayuId": "17582022292",
                        "requestId": "12276870734",
                        "transactionAmount": "31361.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31361.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872750417238731",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 21:02:10",
                        "requestDate": "2023-06-20 21:02:10",
                        "requestedAmount": "31361.00",
                        "bankName": "YESB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17582006022",
                        "parentPayuId": "17581999170",
                        "requestId": "12276852981",
                        "transactionAmount": "60681.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60681.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872748034311192",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:58:04",
                        "requestDate": "2023-06-20 20:58:04",
                        "requestedAmount": "60681.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581995022",
                        "parentPayuId": "17581994242",
                        "requestId": "12276844880",
                        "transactionAmount": "19330.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "19330.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872747524421747",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:56:11",
                        "requestDate": "2023-06-20 20:56:11",
                        "requestedAmount": "19330.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581980009",
                        "parentPayuId": "17581974864",
                        "requestId": "12276833774",
                        "transactionAmount": "120000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "120000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687274554337023",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:53:37",
                        "requestDate": "2023-06-20 20:53:37",
                        "requestedAmount": "120000.00",
                        "bankName": "INDB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581971346",
                        "parentPayuId": "17581969485",
                        "requestId": "12276827380",
                        "transactionAmount": "900.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "900.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872744931662035",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:52:06",
                        "requestDate": "2023-06-20 20:52:06",
                        "requestedAmount": "900.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581969015",
                        "parentPayuId": "17581967829",
                        "requestId": "12276825584",
                        "transactionAmount": "22000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "22000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872744809973478",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:51:41",
                        "requestDate": "2023-06-20 20:51:41",
                        "requestedAmount": "22000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581969020",
                        "parentPayuId": "17581967333",
                        "requestId": "12276825587",
                        "transactionAmount": "16174.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "16174.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872744747929707",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:51:41",
                        "requestDate": "2023-06-20 20:51:41",
                        "requestedAmount": "16174.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581962310",
                        "parentPayuId": "17581960169",
                        "requestId": "12276820503",
                        "transactionAmount": "35274.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "35274.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872743907371438",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:50:32",
                        "requestDate": "2023-06-20 20:50:32",
                        "requestedAmount": "35274.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581961862",
                        "parentPayuId": "17581956328",
                        "requestId": "12276820137",
                        "transactionAmount": "703135.28",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "703135.28",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687274361632413",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:50:27",
                        "requestDate": "2023-06-20 20:50:27",
                        "requestedAmount": "703135.28",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581961008",
                        "parentPayuId": "17581959333",
                        "requestId": "12276819558",
                        "transactionAmount": "25000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "25000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872743920189042",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:50:19",
                        "requestDate": "2023-06-20 20:50:19",
                        "requestedAmount": "25000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581951922",
                        "parentPayuId": "17581945526",
                        "requestId": "12276812812",
                        "transactionAmount": "100000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "100000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872742471881561",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:48:44",
                        "requestDate": "2023-06-20 20:48:44",
                        "requestedAmount": "100000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581914403",
                        "parentPayuId": "17581908134",
                        "requestId": "12276784910",
                        "transactionAmount": "54522.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "54522.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872736659476025",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:42:11",
                        "requestDate": "2023-06-20 20:42:11",
                        "requestedAmount": "54522.00",
                        "bankName": "162B",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581912475",
                        "parentPayuId": "17581910352",
                        "requestId": "12276783416",
                        "transactionAmount": "10000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872738750417457",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:41:50",
                        "requestDate": "2023-06-20 20:41:50",
                        "requestedAmount": "10000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581887056",
                        "parentPayuId": "17581871884",
                        "requestId": "12276764557",
                        "transactionAmount": "45041.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "45041.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687273487128253",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:37:30",
                        "requestDate": "2023-06-20 20:37:30",
                        "requestedAmount": "45041.00",
                        "bankName": "INDB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581876091",
                        "parentPayuId": "17581872990",
                        "requestId": "12276756287",
                        "transactionAmount": "26794.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "26794.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687273508852148",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:35:41",
                        "requestDate": "2023-06-20 20:35:41",
                        "requestedAmount": "26794.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581870084",
                        "parentPayuId": "17581868401",
                        "requestId": "12276751598",
                        "transactionAmount": "33100.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "33100.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687273454609116",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:34:42",
                        "requestDate": "2023-06-20 20:34:42",
                        "requestedAmount": "33100.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581861897",
                        "parentPayuId": "17581858734",
                        "requestId": "12276745549",
                        "transactionAmount": "31850.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31850.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872733647649093",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:33:18",
                        "requestDate": "2023-06-20 20:33:18",
                        "requestedAmount": "31850.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581856211",
                        "parentPayuId": "17581853199",
                        "requestId": "12276741290",
                        "transactionAmount": "13614.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "13614.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872733114417899",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:32:23",
                        "requestDate": "2023-06-20 20:32:23",
                        "requestedAmount": "13614.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581851089",
                        "parentPayuId": "17581824853",
                        "requestId": "12276737378",
                        "transactionAmount": "40604.27",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40604.27",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687273024831449",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:31:35",
                        "requestDate": "2023-06-20 20:31:35",
                        "requestedAmount": "40604.27",
                        "bankName": "ICIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581850870",
                        "parentPayuId": "17581847773",
                        "requestId": "12276737173",
                        "transactionAmount": "5471.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "5471.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872732586730478",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:31:33",
                        "requestDate": "2023-06-20 20:31:33",
                        "requestedAmount": "5471.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581847207",
                        "parentPayuId": "17581845681",
                        "requestId": "12276734267",
                        "transactionAmount": "13700.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "13700.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872732322972333",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:30:56",
                        "requestDate": "2023-06-20 20:30:56",
                        "requestedAmount": "13700.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581845634",
                        "parentPayuId": "17581842225",
                        "requestId": "12276733147",
                        "transactionAmount": "4348.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "4348.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687273204173116",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:30:40",
                        "requestDate": "2023-06-20 20:30:40",
                        "requestedAmount": "4348.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581839095",
                        "parentPayuId": "17581833619",
                        "requestId": "12276728251",
                        "transactionAmount": "21843.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "21843.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872731148467107",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:29:36",
                        "requestDate": "2023-06-20 20:29:36",
                        "requestedAmount": "21843.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581837368",
                        "parentPayuId": "17581833652",
                        "requestId": "12276727001",
                        "transactionAmount": "1465.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "1465.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "168727311793401",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:29:18",
                        "requestDate": "2023-06-20 20:29:18",
                        "requestedAmount": "1465.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581830793",
                        "parentPayuId": "17581828075",
                        "requestId": "12276722019",
                        "transactionAmount": "923.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "923.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872730602811449",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:28:11",
                        "requestDate": "2023-06-20 20:28:11",
                        "requestedAmount": "923.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581824243",
                        "parentPayuId": "17581821561",
                        "requestId": "12276717188",
                        "transactionAmount": "1.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "1.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872729944089415",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:27:05",
                        "requestDate": "2023-06-20 20:27:05",
                        "requestedAmount": "1.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581821090",
                        "parentPayuId": "17581818273",
                        "requestId": "12276714848",
                        "transactionAmount": "17845.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "17845.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872729598828363",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:26:33",
                        "requestDate": "2023-06-20 20:26:33",
                        "requestedAmount": "17845.00",
                        "bankName": "162B",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581814975",
                        "parentPayuId": "17581811480",
                        "requestId": "12276710377",
                        "transactionAmount": "14836.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "14836.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687272893761549",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:25:33",
                        "requestDate": "2023-06-20 20:25:33",
                        "requestedAmount": "14836.00",
                        "bankName": "162B",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581814650",
                        "parentPayuId": "17581805054",
                        "requestId": "12276710089",
                        "transactionAmount": "500000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "500000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687272821199949",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:25:30",
                        "requestDate": "2023-06-20 20:25:30",
                        "requestedAmount": "500000.00",
                        "bankName": "UBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581813388",
                        "parentPayuId": "17581811620",
                        "requestId": "12276709062",
                        "transactionAmount": "62000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "62000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872728962378824",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:25:18",
                        "requestDate": "2023-06-20 20:25:18",
                        "requestedAmount": "62000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581787256",
                        "parentPayuId": "17581782233",
                        "requestId": "12276689337",
                        "transactionAmount": "297046.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "297046.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687272604489157",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:20:57",
                        "requestDate": "2023-06-20 20:20:57",
                        "requestedAmount": "297046.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581785324",
                        "parentPayuId": "17581783002",
                        "requestId": "12276687671",
                        "transactionAmount": "2018.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "2018.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872726073050373",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:20:38",
                        "requestDate": "2023-06-20 20:20:38",
                        "requestedAmount": "2018.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581784559",
                        "parentPayuId": "17581779383",
                        "requestId": "12276687070",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872725702779477",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:20:31",
                        "requestDate": "2023-06-20 20:20:31",
                        "requestedAmount": "50000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581775014",
                        "parentPayuId": "17581774146",
                        "requestId": "12276679726",
                        "transactionAmount": "52377.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "52377.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872725161097944",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:18:55",
                        "requestDate": "2023-06-20 20:18:55",
                        "requestedAmount": "52377.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581734077",
                        "parentPayuId": "17581729093",
                        "requestId": "12276648821",
                        "transactionAmount": "169667.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "169667.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872720029420483",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:12:05",
                        "requestDate": "2023-06-20 20:12:05",
                        "requestedAmount": "169667.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581732695",
                        "parentPayuId": "17581723479",
                        "requestId": "12276647751",
                        "transactionAmount": "263939.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "263939.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872720183851063",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:11:50",
                        "requestDate": "2023-06-20 20:11:50",
                        "requestedAmount": "263939.00",
                        "bankName": "TMBB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581725158",
                        "parentPayuId": "17581719009",
                        "requestId": "12276641825",
                        "transactionAmount": "32000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "32000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687271964423359",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:10:34",
                        "requestDate": "2023-06-20 20:10:34",
                        "requestedAmount": "32000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581711683",
                        "parentPayuId": "17581704422",
                        "requestId": "12276631481",
                        "transactionAmount": "550933.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "550933.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872718225129738",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:08:18",
                        "requestDate": "2023-06-20 20:08:18",
                        "requestedAmount": "550933.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581709228",
                        "parentPayuId": "17581703681",
                        "requestId": "12276629631",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872718091693401",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:07:54",
                        "requestDate": "2023-06-20 20:07:54",
                        "requestedAmount": "50000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581708143",
                        "parentPayuId": "17581707078",
                        "requestId": "12276628858",
                        "transactionAmount": "60000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872718469729195",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:07:43",
                        "requestDate": "2023-06-20 20:07:43",
                        "requestedAmount": "60000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581699659",
                        "parentPayuId": "17581688162",
                        "requestId": "12276622332",
                        "transactionAmount": "180268.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "180268.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872716548562574",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:06:18",
                        "requestDate": "2023-06-20 20:06:18",
                        "requestedAmount": "180268.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581699249",
                        "parentPayuId": "17581691551",
                        "requestId": "12276622017",
                        "transactionAmount": "126568.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "126568.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872716872541144",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:06:14",
                        "requestDate": "2023-06-20 20:06:14",
                        "requestedAmount": "126568.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581695619",
                        "parentPayuId": "17581694634",
                        "requestId": "12276619172",
                        "transactionAmount": "90000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "90000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872717189121652",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:05:39",
                        "requestDate": "2023-06-20 20:05:39",
                        "requestedAmount": "90000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581690999",
                        "parentPayuId": "17581689005",
                        "requestId": "12276615664",
                        "transactionAmount": "31375.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31375.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872716695530946",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:04:56",
                        "requestDate": "2023-06-20 20:04:56",
                        "requestedAmount": "31375.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581683528",
                        "parentPayuId": "17581680867",
                        "requestId": "12276610210",
                        "transactionAmount": "64482.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "64482.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687271578871711",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:03:40",
                        "requestDate": "2023-06-20 20:03:40",
                        "requestedAmount": "64482.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581681183",
                        "parentPayuId": "17581677870",
                        "requestId": "12276608444",
                        "transactionAmount": "17514.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "17514.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872715396586635",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:03:16",
                        "requestDate": "2023-06-20 20:03:16",
                        "requestedAmount": "17514.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581673218",
                        "parentPayuId": "17581671580",
                        "requestId": "12276602212",
                        "transactionAmount": "6843.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6843.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872714894223564",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:01:55",
                        "requestDate": "2023-06-20 20:01:55",
                        "requestedAmount": "6843.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581671677",
                        "parentPayuId": "17581670050",
                        "requestId": "12276601091",
                        "transactionAmount": "70000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "70000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872714822430694",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:01:39",
                        "requestDate": "2023-06-20 20:01:39",
                        "requestedAmount": "70000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581669101",
                        "parentPayuId": "17581655152",
                        "requestId": "12276599133",
                        "transactionAmount": "249000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "249000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872713226747344",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 20:01:13",
                        "requestDate": "2023-06-20 20:01:13",
                        "requestedAmount": "249000.00",
                        "bankName": "UBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581651581",
                        "parentPayuId": "17581628847",
                        "requestId": "12276585868",
                        "transactionAmount": "365502.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "365502.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872710436834664",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:58:21",
                        "requestDate": "2023-06-20 19:58:21",
                        "requestedAmount": "365502.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581646413",
                        "parentPayuId": "17581635143",
                        "requestId": "12276581938",
                        "transactionAmount": "42000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "42000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687271131837399",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:57:30",
                        "requestDate": "2023-06-20 19:57:30",
                        "requestedAmount": "42000.00",
                        "bankName": "BBRB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581643985",
                        "parentPayuId": "17581631462",
                        "requestId": "12276580105",
                        "transactionAmount": "60000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "60000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872710957784421",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:57:06",
                        "requestDate": "2023-06-20 19:57:06",
                        "requestedAmount": "60000.00",
                        "bankName": "BBRB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581643524",
                        "parentPayuId": "17581633361",
                        "requestId": "12276579771",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872711073921618",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:57:02",
                        "requestDate": "2023-06-20 19:57:02",
                        "requestedAmount": "20000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581642290",
                        "parentPayuId": "17581640683",
                        "requestId": "12276578770",
                        "transactionAmount": "56688.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "56688.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872711903602078",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:56:50",
                        "requestDate": "2023-06-20 19:56:50",
                        "requestedAmount": "56688.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581641746",
                        "parentPayuId": "17581639682",
                        "requestId": "12276578316",
                        "transactionAmount": "34000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "34000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872711769684818",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:56:44",
                        "requestDate": "2023-06-20 19:56:44",
                        "requestedAmount": "34000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581633370",
                        "parentPayuId": "17581632071",
                        "requestId": "12276571916",
                        "transactionAmount": "50000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "50000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872711065410676",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:55:24",
                        "requestDate": "2023-06-20 19:55:24",
                        "requestedAmount": "50000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581630018",
                        "parentPayuId": "17581625150",
                        "requestId": "12276569191",
                        "transactionAmount": "14078.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "14078.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872710371480727",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:54:52",
                        "requestDate": "2023-06-20 19:54:52",
                        "requestedAmount": "14078.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581626507",
                        "parentPayuId": "17581617168",
                        "requestId": "12276566488",
                        "transactionAmount": "47167.67",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "47167.67",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687270958243502",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:54:17",
                        "requestDate": "2023-06-20 19:54:17",
                        "requestedAmount": "47167.67",
                        "bankName": "BBRB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581626359",
                        "parentPayuId": "17581624922",
                        "requestId": "12276566316",
                        "transactionAmount": "1809.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "1809.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872710264807608",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:54:16",
                        "requestDate": "2023-06-20 19:54:16",
                        "requestedAmount": "1809.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581619661",
                        "parentPayuId": "17581618594",
                        "requestId": "12276561330",
                        "transactionAmount": "14500.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "14500.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872709670583956",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:53:10",
                        "requestDate": "2023-06-20 19:53:10",
                        "requestedAmount": "14500.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581614829",
                        "parentPayuId": "17581612000",
                        "requestId": "12276557431",
                        "transactionAmount": "40349.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40349.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687270905637773",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:52:23",
                        "requestDate": "2023-06-20 19:52:23",
                        "requestedAmount": "40349.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581613783",
                        "parentPayuId": "17581605051",
                        "requestId": "12276556612",
                        "transactionAmount": "190000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "190000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872708376673272",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:52:13",
                        "requestDate": "2023-06-20 19:52:13",
                        "requestedAmount": "190000.00",
                        "bankName": "TMBB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581606615",
                        "parentPayuId": "17581605070",
                        "requestId": "12276550827",
                        "transactionAmount": "37000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "37000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872708389434536",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:51:02",
                        "requestDate": "2023-06-20 19:51:02",
                        "requestedAmount": "37000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581604785",
                        "parentPayuId": "17581600922",
                        "requestId": "12276549400",
                        "transactionAmount": "42832.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "42832.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872707905295799",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:50:45",
                        "requestDate": "2023-06-20 19:50:45",
                        "requestedAmount": "42832.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581602753",
                        "parentPayuId": "17581597599",
                        "requestId": "12276547817",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872707765667572",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:50:26",
                        "requestDate": "2023-06-20 19:50:26",
                        "requestedAmount": "40000.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581591498",
                        "parentPayuId": "17581590458",
                        "requestId": "12276538991",
                        "transactionAmount": "7018.80",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "7018.8",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872706892513225",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:48:35",
                        "requestDate": "2023-06-20 19:48:35",
                        "requestedAmount": "7018.80",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581573768",
                        "parentPayuId": "17581572401",
                        "requestId": "12276525327",
                        "transactionAmount": "14526.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "14526.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687270519035553",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:45:38",
                        "requestDate": "2023-06-20 19:45:38",
                        "requestedAmount": "14526.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581573633",
                        "parentPayuId": "17581570630",
                        "requestId": "12276525221",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872704978100023",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:45:36",
                        "requestDate": "2023-06-20 19:45:36",
                        "requestedAmount": "40000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581568452",
                        "parentPayuId": "17581553992",
                        "requestId": "12276521198",
                        "transactionAmount": "2189996.12",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "2189996.12",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872703385373735",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:44:48",
                        "requestDate": "2023-06-20 19:44:48",
                        "requestedAmount": "2189996.12",
                        "bankName": "BBRB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581566270",
                        "parentPayuId": "17581558254",
                        "requestId": "12276519549",
                        "transactionAmount": "31000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "31000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872703901101487",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:44:27",
                        "requestDate": "2023-06-20 19:44:27",
                        "requestedAmount": "31000.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581563676",
                        "parentPayuId": "17581559677",
                        "requestId": "12276517626",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687270203286981",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:44:02",
                        "requestDate": "2023-06-20 19:44:02",
                        "requestedAmount": "20000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581534360",
                        "parentPayuId": "17581523057",
                        "requestId": "12276494991",
                        "transactionAmount": "900000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "900000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872700255015438",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:39:21",
                        "requestDate": "2023-06-20 19:39:21",
                        "requestedAmount": "900000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581526945",
                        "parentPayuId": "17581520599",
                        "requestId": "12276489400",
                        "transactionAmount": "55088.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "55088.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872700077510145",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:38:09",
                        "requestDate": "2023-06-20 19:38:09",
                        "requestedAmount": "55088.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581498627",
                        "parentPayuId": "17581496541",
                        "requestId": "12276467749",
                        "transactionAmount": "26900.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "26900.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872697825913606",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:33:32",
                        "requestDate": "2023-06-20 19:33:32",
                        "requestedAmount": "26900.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581490927",
                        "parentPayuId": "17581489581",
                        "requestId": "12276461772",
                        "transactionAmount": "10000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "10000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872697126085129",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:32:15",
                        "requestDate": "2023-06-20 19:32:15",
                        "requestedAmount": "10000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581484842",
                        "parentPayuId": "17581480628",
                        "requestId": "12276456706",
                        "transactionAmount": "23691.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "23691.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872696171987817",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:31:11",
                        "requestDate": "2023-06-20 19:31:11",
                        "requestedAmount": "23691.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581475176",
                        "parentPayuId": "17581469821",
                        "requestId": "12276449277",
                        "transactionAmount": "55000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "55000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872695171395051",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:29:38",
                        "requestDate": "2023-06-20 19:29:38",
                        "requestedAmount": "55000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581462003",
                        "parentPayuId": "17581456995",
                        "requestId": "12276438973",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872693829762187",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:27:24",
                        "requestDate": "2023-06-20 19:27:24",
                        "requestedAmount": "20000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581444386",
                        "parentPayuId": "17581240362",
                        "requestId": "12276425316",
                        "transactionAmount": "30000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "30000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872672067457113",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:24:27",
                        "requestDate": "2023-06-20 19:24:27",
                        "requestedAmount": "30000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581429502",
                        "parentPayuId": "17581422143",
                        "requestId": "12276413786",
                        "transactionAmount": "136629.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "136629.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872690286259465",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:21:59",
                        "requestDate": "2023-06-20 19:21:59",
                        "requestedAmount": "136629.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581425565",
                        "parentPayuId": "17581419064",
                        "requestId": "12276410739",
                        "transactionAmount": "30000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "30000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872690024945357",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:21:18",
                        "requestDate": "2023-06-20 19:21:18",
                        "requestedAmount": "30000.00",
                        "bankName": "CBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581416701",
                        "parentPayuId": "17581407619",
                        "requestId": "12276404091",
                        "transactionAmount": "48065.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "48065.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872689073474028",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:19:53",
                        "requestDate": "2023-06-20 19:19:53",
                        "requestedAmount": "48065.00",
                        "bankName": "162B",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581416371",
                        "parentPayuId": "17581410832",
                        "requestId": "12276403863",
                        "transactionAmount": "54208.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "54208.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872689292143738",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:19:50",
                        "requestDate": "2023-06-20 19:19:50",
                        "requestedAmount": "54208.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581403042",
                        "parentPayuId": "17581400659",
                        "requestId": "12276394350",
                        "transactionAmount": "1404.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "1404.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872688136845882",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:17:42",
                        "requestDate": "2023-06-20 19:17:42",
                        "requestedAmount": "1404.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581383406",
                        "parentPayuId": "17581379589",
                        "requestId": "12276378807",
                        "transactionAmount": "40000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "40000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687268611790171",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:14:23",
                        "requestDate": "2023-06-20 19:14:23",
                        "requestedAmount": "40000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581360730",
                        "parentPayuId": "17581359554",
                        "requestId": "12276361155",
                        "transactionAmount": "23000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "23000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872684144919662",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:10:31",
                        "requestDate": "2023-06-20 19:10:31",
                        "requestedAmount": "23000.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581357894",
                        "parentPayuId": "17581348083",
                        "requestId": "12276358778",
                        "transactionAmount": "500.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "500.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872682741178489",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:10:03",
                        "requestDate": "2023-06-20 19:10:03",
                        "requestedAmount": "500.00",
                        "bankName": "CPNB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581351246",
                        "parentPayuId": "17581346934",
                        "requestId": "12276353567",
                        "transactionAmount": "20000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "20000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872682750472162",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:08:53",
                        "requestDate": "2023-06-20 19:08:53",
                        "requestedAmount": "20000.00",
                        "bankName": "HDFB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581349829",
                        "parentPayuId": "17581348354",
                        "requestId": "12276352384",
                        "transactionAmount": "11000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "11000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872682825332043",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:08:37",
                        "requestDate": "2023-06-20 19:08:37",
                        "requestedAmount": "11000.00",
                        "bankName": "UPI",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581348028",
                        "parentPayuId": "17581346747",
                        "requestId": "12276351026",
                        "transactionAmount": "6343.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "6343.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872682805568397",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:08:19",
                        "requestDate": "2023-06-20 19:08:19",
                        "requestedAmount": "6343.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581341751",
                        "parentPayuId": "17581339268",
                        "requestId": "12276346061",
                        "transactionAmount": "21580.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "21580.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872681961710382",
                        "mode": "UPI",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:07:14",
                        "requestDate": "2023-06-20 19:07:14",
                        "requestedAmount": "21580.00",
                        "bankName": "INTENT",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581336538",
                        "parentPayuId": "17581328564",
                        "requestId": "12276342030",
                        "transactionAmount": "860000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "860000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "1687268088577528",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:06:20",
                        "requestDate": "2023-06-20 19:06:20",
                        "requestedAmount": "860000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    },
                    {
                        "action": "capture",
                        "payuId": "17581328620",
                        "parentPayuId": "17581321282",
                        "requestId": "12276335829",
                        "transactionAmount": "150000.00",
                        "merchantServiceFee": "0.00000",
                        "merchantServiceTax": "0.00000",
                        "merchantNetAmount": "150000.0",
                        "sgst": "0.00000",
                        "cgst": "0.00000",
                        "igst": "0.00000",
                        "merchantTransactionId": "16872680147753544",
                        "mode": "NB",
                        "paymentStatus": "captured",
                        "transactionDate": "2023-06-20 19:05:02",
                        "requestDate": "2023-06-20 19:05:02",
                        "requestedAmount": "150000.00",
                        "bankName": "SBIB",
                        "offerServiceFee": "0.00",
                        "offerServiceTax": "0.00"
                    }
                ]
            }
        ]
    }
}
  • Invalid request
{
    "message": "Page size can't be more that 50000",
    "status": 1,
    "result": "Page size can't be more that 50000"
}
  • Authorization failed
{
    "message": "Unauthorized"
}
  • If the date range is more than 3 days:
{
    "message": "Cannot give data for more than 3 days",
    "status": 1,
    "result": "Cannot give data for more than 3 days"
}