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
Production Environment | https://info.payu.in/settlement/range/ |
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: The
SHA512
token generated from the current date time, key and salt for the MID. Below is JS function to get the same.
🦉
Encoding Header with Key/Salt
Open Recipe
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
Parameter | Description | Example |
---|---|---|
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://info.payu.in/settlement/range/?dateFrom=2023-06-20&dateTo=2023-06-21&pageSize=200&page=1' \--header 'Authorization: {{authorization}}' \--header 'Date: {{date}}'
Response parameters
The description of fields in the data JSON of the response:
Parameter | Fields | Sample Value |
---|---|---|
settlementId | This parameter contains a unique settlement ID generated by PayU. | 8763692202306200915 |
settlementCompletedDate | This parameter contains settlement completion date. | 2023-06-20 11:00:03 |
settlementAmount | This parameter contains settlement amount. | 10.00 |
merchantId | This parameter contains a merchant ID that is provided by PayU. | 8763692 |
utrNumber | This 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 |
transaction | This 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:
Field | Description | Example |
---|---|---|
action | This parameter contains the action taken on the transaction. The action can be any of the following: capture refund cancel chargeback chargeback reversal refundreversal | refund |
payuid | This 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 |
parentPayuId | This parameter contains a parent PayU ID in case of Split Payment transactions. | |
requestid | This parameter contains the request ID value posted by the merchant during the transaction request. | 131278418 |
transactionAmount | This parameter contains the original amount which was sent in the transaction request by the merchant. | 100 |
merchantServiceFee | This parameter contains the service fee paid by the merchant to the bank. for the transaction | 239.6000 |
merchantServiceTax | This parameter contains the tax on service fee paid by the merchant to the bank. for the transaction | 43.1300 |
merchantNetAmount | This parameter contains the net amount to be settled by bank to merchant. | 100 |
merchantTransactionId | This parameter contains the transaction ID of the transaction. | 13818 |
cgst | This parameter contains the CGST (Central GST) for the transaction. | 43.13000 |
igst | This parameter contains the IGST (Integrated GST) for the transaction. | 43.13000 |
sgst | This parameter contains the SGST (State GST) for the transaction where the supplier or merchant is from a different state of the customer. | 43.13000 |
mode | This parameter contains the mode of the transaction such as credit card, debit card, etc. For more information, refer to Payment Mode Codes. | CC |
payemntStatus | ||
transactionDate | This parameter contains the date of the transaction. | 2021-08-10 23:46:25 |
requestDate | This parameter contains the request date and time stamp. | 2021-08-10 23:49:16 |
requestedAmount | The parameter contains the amount requested by the merchant to the bank. | 100 |
bankName | This parameter contains the bank name or the card type based on the transaction. | MAST |
offerServiceFee | This parameter contains the service fee incurred for offer if the transaction involved offer. | 2 |
offerServiceTax | This 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": 200,
"totalCount": 2862,
"data": [
{
"settlementId": "8763692202306200915",
"settlementCompletedDate": "2023-06-20 11:00:03",
"settlementAmount": "283079197.97",
"merchantId": 8763692,
"utrNumber": "UTIBR72023062000022728",
"transaction": [
{
"action": "capture",
"payuId": "17577006305",
"parentPayuId": "17577001693",
"requestId": "12273055103",
"transactionAmount": "167334.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "167334.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871992915354836",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:59:38",
"requestDate": "2023-06-19 23:59:38",
"requestedAmount": "167334.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17577005415",
"parentPayuId": "17577004788",
"requestId": "12273054470",
"transactionAmount": "17559.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "17559.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871993385972302",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:59:22",
"requestDate": "2023-06-19 23:59:22",
"requestedAmount": "17559.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17577004615",
"parentPayuId": "17577001867",
"requestId": "12273053891",
"transactionAmount": "71504.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "71504.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687199293507133",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:59:08",
"requestDate": "2023-06-19 23:59:08",
"requestedAmount": "71504.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576983837",
"parentPayuId": "17576979663",
"requestId": "12273037946",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871989338276258",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:53:32",
"requestDate": "2023-06-19 23:53:32",
"requestedAmount": "100000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576945236",
"parentPayuId": "17576941802",
"requestId": "12273008327",
"transactionAmount": "24539.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "24539.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871983500256076",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:43:34",
"requestDate": "2023-06-19 23:43:34",
"requestedAmount": "24539.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576938400",
"parentPayuId": "17576935311",
"requestId": "12273002940",
"transactionAmount": "25909.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25909.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871982505294135",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:41:49",
"requestDate": "2023-06-19 23:41:49",
"requestedAmount": "25909.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576901360",
"parentPayuId": "17576897222",
"requestId": "12272975310",
"transactionAmount": "519724.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "519724.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871977180064616",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:33:01",
"requestDate": "2023-06-19 23:33:01",
"requestedAmount": "519724.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576897694",
"parentPayuId": "17576892208",
"requestId": "12272972701",
"transactionAmount": "500000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "500000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871976502502296",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:32:12",
"requestDate": "2023-06-19 23:32:12",
"requestedAmount": "500000.00",
"bankName": "ICIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576895242",
"parentPayuId": "17576889878",
"requestId": "12272970881",
"transactionAmount": "300000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "300000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687197618705374",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:31:39",
"requestDate": "2023-06-19 23:31:39",
"requestedAmount": "300000.00",
"bankName": "CABB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576863063",
"parentPayuId": "17576862366",
"requestId": "12272946472",
"transactionAmount": "5500.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5500.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871972456665661",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:24:22",
"requestDate": "2023-06-19 23:24:22",
"requestedAmount": "5500.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576854100",
"parentPayuId": "17576852949",
"requestId": "12272939546",
"transactionAmount": "25080.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25080.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871971048326972",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:22:24",
"requestDate": "2023-06-19 23:22:24",
"requestedAmount": "25080.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576852660",
"parentPayuId": "17576851536",
"requestId": "12272938517",
"transactionAmount": "22900.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "22900.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871971007290454",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:22:06",
"requestDate": "2023-06-19 23:22:06",
"requestedAmount": "22900.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576838931",
"parentPayuId": "17576837069",
"requestId": "12272927889",
"transactionAmount": "12193.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "12193.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871969097761707",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:19:07",
"requestDate": "2023-06-19 23:19:07",
"requestedAmount": "12193.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576830628",
"parentPayuId": "17576829733",
"requestId": "12272921576",
"transactionAmount": "48000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "48000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871968143097653",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:17:21",
"requestDate": "2023-06-19 23:17:21",
"requestedAmount": "48000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576821489",
"parentPayuId": "17576820160",
"requestId": "12272914757",
"transactionAmount": "15000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "15000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871967008476844",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:15:26",
"requestDate": "2023-06-19 23:15:26",
"requestedAmount": "15000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576816420",
"parentPayuId": "17576814689",
"requestId": "12272910846",
"transactionAmount": "22623.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "22623.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871966231193385",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:14:21",
"requestDate": "2023-06-19 23:14:21",
"requestedAmount": "22623.00",
"bankName": "UPI",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576797240",
"parentPayuId": "17576783384",
"requestId": "12272896125",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871962396461208",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:10:24",
"requestDate": "2023-06-19 23:10:24",
"requestedAmount": "20000.00",
"bankName": "162B",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576793792",
"parentPayuId": "17576793117",
"requestId": "12272893349",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871963660291035",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:09:41",
"requestDate": "2023-06-19 23:09:41",
"requestedAmount": "20000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576792634",
"parentPayuId": "17576784851",
"requestId": "12272892531",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871962630005622",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:09:28",
"requestDate": "2023-06-19 23:09:28",
"requestedAmount": "100000.00",
"bankName": "IDFCNB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576789740",
"parentPayuId": "17576788529",
"requestId": "12272890270",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871963083305383",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:08:54",
"requestDate": "2023-06-19 23:08:54",
"requestedAmount": "10000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576761734",
"parentPayuId": "17576757811",
"requestId": "12272868549",
"transactionAmount": "21339.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "21339.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871959520876005",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:03:24",
"requestDate": "2023-06-19 23:03:24",
"requestedAmount": "21339.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576752910",
"parentPayuId": "17576743230",
"requestId": "12272861781",
"transactionAmount": "37770.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "37770.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871957773099961",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:01:44",
"requestDate": "2023-06-19 23:01:44",
"requestedAmount": "37770.00",
"bankName": "PNBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576750194",
"parentPayuId": "17576749048",
"requestId": "12272859750",
"transactionAmount": "16000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "16000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871958521411664",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:01:12",
"requestDate": "2023-06-19 23:01:12",
"requestedAmount": "16000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576746593",
"parentPayuId": "17576741330",
"requestId": "12272856964",
"transactionAmount": "80000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "80000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "168719575516549",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 23:00:30",
"requestDate": "2023-06-19 23:00:30",
"requestedAmount": "80000.00",
"bankName": "CABB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576739351",
"parentPayuId": "17576726402",
"requestId": "12272851311",
"transactionAmount": "15535.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "15535.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687195593831057",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:59:06",
"requestDate": "2023-06-19 22:59:06",
"requestedAmount": "15535.00",
"bankName": "CBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576736563",
"parentPayuId": "17576731125",
"requestId": "12272849027",
"transactionAmount": "145796.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "145796.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687195646434519",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:58:35",
"requestDate": "2023-06-19 22:58:35",
"requestedAmount": "145796.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576730619",
"parentPayuId": "17576722242",
"requestId": "12272844561",
"transactionAmount": "1800.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1800.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687195534260098",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:57:27",
"requestDate": "2023-06-19 22:57:27",
"requestedAmount": "1800.00",
"bankName": "AXIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576728032",
"parentPayuId": "17576723930",
"requestId": "12272842609",
"transactionAmount": "20468.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20468.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871955656730378",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:56:59",
"requestDate": "2023-06-19 22:56:59",
"requestedAmount": "20468.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576720413",
"parentPayuId": "17576718201",
"requestId": "12272836846",
"transactionAmount": "187686.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "187686.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871955045997038",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:55:35",
"requestDate": "2023-06-19 22:55:35",
"requestedAmount": "187686.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576716690",
"parentPayuId": "17576713514",
"requestId": "12272833937",
"transactionAmount": "23476.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "23476.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687195452721694",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:54:55",
"requestDate": "2023-06-19 22:54:55",
"requestedAmount": "23476.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576714802",
"parentPayuId": "17576712677",
"requestId": "12272832569",
"transactionAmount": "5500.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5500.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871954407399526",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:54:35",
"requestDate": "2023-06-19 22:54:35",
"requestedAmount": "5500.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576709100",
"parentPayuId": "17576661887",
"requestId": "12272828180",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871948563418596",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:53:33",
"requestDate": "2023-06-19 22:53:33",
"requestedAmount": "50000.00",
"bankName": "PNBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576707911",
"parentPayuId": "17576703619",
"requestId": "12272827236",
"transactionAmount": "31711.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "31711.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871953451282666",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:53:20",
"requestDate": "2023-06-19 22:53:20",
"requestedAmount": "31711.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576705620",
"parentPayuId": "17576696616",
"requestId": "12272825392",
"transactionAmount": "1253.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1253.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871952695684414",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:52:55",
"requestDate": "2023-06-19 22:52:55",
"requestedAmount": "1253.00",
"bankName": "AXIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576686655",
"parentPayuId": "17576685220",
"requestId": "12272810998",
"transactionAmount": "5000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871951439387102",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:49:31",
"requestDate": "2023-06-19 22:49:31",
"requestedAmount": "5000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576686686",
"parentPayuId": "17576685446",
"requestId": "12272811036",
"transactionAmount": "1.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871951455114355",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:49:31",
"requestDate": "2023-06-19 22:49:31",
"requestedAmount": "1.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576680338",
"parentPayuId": "17576676248",
"requestId": "12272806207",
"transactionAmount": "244000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "244000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871950467545455",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:48:20",
"requestDate": "2023-06-19 22:48:20",
"requestedAmount": "244000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576661416",
"parentPayuId": "17576652897",
"requestId": "12272791606",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871947848774505",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:44:56",
"requestDate": "2023-06-19 22:44:56",
"requestedAmount": "30000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576656467",
"parentPayuId": "17576654729",
"requestId": "12272787950",
"transactionAmount": "14974.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "14974.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871948149773612",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:44:03",
"requestDate": "2023-06-19 22:44:03",
"requestedAmount": "14974.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576643306",
"parentPayuId": "17576638160",
"requestId": "12272777832",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871946447275689",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:41:44",
"requestDate": "2023-06-19 22:41:44",
"requestedAmount": "100000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576638465",
"parentPayuId": "17576635236",
"requestId": "12272774136",
"transactionAmount": "41068.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "41068.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871946036855376",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:40:53",
"requestDate": "2023-06-19 22:40:53",
"requestedAmount": "41068.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576628210",
"parentPayuId": "17576625461",
"requestId": "12272766198",
"transactionAmount": "103000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "103000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871945133884208",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:39:05",
"requestDate": "2023-06-19 22:39:05",
"requestedAmount": "103000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576626624",
"parentPayuId": "17576622029",
"requestId": "12272764957",
"transactionAmount": "5000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871944723589354",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:38:49",
"requestDate": "2023-06-19 22:38:49",
"requestedAmount": "5000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576609212",
"parentPayuId": "17576603434",
"requestId": "12272751961",
"transactionAmount": "180000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "180000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687194276320614",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:35:46",
"requestDate": "2023-06-19 22:35:46",
"requestedAmount": "180000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576605151",
"parentPayuId": "17576603882",
"requestId": "12272748854",
"transactionAmount": "9145.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "9145.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871942844049013",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:35:03",
"requestDate": "2023-06-19 22:35:03",
"requestedAmount": "9145.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576593023",
"parentPayuId": "17576588175",
"requestId": "12272739511",
"transactionAmount": "23543.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "23543.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687194119583914",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:32:56",
"requestDate": "2023-06-19 22:32:56",
"requestedAmount": "23543.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576588586",
"parentPayuId": "17576584974",
"requestId": "12272736212",
"transactionAmount": "335739.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "335739.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687194085024285",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:32:10",
"requestDate": "2023-06-19 22:32:10",
"requestedAmount": "335739.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576584201",
"parentPayuId": "17576582919",
"requestId": "12272732834",
"transactionAmount": "11676.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "11676.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871940487582002",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:31:24",
"requestDate": "2023-06-19 22:31:24",
"requestedAmount": "11676.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576570878",
"parentPayuId": "17576569734",
"requestId": "12272722690",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871939287545598",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:29:07",
"requestDate": "2023-06-19 22:29:07",
"requestedAmount": "30000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576567679",
"parentPayuId": "17576563581",
"requestId": "12272720224",
"transactionAmount": "105729.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "105729.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871938678061903",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:28:34",
"requestDate": "2023-06-19 22:28:34",
"requestedAmount": "105729.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576558566",
"parentPayuId": "17576552353",
"requestId": "12272713149",
"transactionAmount": "9496.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "9496.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871937379895308",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:27:01",
"requestDate": "2023-06-19 22:27:01",
"requestedAmount": "9496.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576550385",
"parentPayuId": "17576544930",
"requestId": "12272707011",
"transactionAmount": "300000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "300000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871936652497768",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:25:34",
"requestDate": "2023-06-19 22:25:34",
"requestedAmount": "300000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576548839",
"parentPayuId": "17576543224",
"requestId": "12272705865",
"transactionAmount": "300000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "300000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871936438466105",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:25:15",
"requestDate": "2023-06-19 22:25:15",
"requestedAmount": "300000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576546583",
"parentPayuId": "17576540328",
"requestId": "12272704016",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193599292612",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:24:50",
"requestDate": "2023-06-19 22:24:50",
"requestedAmount": "20000.00",
"bankName": "162B",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576542066",
"parentPayuId": "17576529930",
"requestId": "12272700702",
"transactionAmount": "500000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "500000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871934959059963",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:23:58",
"requestDate": "2023-06-19 22:23:58",
"requestedAmount": "500000.00",
"bankName": "BOIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576536154",
"parentPayuId": "17576531628",
"requestId": "12272696277",
"transactionAmount": "6000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "6000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871935062612593",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:22:48",
"requestDate": "2023-06-19 22:22:48",
"requestedAmount": "6000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576529459",
"parentPayuId": "17576526453",
"requestId": "12272691342",
"transactionAmount": "62000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "62000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871934514530585",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:21:31",
"requestDate": "2023-06-19 22:21:31",
"requestedAmount": "62000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576526781",
"parentPayuId": "17576525308",
"requestId": "12272689295",
"transactionAmount": "75000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "75000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193433762738",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:21:00",
"requestDate": "2023-06-19 22:21:00",
"requestedAmount": "75000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576525903",
"parentPayuId": "17576524948",
"requestId": "12272688599",
"transactionAmount": "28000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "28000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "168719342758438",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:20:50",
"requestDate": "2023-06-19 22:20:50",
"requestedAmount": "28000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576524200",
"parentPayuId": "17576521084",
"requestId": "12272687426",
"transactionAmount": "105729.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "105729.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193391494059",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:20:32",
"requestDate": "2023-06-19 22:20:32",
"requestedAmount": "105729.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576520921",
"parentPayuId": "17576512922",
"requestId": "12272684819",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193283821436",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:19:54",
"requestDate": "2023-06-19 22:19:54",
"requestedAmount": "10000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576518341",
"parentPayuId": "17576514100",
"requestId": "12272683057",
"transactionAmount": "27309.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "27309.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871933076498005",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:19:25",
"requestDate": "2023-06-19 22:19:25",
"requestedAmount": "27309.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576516787",
"parentPayuId": "17576507436",
"requestId": "12272681869",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193228933805",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:19:06",
"requestDate": "2023-06-19 22:19:06",
"requestedAmount": "100000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576503785",
"parentPayuId": "17576502746",
"requestId": "12272671756",
"transactionAmount": "25000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687193174048196",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:16:39",
"requestDate": "2023-06-19 22:16:39",
"requestedAmount": "25000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576492605",
"parentPayuId": "17576479079",
"requestId": "12272662849",
"transactionAmount": "260000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "260000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871928832735264",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:14:30",
"requestDate": "2023-06-19 22:14:30",
"requestedAmount": "260000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576489257",
"parentPayuId": "17576481397",
"requestId": "12272660212",
"transactionAmount": "26366.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "26366.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871929363899705",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:13:52",
"requestDate": "2023-06-19 22:13:52",
"requestedAmount": "26366.00",
"bankName": "IDBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576476979",
"parentPayuId": "17576470584",
"requestId": "12272650943",
"transactionAmount": "58591.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "58591.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871928122963881",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:11:33",
"requestDate": "2023-06-19 22:11:33",
"requestedAmount": "58591.00",
"bankName": "IDBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576466860",
"parentPayuId": "17576465677",
"requestId": "12272643432",
"transactionAmount": "1420.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1420.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871927560585892",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:09:39",
"requestDate": "2023-06-19 22:09:39",
"requestedAmount": "1420.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576464008",
"parentPayuId": "17576460518",
"requestId": "12272641402",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871927013520448",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:09:07",
"requestDate": "2023-06-19 22:09:07",
"requestedAmount": "50000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576457538",
"parentPayuId": "17576448057",
"requestId": "12272636510",
"transactionAmount": "555852.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "555852.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687192553324651",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:07:53",
"requestDate": "2023-06-19 22:07:53",
"requestedAmount": "555852.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576435646",
"parentPayuId": "17576434225",
"requestId": "12272619902",
"transactionAmount": "19000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "19000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871924012707524",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:03:44",
"requestDate": "2023-06-19 22:03:44",
"requestedAmount": "19000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576432931",
"parentPayuId": "17576432211",
"requestId": "12272617930",
"transactionAmount": "1000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871923802163382",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:03:14",
"requestDate": "2023-06-19 22:03:14",
"requestedAmount": "1000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576430037",
"parentPayuId": "17576425605",
"requestId": "12272615761",
"transactionAmount": "101945.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "101945.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871923092764862",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:02:43",
"requestDate": "2023-06-19 22:02:43",
"requestedAmount": "101945.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576429282",
"parentPayuId": "17576419704",
"requestId": "12272615311",
"transactionAmount": "109157.91",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "109157.91",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871922336639574",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:02:35",
"requestDate": "2023-06-19 22:02:35",
"requestedAmount": "109157.91",
"bankName": "CBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576427525",
"parentPayuId": "17576420516",
"requestId": "12272614002",
"transactionAmount": "397699.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "397699.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871922481313207",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:02:15",
"requestDate": "2023-06-19 22:02:15",
"requestedAmount": "397699.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576425567",
"parentPayuId": "17576423807",
"requestId": "12272612517",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871922800645154",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 22:01:53",
"requestDate": "2023-06-19 22:01:53",
"requestedAmount": "100000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576413659",
"parentPayuId": "17576412291",
"requestId": "12272603566",
"transactionAmount": "61482.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "61482.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687192156246621",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:59:38",
"requestDate": "2023-06-19 21:59:38",
"requestedAmount": "61482.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576392862",
"parentPayuId": "17576381187",
"requestId": "12272587944",
"transactionAmount": "22763.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "22763.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871917922096174",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:55:41",
"requestDate": "2023-06-19 21:55:41",
"requestedAmount": "22763.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576383623",
"parentPayuId": "17576375244",
"requestId": "12272581183",
"transactionAmount": "321264.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "321264.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871917329273033",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:54:00",
"requestDate": "2023-06-19 21:54:00",
"requestedAmount": "321264.00",
"bankName": "IDBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576382655",
"parentPayuId": "17576376155",
"requestId": "12272580426",
"transactionAmount": "600000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "600000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687191741355953",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:53:48",
"requestDate": "2023-06-19 21:53:48",
"requestedAmount": "600000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576376726",
"parentPayuId": "17576375180",
"requestId": "12272575748",
"transactionAmount": "11000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "11000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871917342972014",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:52:41",
"requestDate": "2023-06-19 21:52:41",
"requestedAmount": "11000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576374832",
"parentPayuId": "17576367896",
"requestId": "12272574438",
"transactionAmount": "63048.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "63048.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871916362444882",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:52:20",
"requestDate": "2023-06-19 21:52:20",
"requestedAmount": "63048.00",
"bankName": "INOB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576371124",
"parentPayuId": "17576360663",
"requestId": "12272571576",
"transactionAmount": "147453.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "147453.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687191574014385",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:51:39",
"requestDate": "2023-06-19 21:51:39",
"requestedAmount": "147453.00",
"bankName": "IDBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576367038",
"parentPayuId": "17576364794",
"requestId": "12272568587",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871916215242262",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:50:53",
"requestDate": "2023-06-19 21:50:53",
"requestedAmount": "20000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576366890",
"parentPayuId": "17576362227",
"requestId": "12272568469",
"transactionAmount": "250000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "250000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871915784763024",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:50:51",
"requestDate": "2023-06-19 21:50:51",
"requestedAmount": "250000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576358606",
"parentPayuId": "17576343787",
"requestId": "12272562237",
"transactionAmount": "122583.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "122583.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871913767508488",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:49:20",
"requestDate": "2023-06-19 21:49:20",
"requestedAmount": "122583.00",
"bankName": "ICIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576348617",
"parentPayuId": "17576345491",
"requestId": "12272554837",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871914045594025",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:47:28",
"requestDate": "2023-06-19 21:47:28",
"requestedAmount": "20000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576345541",
"parentPayuId": "17576338272",
"requestId": "12272552566",
"transactionAmount": "451026.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "451026.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871913080935326",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:46:54",
"requestDate": "2023-06-19 21:46:54",
"requestedAmount": "451026.00",
"bankName": "PNBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576343049",
"parentPayuId": "17576331791",
"requestId": "12272550785",
"transactionAmount": "80683.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "80683.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871912492026517",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:46:25",
"requestDate": "2023-06-19 21:46:25",
"requestedAmount": "80683.00",
"bankName": "IDBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576341126",
"parentPayuId": "17576340232",
"requestId": "12272549438",
"transactionAmount": "19999.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "19999.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871913445746489",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:46:04",
"requestDate": "2023-06-19 21:46:04",
"requestedAmount": "19999.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576329788",
"parentPayuId": "17576320586",
"requestId": "12272540953",
"transactionAmount": "80000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "80000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871911285341694",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:44:00",
"requestDate": "2023-06-19 21:44:00",
"requestedAmount": "80000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576327506",
"parentPayuId": "17576322283",
"requestId": "12272539111",
"transactionAmount": "80073.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "80073.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687191128662574",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:43:35",
"requestDate": "2023-06-19 21:43:35",
"requestedAmount": "80073.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576327028",
"parentPayuId": "17576319452",
"requestId": "12272538733",
"transactionAmount": "51000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "51000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871911199681137",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:43:30",
"requestDate": "2023-06-19 21:43:30",
"requestedAmount": "51000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576326950",
"parentPayuId": "17576325382",
"requestId": "12272538688",
"transactionAmount": "21500.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "21500.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871911737298045",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:43:29",
"requestDate": "2023-06-19 21:43:29",
"requestedAmount": "21500.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576318650",
"parentPayuId": "17576317963",
"requestId": "12272532583",
"transactionAmount": "25546.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25546.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687191104936557",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:41:59",
"requestDate": "2023-06-19 21:41:59",
"requestedAmount": "25546.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576314496",
"parentPayuId": "17576309935",
"requestId": "12272529468",
"transactionAmount": "260000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "260000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871910124336388",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:41:12",
"requestDate": "2023-06-19 21:41:12",
"requestedAmount": "260000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576314251",
"parentPayuId": "17576313434",
"requestId": "12272529273",
"transactionAmount": "25546.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25546.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871910535691142",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:41:09",
"requestDate": "2023-06-19 21:41:09",
"requestedAmount": "25546.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576308057",
"parentPayuId": "17576306217",
"requestId": "12272524534",
"transactionAmount": "40202.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "40202.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687190976880125",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:40:04",
"requestDate": "2023-06-19 21:40:04",
"requestedAmount": "40202.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576305558",
"parentPayuId": "17576241084",
"requestId": "12272522610",
"transactionAmount": "87577.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "87577.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871902762262182",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:39:38",
"requestDate": "2023-06-19 21:39:38",
"requestedAmount": "87577.00",
"bankName": "CBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576305592",
"parentPayuId": "17576303483",
"requestId": "12272522633",
"transactionAmount": "2000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "2000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871909444055552",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:39:38",
"requestDate": "2023-06-19 21:39:38",
"requestedAmount": "2000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576287435",
"parentPayuId": "17576272222",
"requestId": "12272509066",
"transactionAmount": "26524.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "26524.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871906107532854",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:36:26",
"requestDate": "2023-06-19 21:36:26",
"requestedAmount": "26524.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576285150",
"parentPayuId": "17576283534",
"requestId": "12272507360",
"transactionAmount": "64873.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "64873.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871907361938193",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:36:02",
"requestDate": "2023-06-19 21:36:02",
"requestedAmount": "64873.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576284361",
"parentPayuId": "17576277839",
"requestId": "12272506751",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871906731443994",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:35:54",
"requestDate": "2023-06-19 21:35:54",
"requestedAmount": "20000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576274301",
"parentPayuId": "17576272667",
"requestId": "12272499128",
"transactionAmount": "31679.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "31679.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871906212356668",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:34:09",
"requestDate": "2023-06-19 21:34:09",
"requestedAmount": "31679.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576241503",
"parentPayuId": "17576232428",
"requestId": "12272474698",
"transactionAmount": "70000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "70000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871901966011827",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:28:20",
"requestDate": "2023-06-19 21:28:20",
"requestedAmount": "70000.00",
"bankName": "UBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576199913",
"parentPayuId": "17576195214",
"requestId": "12272443566",
"transactionAmount": "25426.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25426.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871898032789464",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:21:02",
"requestDate": "2023-06-19 21:21:02",
"requestedAmount": "25426.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576187578",
"parentPayuId": "17576183641",
"requestId": "12272434007",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871896866660898",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:18:52",
"requestDate": "2023-06-19 21:18:52",
"requestedAmount": "20000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576138986",
"parentPayuId": "17576135649",
"requestId": "12272397368",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871891752117295",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:10:25",
"requestDate": "2023-06-19 21:10:25",
"requestedAmount": "50000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576135659",
"parentPayuId": "17576133515",
"requestId": "12272394827",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871891576000445",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:09:52",
"requestDate": "2023-06-19 21:09:52",
"requestedAmount": "50000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576126975",
"parentPayuId": "17576117362",
"requestId": "12272388170",
"transactionAmount": "426571.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "426571.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687188990550138",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:08:21",
"requestDate": "2023-06-19 21:08:21",
"requestedAmount": "426571.00",
"bankName": "PNBB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576109526",
"parentPayuId": "17576107993",
"requestId": "12272374887",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687188890190906",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:05:20",
"requestDate": "2023-06-19 21:05:20",
"requestedAmount": "10000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576095462",
"parentPayuId": "17576085926",
"requestId": "12272364077",
"transactionAmount": "44000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "44000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871885794321318",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:02:53",
"requestDate": "2023-06-19 21:02:53",
"requestedAmount": "44000.00",
"bankName": "BOIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576093325",
"parentPayuId": "17576092404",
"requestId": "12272362557",
"transactionAmount": "7817.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "7817.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871887334160545",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:02:31",
"requestDate": "2023-06-19 21:02:31",
"requestedAmount": "7817.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576093220",
"parentPayuId": "17576091636",
"requestId": "12272362486",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871887152507904",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:02:30",
"requestDate": "2023-06-19 21:02:30",
"requestedAmount": "20000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576091065",
"parentPayuId": "17576084603",
"requestId": "12272360874",
"transactionAmount": "430204.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "430204.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871886486688666",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:02:07",
"requestDate": "2023-06-19 21:02:07",
"requestedAmount": "430204.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576080045",
"parentPayuId": "17576076907",
"requestId": "12272352343",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871885514190402",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:00:12",
"requestDate": "2023-06-19 21:00:12",
"requestedAmount": "20000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576079584",
"parentPayuId": "17576073504",
"requestId": "12272351973",
"transactionAmount": "167650.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "167650.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871885402459786",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 21:00:07",
"requestDate": "2023-06-19 21:00:07",
"requestedAmount": "167650.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576070725",
"parentPayuId": "17576067514",
"requestId": "12272345164",
"transactionAmount": "390000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "390000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687188478372732",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:58:36",
"requestDate": "2023-06-19 20:58:36",
"requestedAmount": "390000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576063651",
"parentPayuId": "17576062702",
"requestId": "12272339916",
"transactionAmount": "14691.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "14691.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871884266126287",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:57:23",
"requestDate": "2023-06-19 20:57:23",
"requestedAmount": "14691.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576063571",
"parentPayuId": "17576059730",
"requestId": "12272339856",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871883933980858",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:57:22",
"requestDate": "2023-06-19 20:57:22",
"requestedAmount": "30000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576056583",
"parentPayuId": "17576052819",
"requestId": "12272334563",
"transactionAmount": "16130.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "16130.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687188325609532",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:56:11",
"requestDate": "2023-06-19 20:56:11",
"requestedAmount": "16130.00",
"bankName": "ICIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576041105",
"parentPayuId": "17576038884",
"requestId": "12272322677",
"transactionAmount": "1.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871881809048805",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:53:29",
"requestDate": "2023-06-19 20:53:29",
"requestedAmount": "1.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576022520",
"parentPayuId": "17576006960",
"requestId": "12272308402",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871878525040305",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:50:16",
"requestDate": "2023-06-19 20:50:16",
"requestedAmount": "30000.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576021677",
"parentPayuId": "17576013260",
"requestId": "12272307736",
"transactionAmount": "64053.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "64053.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871879153559954",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:50:08",
"requestDate": "2023-06-19 20:50:08",
"requestedAmount": "64053.00",
"bankName": "ICIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576018205",
"parentPayuId": "17576013982",
"requestId": "12272304934",
"transactionAmount": "48000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "48000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871879240116978",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:49:33",
"requestDate": "2023-06-19 20:49:33",
"requestedAmount": "48000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17576004131",
"parentPayuId": "17575997773",
"requestId": "12272294031",
"transactionAmount": "5000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871877387406266",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:47:12",
"requestDate": "2023-06-19 20:47:12",
"requestedAmount": "5000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575996003",
"parentPayuId": "17575981492",
"requestId": "12272287479",
"transactionAmount": "1.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871875955959516",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:45:49",
"requestDate": "2023-06-19 20:45:49",
"requestedAmount": "1.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575989315",
"parentPayuId": "17575988270",
"requestId": "12272282259",
"transactionAmount": "17000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "17000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871876680569534",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:44:44",
"requestDate": "2023-06-19 20:44:44",
"requestedAmount": "17000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575987187",
"parentPayuId": "17575985636",
"requestId": "12272280771",
"transactionAmount": "22000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "22000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871876275544562",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:44:23",
"requestDate": "2023-06-19 20:44:23",
"requestedAmount": "22000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575982601",
"parentPayuId": "17575981226",
"requestId": "12272277264",
"transactionAmount": "22000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "22000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871875960454018",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:43:37",
"requestDate": "2023-06-19 20:43:37",
"requestedAmount": "22000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575977486",
"parentPayuId": "17575975266",
"requestId": "12272273385",
"transactionAmount": "2553.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "2553.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687187533098981",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:42:45",
"requestDate": "2023-06-19 20:42:45",
"requestedAmount": "2553.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575971638",
"parentPayuId": "17575970387",
"requestId": "12272268907",
"transactionAmount": "24000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "24000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871874874906082",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:41:45",
"requestDate": "2023-06-19 20:41:45",
"requestedAmount": "24000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575965045",
"parentPayuId": "17575949937",
"requestId": "12272263818",
"transactionAmount": "300000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "300000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871872701464982",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:40:40",
"requestDate": "2023-06-19 20:40:40",
"requestedAmount": "300000.00",
"bankName": "UBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575964934",
"parentPayuId": "17575964009",
"requestId": "12272263733",
"transactionAmount": "32000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "32000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687187420568488",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:40:39",
"requestDate": "2023-06-19 20:40:39",
"requestedAmount": "32000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575956930",
"parentPayuId": "17575948153",
"requestId": "12272257726",
"transactionAmount": "160000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "160000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871872571786535",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:39:20",
"requestDate": "2023-06-19 20:39:20",
"requestedAmount": "160000.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575955845",
"parentPayuId": "17575952851",
"requestId": "12272256880",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "168718731316081",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:39:09",
"requestDate": "2023-06-19 20:39:09",
"requestedAmount": "30000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575954463",
"parentPayuId": "17575952717",
"requestId": "12272255764",
"transactionAmount": "5000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871873027663414",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:38:55",
"requestDate": "2023-06-19 20:38:55",
"requestedAmount": "5000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575950993",
"parentPayuId": "17575946317",
"requestId": "12272253052",
"transactionAmount": "500000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "500000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871872417568905",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:38:20",
"requestDate": "2023-06-19 20:38:20",
"requestedAmount": "500000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575943951",
"parentPayuId": "17575941783",
"requestId": "12272247621",
"transactionAmount": "53553.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "53553.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871871999391298",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:37:07",
"requestDate": "2023-06-19 20:37:07",
"requestedAmount": "53553.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575927822",
"parentPayuId": "17575920763",
"requestId": "12272234954",
"transactionAmount": "8251.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "8251.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871869817929127",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:34:24",
"requestDate": "2023-06-19 20:34:24",
"requestedAmount": "8251.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575926198",
"parentPayuId": "17575917206",
"requestId": "12272233735",
"transactionAmount": "100000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "100000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871869333999434",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:34:08",
"requestDate": "2023-06-19 20:34:08",
"requestedAmount": "100000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575897803",
"parentPayuId": "17575893474",
"requestId": "12272211428",
"transactionAmount": "150000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "150000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687186711691368",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:29:29",
"requestDate": "2023-06-19 20:29:29",
"requestedAmount": "150000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575897321",
"parentPayuId": "17575890777",
"requestId": "12272211023",
"transactionAmount": "10776.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10776.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687186688460836",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:29:25",
"requestDate": "2023-06-19 20:29:25",
"requestedAmount": "10776.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575890324",
"parentPayuId": "17575884802",
"requestId": "12272205730",
"transactionAmount": "70000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "70000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871866306927376",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:28:14",
"requestDate": "2023-06-19 20:28:14",
"requestedAmount": "70000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575871658",
"parentPayuId": "17575858589",
"requestId": "12272191329",
"transactionAmount": "365000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "365000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871863705464041",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:25:09",
"requestDate": "2023-06-19 20:25:09",
"requestedAmount": "365000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575868382",
"parentPayuId": "17575861481",
"requestId": "12272188882",
"transactionAmount": "5482.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "5482.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871863933731544",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:24:36",
"requestDate": "2023-06-19 20:24:36",
"requestedAmount": "5482.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575863415",
"parentPayuId": "17575857288",
"requestId": "12272185253",
"transactionAmount": "200000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "200000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871863517639377",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:23:46",
"requestDate": "2023-06-19 20:23:46",
"requestedAmount": "200000.00",
"bankName": "162B",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575857031",
"parentPayuId": "17575673630",
"requestId": "12272180316",
"transactionAmount": "26000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "26000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871844241584811",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:22:36",
"requestDate": "2023-06-19 20:22:36",
"requestedAmount": "26000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575856635",
"parentPayuId": "17575849779",
"requestId": "12272179998",
"transactionAmount": "480918.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "480918.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871862722298653",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:22:32",
"requestDate": "2023-06-19 20:22:32",
"requestedAmount": "480918.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575851067",
"parentPayuId": "17575849448",
"requestId": "12272175744",
"transactionAmount": "42388.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "42388.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871862629190533",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:21:31",
"requestDate": "2023-06-19 20:21:31",
"requestedAmount": "42388.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575850061",
"parentPayuId": "17575662720",
"requestId": "12272174971",
"transactionAmount": "40000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "40000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871843214605782",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:21:21",
"requestDate": "2023-06-19 20:21:21",
"requestedAmount": "40000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575841613",
"parentPayuId": "17575836606",
"requestId": "12272168455",
"transactionAmount": "15070.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "15070.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687186132568619",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:19:53",
"requestDate": "2023-06-19 20:19:53",
"requestedAmount": "15070.00",
"bankName": "AUSFNB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575839928",
"parentPayuId": "17575826917",
"requestId": "12272167242",
"transactionAmount": "20000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "20000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871860193718643",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:19:34",
"requestDate": "2023-06-19 20:19:34",
"requestedAmount": "20000.00",
"bankName": "CBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575820901",
"parentPayuId": "17575820098",
"requestId": "12272152660",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185957700218",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:16:15",
"requestDate": "2023-06-19 20:16:15",
"requestedAmount": "10000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575790532",
"parentPayuId": "17575787633",
"requestId": "12272129683",
"transactionAmount": "15042.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "15042.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185613313728",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:10:52",
"requestDate": "2023-06-19 20:10:52",
"requestedAmount": "15042.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575776831",
"parentPayuId": "17575775095",
"requestId": "12272118916",
"transactionAmount": "37252.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "37252.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871854781310658",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:08:29",
"requestDate": "2023-06-19 20:08:29",
"requestedAmount": "37252.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575772399",
"parentPayuId": "17575768991",
"requestId": "12272115642",
"transactionAmount": "69384.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "69384.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185420893378",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:07:43",
"requestDate": "2023-06-19 20:07:43",
"requestedAmount": "69384.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575768556",
"parentPayuId": "17575767610",
"requestId": "12272112579",
"transactionAmount": "2.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "2.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871853964983494",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:07:01",
"requestDate": "2023-06-19 20:07:01",
"requestedAmount": "2.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575766690",
"parentPayuId": "17575763160",
"requestId": "12272111087",
"transactionAmount": "333195.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "333195.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871853555907323",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:06:41",
"requestDate": "2023-06-19 20:06:41",
"requestedAmount": "333195.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575760243",
"parentPayuId": "17575752886",
"requestId": "12272105925",
"transactionAmount": "102077.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "102077.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185233324796",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:05:29",
"requestDate": "2023-06-19 20:05:29",
"requestedAmount": "102077.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575759864",
"parentPayuId": "17575755553",
"requestId": "12272105657",
"transactionAmount": "95000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "95000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871852751965523",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:05:25",
"requestDate": "2023-06-19 20:05:25",
"requestedAmount": "95000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575750828",
"parentPayuId": "17575749553",
"requestId": "12272098656",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871852124081895",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:03:52",
"requestDate": "2023-06-19 20:03:52",
"requestedAmount": "30000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575746352",
"parentPayuId": "17575741793",
"requestId": "12272095244",
"transactionAmount": "25000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "25000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185129134697",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:03:05",
"requestDate": "2023-06-19 20:03:05",
"requestedAmount": "25000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575746245",
"parentPayuId": "17575744271",
"requestId": "12272095157",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871851566811314",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:03:04",
"requestDate": "2023-06-19 20:03:04",
"requestedAmount": "10000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575742935",
"parentPayuId": "17575740927",
"requestId": "12272092562",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185120530361",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:02:29",
"requestDate": "2023-06-19 20:02:29",
"requestedAmount": "10000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575739177",
"parentPayuId": "17575737939",
"requestId": "12272089681",
"transactionAmount": "9000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "9000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687185087910823",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 20:01:49",
"requestDate": "2023-06-19 20:01:49",
"requestedAmount": "9000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575705729",
"parentPayuId": "17575704368",
"requestId": "12272063703",
"transactionAmount": "9729.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "9729.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871847409996178",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:56:01",
"requestDate": "2023-06-19 19:56:01",
"requestedAmount": "9729.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575702191",
"parentPayuId": "17575699858",
"requestId": "12272060986",
"transactionAmount": "10000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "10000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871846586637545",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:55:24",
"requestDate": "2023-06-19 19:55:24",
"requestedAmount": "10000.00",
"bankName": "UPI",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575686960",
"parentPayuId": "17575684910",
"requestId": "12272049123",
"transactionAmount": "97000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "97000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871845396569664",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:52:46",
"requestDate": "2023-06-19 19:52:46",
"requestedAmount": "97000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575663783",
"parentPayuId": "17575658321",
"requestId": "12272031233",
"transactionAmount": "108837.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "108837.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871842776813397",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:48:57",
"requestDate": "2023-06-19 19:48:57",
"requestedAmount": "108837.00",
"bankName": "UBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575658755",
"parentPayuId": "17575656073",
"requestId": "12272027540",
"transactionAmount": "13000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "13000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871842456487389",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:48:08",
"requestDate": "2023-06-19 19:48:08",
"requestedAmount": "13000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575650925",
"parentPayuId": "17575645838",
"requestId": "12272021493",
"transactionAmount": "150000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "150000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871841530749013",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:46:50",
"requestDate": "2023-06-19 19:46:50",
"requestedAmount": "150000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575647551",
"parentPayuId": "17575641458",
"requestId": "12272018842",
"transactionAmount": "110289.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "110289.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687184109310016",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:46:17",
"requestDate": "2023-06-19 19:46:17",
"requestedAmount": "110289.00",
"bankName": "UBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575645511",
"parentPayuId": "17575643658",
"requestId": "12272017223",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871841290901043",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:45:57",
"requestDate": "2023-06-19 19:45:57",
"requestedAmount": "50000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575643126",
"parentPayuId": "17575642148",
"requestId": "12272015379",
"transactionAmount": "50000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "50000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871841169200203",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:45:34",
"requestDate": "2023-06-19 19:45:34",
"requestedAmount": "50000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575627132",
"parentPayuId": "17575621620",
"requestId": "12272002959",
"transactionAmount": "15000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "15000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871839065963755",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:42:54",
"requestDate": "2023-06-19 19:42:54",
"requestedAmount": "15000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575624840",
"parentPayuId": "17575614941",
"requestId": "12272001209",
"transactionAmount": "8500.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "8500.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687183844729065",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:42:31",
"requestDate": "2023-06-19 19:42:31",
"requestedAmount": "8500.00",
"bankName": "CABB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575624435",
"parentPayuId": "17575617457",
"requestId": "12272000895",
"transactionAmount": "185000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "185000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687183863808524",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:42:27",
"requestDate": "2023-06-19 19:42:27",
"requestedAmount": "185000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575621523",
"parentPayuId": "17575615022",
"requestId": "12271998602",
"transactionAmount": "14.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "14.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871838453210657",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:41:57",
"requestDate": "2023-06-19 19:41:57",
"requestedAmount": "14.00",
"bankName": "UBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575593411",
"parentPayuId": "17575587507",
"requestId": "12271976551",
"transactionAmount": "112100.28",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "112100.28",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871835653285692",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:37:17",
"requestDate": "2023-06-19 19:37:17",
"requestedAmount": "112100.28",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575587724",
"parentPayuId": "17575582896",
"requestId": "12271971991",
"transactionAmount": "300000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "300000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871835219211814",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:36:21",
"requestDate": "2023-06-19 19:36:21",
"requestedAmount": "300000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575581571",
"parentPayuId": "17575575227",
"requestId": "12271967263",
"transactionAmount": "41249.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "41249.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871834340255709",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:35:19",
"requestDate": "2023-06-19 19:35:19",
"requestedAmount": "41249.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575580368",
"parentPayuId": "17575572276",
"requestId": "12271966219",
"transactionAmount": "310000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "310000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871834213689094",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:35:08",
"requestDate": "2023-06-19 19:35:08",
"requestedAmount": "310000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575568965",
"parentPayuId": "17575563102",
"requestId": "12271957356",
"transactionAmount": "60000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "60000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687183314900663",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:33:13",
"requestDate": "2023-06-19 19:33:13",
"requestedAmount": "60000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575568758",
"parentPayuId": "17575555829",
"requestId": "12271957206",
"transactionAmount": "30000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "30000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871832377627087",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:33:11",
"requestDate": "2023-06-19 19:33:11",
"requestedAmount": "30000.00",
"bankName": "CABB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575554521",
"parentPayuId": "17575524989",
"requestId": "12271946072",
"transactionAmount": "500000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "500000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871829355095155",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:30:46",
"requestDate": "2023-06-19 19:30:46",
"requestedAmount": "500000.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575550468",
"parentPayuId": "17575543624",
"requestId": "12271942850",
"transactionAmount": "350000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "350000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871831351023154",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:30:09",
"requestDate": "2023-06-19 19:30:09",
"requestedAmount": "350000.00",
"bankName": "HDFB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575545637",
"parentPayuId": "17575542866",
"requestId": "12271939075",
"transactionAmount": "9910.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "9910.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687183115632766",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:29:21",
"requestDate": "2023-06-19 19:29:21",
"requestedAmount": "9910.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575544168",
"parentPayuId": "17575538003",
"requestId": "12271937932",
"transactionAmount": "489828.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "489828.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871830720209854",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:29:06",
"requestDate": "2023-06-19 19:29:06",
"requestedAmount": "489828.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575531309",
"parentPayuId": "17575526057",
"requestId": "12271927875",
"transactionAmount": "3520.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "3520.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871829450128067",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:26:50",
"requestDate": "2023-06-19 19:26:50",
"requestedAmount": "3520.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575529421",
"parentPayuId": "17575523479",
"requestId": "12271926345",
"transactionAmount": "155000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "155000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871829198407247",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:26:29",
"requestDate": "2023-06-19 19:26:29",
"requestedAmount": "155000.00",
"bankName": "AUSFNB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575528440",
"parentPayuId": "17575526644",
"requestId": "12271925586",
"transactionAmount": "652.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "652.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871829541427",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:26:18",
"requestDate": "2023-06-19 19:26:18",
"requestedAmount": "652.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575524203",
"parentPayuId": "17575521063",
"requestId": "12271922332",
"transactionAmount": "14217.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "14217.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "168718289142332",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:25:34",
"requestDate": "2023-06-19 19:25:34",
"requestedAmount": "14217.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575523643",
"parentPayuId": "17575518565",
"requestId": "12271921901",
"transactionAmount": "103048.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "103048.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871828616595662",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:25:28",
"requestDate": "2023-06-19 19:25:28",
"requestedAmount": "103048.00",
"bankName": "SBIB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575504500",
"parentPayuId": "17575488713",
"requestId": "12271906946",
"transactionAmount": "74359.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "74359.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871825550142288",
"mode": "NB",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:22:08",
"requestDate": "2023-06-19 19:22:08",
"requestedAmount": "74359.00",
"bankName": "BBRB",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575503326",
"parentPayuId": "17575500007",
"requestId": "12271905966",
"transactionAmount": "29111.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "29111.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871826664475834",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:21:55",
"requestDate": "2023-06-19 19:21:55",
"requestedAmount": "29111.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575500639",
"parentPayuId": "17575497960",
"requestId": "12271903839",
"transactionAmount": "1.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687182652614987",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:21:27",
"requestDate": "2023-06-19 19:21:27",
"requestedAmount": "1.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575493718",
"parentPayuId": "17575492115",
"requestId": "12271898256",
"transactionAmount": "37000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "37000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "1687182593507971",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:20:17",
"requestDate": "2023-06-19 19:20:17",
"requestedAmount": "37000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575487830",
"parentPayuId": "17575486637",
"requestId": "12271893735",
"transactionAmount": "40000.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "40000.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871825411114516",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:19:17",
"requestDate": "2023-06-19 19:19:17",
"requestedAmount": "40000.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "0.00"
},
{
"action": "capture",
"payuId": "17575485377",
"parentPayuId": "17575484394",
"requestId": "12271891727",
"transactionAmount": "1.00",
"merchantServiceFee": "0.00000",
"merchantServiceTax": "0.00000",
"merchantNetAmount": "1.0",
"sgst": "0.00000",
"cgst": "0.00000",
"igst": "0.00000",
"merchantTransactionId": "16871825117562811",
"mode": "UPI",
"paymentStatus": "captured",
"transactionDate": "2023-06-19 19:18:50",
"requestDate": "2023-06-19 19:18:50",
"requestedAmount": "1.00",
"bankName": "INTENT",
"offerServiceFee": "0.00",
"offerServiceTax": "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"
}