{"info":{"_postman_id":"3c0c1875-d61c-4102-b99b-be85896e3cc8","name":"Transact Bridge API Docs","description":"<html><head></head><body><p><strong>Transact Bridge</strong> APIs are REST JSON APIs. Our API accepts JSON requests and returns JSON responses, and uses standard HTTP response codes, authentication.</p>\n<p>You can use our APIs in the sandbox (testing) and production (live) environments. We provide two different API URLs and tokens for sandbox and production.</p>\n<p>You can use the API in sandbox mode, which doesn't affect your live data or interact with the banking networks. The API key you use to authenticate the request determines whether the request is in live mode or test mode.</p>\n<p>Our API doesn't support bulk updates. You can work on only one object per request.</p>\n<p>All the APIs are authenticated and cannot be utilized without sending proper authentication headers.</p>\n<h1 id=\"authorization\">Authorization</h1>\n<p>Sandbox mode secret keys have the prefix <code>tb_test_</code> and live mode secret keys have the prefix <code>tb_live_</code>.</p>\n<p>Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.</p>\n<h4>Environment</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Type</strong></th>\n<th><strong>URL</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Production API endpoint</td>\n<td><a href=\"https://api.transactbridge.com\">https://api.transactbridge.com</a></td>\n</tr>\n<tr>\n<td>Production Partner Panel</td>\n<td><a href=\"https://reseller.transactbridge.com/login\">https://reseller.transactbridge.com/login</a></td>\n</tr>\n<tr>\n<td>Production Customer Panel</td>\n<td><a href=\"https://reseller.transactbridge.com/customer/login\">https://reseller.transactbridge.com/customer/login</a></td>\n</tr>\n<tr>\n<td>Sandbox API endpoint</td>\n<td><a href=\"https://sandbox-api.transactbridge.com\">https://sandbox-api.transactbridge.com</a></td>\n</tr>\n<tr>\n<td>Sandbox Partner Panel</td>\n<td><a href=\"https://sandbox.transactbridge.com/login\">https://sandbox.transactbridge.com/login</a></td>\n</tr>\n<tr>\n<td>Sandbox Customer Panel</td>\n<td><a href=\"https://sandbox.transactbridge.com/customer/login\">https://sandbox.transactbridge.com/customer/login</a></td>\n</tr>\n</tbody>\n</table>\n</div><p>We will provide the following credentials to the partner for accessing both APIs and the web panel once the email is provided by the partner. If the partner is creating an account directly on the sandbox environment, the partner would still need to email us so that we can configure the account for UAT purposes.</p>\n<p>Partners can use the panel to view all the transactions, subscriptions, sessions, and invoices, create new API keys, add team members, give permission to team members, whitelist server IPs for more security, configure callback URLs, etc.</p>\n<h4>Signature Generation</h4>\n\n<p>A signature is a mandatory header if using APIs. We are generating signatures using two details, the public <strong><code>API KEY</code></strong> and private <strong><code>SECRET KEY</code></strong>. There is a third <strong><code>PUBLISH KEY</code></strong> as well which is used for specific modules, but not requried for signature generation.</p>\n<p><strong>Sample Example</strong>:<br>Let partner Api key: tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN</p>\n<p>Let partner Secret key: tb_test_CT5u9ZeNMBEL884g6gP3</p>\n<p><strong>Step 1</strong>: Create a new string by concatenating the API key and secret key with a colon in between. In our sample, the string becomes \"tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN:tb_test_CT5u9ZeNMBEL884g6gP3\"</p>\n<p><strong>Step 2</strong>: Create a signature using the above string using SHA-512 Algorithm. In our sample, the signature becomes 7ae85bcc8d0af6ceacd271da52d22d1fa091733b891ff133169ef959647f5d23232c6b6709150f1cbbabc5d2a815cb05b91448c3c3eabc9447343b689eba7606</p>\n<p>Below are different examples for different languages</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const crypto = require('crypto');\nfunction generateChecksumString(str) {\n    return crypto.createHash('sha512').update(str).digest('hex');\n}\nlet signature = generateChecksumString(\"tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN:tb_test_CT5u9ZeNMBEL884g6gP3\")\nconsole.log(signature);\n// will print below signature\n// 7ae85bcc8d0af6ceacd271da52d22d1fa091733b891ff133169ef959647f5d23232c6b6709150f1cbbabc5d2a815cb05b91448c3c3eabc9447343b689eba7606\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">$shatest = (\"tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN:tb_test_CT5u9ZeNMBEL884g6gP3\");\n$sha512test = hash(\"sha512\",$shatest);\necho $sha512test;\n// will print below signature\n// 7ae85bcc8d0af6ceacd271da52d22d1fa091733b891ff133169ef959647f5d23232c6b6709150f1cbbabc5d2a815cb05b91448c3c3eabc9447343b689eba7606\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import hashlib\ntext = 'tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN:tb_test_CT5u9ZeNMBEL884g6gP3'\nm = hashlib.sha512(text.encode('UTF-8'))\nprint(m.hexdigest())\n# will print below signature\n# 7ae85bcc8d0af6ceacd271da52d22d1fa091733b891ff133169ef959647f5d23232c6b6709150f1cbbabc5d2a815cb05b91448c3c3eabc9447343b689eba7606\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-ruby\"> def generate_signature(api_key, secret_key)\n    require 'digest'\n    # Concatenate API key and secret key with colon\n    signature_string = \"#{api_key}:#{secret_key}\"\n    puts \"\\nSignature String:\"\n    puts signature_string\n    # Generate SHA-512 hash\n    signature = Digest::SHA512.hexdigest(signature_string)\n    puts \"\\nFinal Signature:\"\n    puts signature\n    signature\n  end\n# --------- INVOCATION ----------\napi_key = \"tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN\"\nsecret_key = \"tb_test_CT5u9ZeNMBEL884g6gP3\"\nsignature = generate_signature(api_key, secret_key)\n\n</code></pre>\n<p><strong>Step 3</strong>: Pass the public <strong><code>API KEY</code></strong> and the generated signature in the headers like below.</p>\n<table><tbody><tr><td><div><b>Headers</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>Content-Type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>application/json</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-api-key</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Public API key provided by the platform to the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-signature</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>A signature is created by the secret key provided by the platform to the partner. We use SHA-256 for creating signatures</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Extended Signature Generation</h4>\n\n<p>An extended signature is an optional authorization mechanism. To enable this feature, the partner will need to enable the extended signature for the API in the platform. This adds extra layer by using the request body to generate the signature making each request more secure and unique. We are generating extended signatures using three details, the public <strong><code>API KEY</code></strong> and private <strong><code>SECRET KEY</code></strong> and the <strong><code>REQUEST BODY</code></strong>.</p>\n<p><strong>Sample Example</strong>:<br>Let partner Api key: tb_test_q47Wqf04e1sIZu22kVwWBrDncigOkIPN</p>\n<p>Let partner Secret key: tb_test_CT5u9ZeNMBEL884g6gP3</p>\n<p>Let request body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"returnUrl\":\"https://www.transactbridge.com/demo\",\"quoteCurrCode\":\"USD\"}\n\n</code></pre>\n<p>We use a specific format to create the token with three components.</p>\n<p><strong>Token Format: \"</strong>${encodedAuthHeader}.${encodedPayload}.${signature}\"</p>\n<p><strong>Generating encodedAuthHeader</strong>: We use a static payload {\"alg\":\"HS512\",\"typ\":\"JWT\"} which is encoded with Base64 to create <strong><code>encodedAuthHeader</code></strong>. In our sample the generated output will be <code>\"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9\"</code></p>\n<p><strong>Generating encodedPayload:</strong> Encode the request body with Base64 to generate <strong><code>encodedPayload</code></strong>. In our sample the generated output will be <code>\"eyJyZXR1cm5VcmwiOiJodHRwczovL3d3dy50cmFuc2FjdGJyaWRnZS5jb20vZGVtbyIsInF1b3RlQ3VyckNvZGUiOiJVU0QifQ\"</code></p>\n<p><strong>Generating Signature</strong>: Create a string by concatenating the <strong><code>encodedAuthHeader</code></strong> and <strong><code>encodedPayload</code></strong> with a <strong><code>period</code></strong> in between. In our sample, the string becomes <code>\"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJyZXR1cm5VcmwiOiJodHRwczovL3d3dy50cmFuc2FjdGJyaWRnZS5jb20vZGVtbyIsInF1b3RlQ3VyckNvZGUiOiJVU0QifQ\"</code>. The string is then signed using SHA-512 Algorithm. In our sample the generated output will be <code>\"LQKyKPK9Sw_cXyuBxr7gnaUICYY-zASOcKezCr5ed5Vly0E1DXR1-8TZSVfPc9AGymTCjt3kvg48Z93es3slew\"</code></p>\n<p><strong>Generating Extended Signature</strong>: Using the token format concate the different components to created the final extended signature. In our sample, the token becomes <code>\"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJyZXR1cm5VcmwiOiJodHRwczovL3d3dy50cmFuc2FjdGJyaWRnZS5jb20vZGVtbyIsInF1b3RlQ3VyckNvZGUiOiJVU0QifQ.LQKyKPK9Sw_cXyuBxr7gnaUICYY-zASOcKezCr5ed5Vly0E1DXR1-8TZSVfPc9AGymTCjt3kvg48Z93es3slew\"</code></p>\n<p>Pass the public <strong><code>API KEY</code></strong> and the generated token in the headers like below.</p>\n<table><tbody><tr><td><div><b>Headers</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>Content-Type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>application/json</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-api-key</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Public API key provided by the platform to the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-signature-extended</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Token generated from the above steps. We use SHA-256 for creating signatures</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p>Below are different examples for different languages</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const crypto = require('crypto');\nfunction getApiExtendedSignature(payload, secret) {\n    try {\n        const authHeadersJson = {\n            alg: 'HS512',\n            typ: 'JWT',\n        };\n        const authHeadersStr = JSON.stringify(authHeadersJson);\n        const encodedAuthHeader = Buffer.from(authHeadersStr, 'utf8').toString('base64url');\n        const payloadStr = JSON.stringify(payload);\n        const encodedPayload = Buffer.from(payloadStr, 'utf8').toString('base64url');\n        let token = `${encodedAuthHeader}.${encodedPayload}`;\n        const signature = crypto.createHmac('sha512', secret).update(token, 'utf8').digest('base64url');\n        return `${token}.${signature}`;\n    } catch (error) {\n        throw error;\n    }\n}\nlet signature = getApiExtendedSignature({ returnUrl: 'https://www.transactbridge.com/demo', quoteCurrCode: 'USD' }, \"tb_test_CT5u9ZeNMBEL884g6gP3\")\nconsole.log(signature);\n// will print below signature\n// eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJyZXR1cm5VcmwiOiJodHRwczovL3d3dy50cmFuc2FjdGJyaWRnZS5jb20vZGVtbyIsInF1b3RlQ3VyckNvZGUiOiJVU0QifQ.LQKyKPK9Sw_cXyuBxr7gnaUICYY-zASOcKezCr5ed5Vly0E1DXR1-8TZSVfPc9AGymTCjt3kvg48Z93es3slew\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">function base64url_encode($data) {\n    // Base64 encode, then convert to URL-safe format and remove padding\n    return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');\n}\nfunction getApiExtendedSignature($payload, $secret) {\n    try {\n        // Header\n        $authHeadersJson = [\n            \"alg\" =&gt; \"HS512\",\n            \"typ\" =&gt; \"JWT\"\n        ];\n        $encodedHeader = base64url_encode(json_encode($authHeadersJson, JSON_UNESCAPED_SLASHES));\n        $encodedPayload = base64url_encode(json_encode($payload, JSON_UNESCAPED_SLASHES));\n        $token = $encodedHeader . \".\" . $encodedPayload;\n        // HMAC-SHA512 Signature\n        $signature = hash_hmac(\"sha512\", $token, $secret, true);\n        $encodedSignature = base64url_encode($signature);\n        return $token . \".\" . $encodedSignature;\n    } catch (Exception $e) {\n        throw $e;\n    }\n}\n// Example usage:\n$payload = [\n    \"returnUrl\" =&gt; \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\" =&gt; \"USD\"\n];\n$secret = \"tb_test_CT5u9ZeNMBEL884g6gP3\";\n$token = getApiExtendedSignature($payload, $secret);\necho $token;\n// will print below signature\n// eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJyZXR1cm5VcmwiOiJodHRwczovL3d3dy50cmFuc2FjdGJyaWRnZS5jb20vZGVtbyIsInF1b3RlQ3VyckNvZGUiOiJVU0QifQ.LQKyKPK9Sw_cXyuBxr7gnaUICYY-zASOcKezCr5ed5Vly0E1DXR1-8TZSVfPc9AGymTCjt3kvg48Z93es3slew\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import json\nimport hmac\nimport hashlib\nimport base64\ndef base64url_encode(data: bytes) -&gt; str:\n    \"\"\"Encodes bytes into base64url without padding.\"\"\"\n    return base64.urlsafe_b64encode(data).rstrip(b'=').decode('utf-8')\ndef get_api_extended_signature(payload: dict, secret: str) -&gt; str:\n    try:\n        # Header\n        auth_headers_json = {\n            \"alg\": \"HS512\",\n            \"typ\": \"JWT\"\n        }\n        encoded_header = base64url_encode(json.dumps(auth_headers_json).encode(\"utf-8\"))\n        encoded_payload = base64url_encode(json.dumps(payload).encode(\"utf-8\"))\n        token = f\"{encoded_header}.{encoded_payload}\"\n        # Signature using HMAC SHA-512\n        signature = hmac.new(\n            secret.encode(\"utf-8\"),\n            token.encode(\"utf-8\"),\n            hashlib.sha512\n        ).digest()\n        encoded_signature = base64url_encode(signature)\n        return f\"{token}.{encoded_signature}\"\n    except Exception as e:\n        raise e\n# Example usage\npayload = {\"returnUrl\":\"https://www.transactbridge.com/demo\",\"quoteCurrCode\":\"USD\"}\nsecret = \"tb_test_CT5u9ZeNMBEL884g6gP3\"\nsigned_token = get_api_extended_signature(payload, secret)\nprint(signed_token)\n# will print below signature\n# eyJhbGciOiAiSFM1MTIiLCAidHlwIjogIkpXVCJ9.eyJyZXR1cm5VcmwiOiAiaHR0cHM6Ly93d3cudHJhbnNhY3RicmlkZ2UuY29tL2RlbW8iLCAicXVvdGVDdXJyQ29kZSI6ICJVU0QifQ.ipnnEhwj0kzUhkGvcXD_maWFt17IVxdmR68ETrruku3WSif-NDMOMH-DrAu78tV-T9TxR2coO8lLM9A2EZSlfw\n\n</code></pre>\n<h4>Aggregators Authorization</h4>\n\n<p>An aggregator can use both signature or extended signature to authorize using their API keys. The aggregator might have multiple merchants and can use the same API keys of the main aggregator account to authorize. To call the aggregator's account API, don't pass <strong><code>x-partner-merchant-id</code></strong> .</p>\n<table><tbody><tr><td><div><b>Headers</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>Content-Type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>application/json</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-api-key</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Public API key provided by the platform to the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-signature</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Token generated from the signature creation steps. We use SHA-256 for creating signatures<br></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-partner-merchant-id</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Aggregator's merchant id to be passed here</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>x-signature-extended</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Token generated from the extended signature creation steps. We use SHA-256 for creating signatures</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"payment-methods\">Payment Methods</h1>\n<p>Transact Bridge has all the cards and alternative payment methods availabe in India. Below are the list with constraints in terms of minimum and maximum</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Pay Methods</strong></th>\n<th><strong>Min Amt (INR</strong>)</th>\n<th><strong>Max Amt (INR)</strong></th>\n<th><strong>Networks</strong></th>\n<th><strong>Remarks</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UPI</td>\n<td>1</td>\n<td>100,000</td>\n<td>PhonePe, PayTm, Google Pay, Bhim etc.</td>\n<td>All 50+ UPI apps can be used. Also UPI on Credit cards are also available.</td>\n</tr>\n<tr>\n<td>Debit Cards</td>\n<td>1</td>\n<td>100,000</td>\n<td>All domestically issued cards including VISA, Rupay, Master Card etc.</td>\n<td>Max limits depends on issuing Bank limits as well</td>\n</tr>\n<tr>\n<td>Credit Cards</td>\n<td>1</td>\n<td>1,000,000</td>\n<td>All domestically issued cards including VISA, Rupay, Master Card etc.</td>\n<td>Max limits depends on issuing Bank limits as well</td>\n</tr>\n<tr>\n<td>Net Banking</td>\n<td>1</td>\n<td>1,000,000</td>\n<td>80+ Indian Domestic Banks</td>\n<td>Max limits depends on issuing Bank limits as well</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payment-flow\">Payment Flow</h1>\n<p>Transact Bridge has two different customer payment flows, depending on the eligibility criteria the partner can choose from two:</p>\n<ul>\n<li><p><strong>Redirection Flow</strong>: In this flow, the customer will be redirected first from the partner's website to a domain hosted by Transact Bridge where the customer will enter the requisite information (depending on what compliances) to make payment, and after making payment the customer will be redirected back to the partner's website. The redirection URL will be provided in response to the <a href=\"#d4607171-457b-4d24-8277-6d9a79a997dd\">Create Session API</a> and <a href=\"#307dc665-ae10-4e43-8853-5b7f04961825\">Create Subscription API</a> requests.</p>\n</li>\n<li><p><strong>Iframe Flow</strong>: In this flow, the customer is not being redirected but the checkout view of Transact Bridge will be visible on the partner's website as an overlay or embedded solution. The customer will enter the requisite information (depending on what compliances) to make payment, and after making payment the iframe will be closed with events being pushed to the partner's website. The redirection URL through which the iframe can be invoked will be provided in response to the <a href=\"#d4607171-457b-4d24-8277-6d9a79a997dd\">Create Session API</a> and <a href=\"#307dc665-ae10-4e43-8853-5b7f04961825\">Create Subscription API</a> requests. The partner can find the iframe script and other relevant documents using these links for <a href=\"https://cdn.transactbridge.com/scripts/iframe.js\">script</a>, <a href=\"https://cdn.transactbridge.com/scripts/README.md\">readme file</a>, and <a href=\"https://cdn.transactbridge.com/scripts/testIframe.html\">sample HTML file</a>.</p>\n</li>\n</ul>\n<h1 id=\"requestresponse\">Request/Response</h1>\n<p>All APIs are JSON-based and therefore only accept JSON in the request body. We have pagination for those APIs which are for getting a list of objects.</p>\n<h4>Request Body</h4>\n\n<p>Following are some of the common parameters that the request body accepts.</p>\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>In getting a list of Objects API <code>filter</code> parameter allows us to narrow down the results. Each API can have a different <code>filter</code> parameters.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used to paginate if the API is of Get a list of Objects.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sort</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>In getting a list of Objects API <code>sort</code> parameter allows us to get a sorted result. Each API can have a different <code>sort</code> parameters.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>fromDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The date format used is<br><code><b>yyyy-MM-dd HH:mm:ss</b></code><br>For Ex. 2023-10-19 18:30:00</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Body</h4>\n\n<p>All the responses will contain these 4 parameters <code>status</code>, <code>sub_status</code>, <code>msg</code>, <code>data</code> . Other parameters are on a need basis.</p>\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String<br>Enum:<code>success</code>, <code>error</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is the final status of the API, if the status is not successful then consider that the API did not run successfully. You can check <code>msg</code> parameter to understand what went wrong.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>error_code</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This parameter is only available when <code>status</code> in the response body is <code>error</code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>msg</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>To understand the error if the request was not successful.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array or Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the response data of the request.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>maxPageSize</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The maximum number of data objects that are returned in the Get All requests.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>hasMore</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the Get All request has more data objects then the value is <code>true</code>. Use <code>page</code> parameter in the request to get the next data objects.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"encryption\">Encryption</h1>\n<p>Encryption is used to send sensitive data like credit card and debit card details in the S2S API. We use \"RSA (Padding: RSA_PKCS1_OAEP_PADDING)\" algorithm to encrypt the data string using a key. To use this module the parnter must be PCI-certified. There is no need to integrate this if the parnter is not using <a href=\"https://docs.transactbridge.com/#757c3604-04ea-494c-9d61-aa30a15373e7\">Create Payment Request</a>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Crypto module is used to encrypt a data string\nconst crypto = require('crypto');\n// data is the payload string that needs to be encrypted\n// publicKey is provided to the partner by Transact Bridge\nfunction encryptRsa(publicKey, data) {\n    try {\n        const encryptMe = crypto.publicEncrypt(\n            {\n                key: publicKey,\n                padding: crypto.constants.RSA_PKCS1_OAEP_PADDING,\n            },\n            Buffer.from(data),\n        );\n        let hash = encryptMe.toString('base64');\n        return hash;\n    } catch (error) {\n        throw error;\n    }\n}\n\n</code></pre>\n<h1 id=\"definitions\">Definitions</h1>\n<h4>Transaction Types</h4>\n\n<p>Different types of transactions represent different use cases.</p>\n<table><tbody><tr><td><div><b>Types</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DEPOSIT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a credit transaction and will be credited only when the transaction is in status <code>SUCCESS</code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>REFUND</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a debit transaction for the refund raised by the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CHARGEBACK</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a debit transaction for the refund raised by the bank against dissatisfaction.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Billing Session Status</h4>\n\n<p>These billing session statuses represent the state the session is currently in.</p>\n<table><tbody><tr><td><div><b>Types</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CREATED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A session has been created but the link has not been used by the customer to initiate the payment window.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>STARTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When the customer opens the payment link and proceeds with accepting TnC.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CLOSED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Payment has been successfully done by the customer and an invoice has been created.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>In case of non-payment, the link will be expired after a configured interval. Partners can pass the expiry date at the time of session creation. The default expiry date is 24 hours from the time of the creation of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>REJECTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This status needs to be enabled by the Admin Team, once done, if a customer clicks on \"Back to Shopping\" on the payment page then the billing session will be marked <code>REJECTED</code> and no further attempts will be allowed.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Subscription Status</h4>\n\n<p>These subscription statuses represent the state the subscription is currently in.</p>\n<table><tbody><tr><td><div><b>Types</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PENDING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A subscription has been created, the link is active and the customer can pay on the link to start the subscription in <code><b>TRIAL</b></code> or <code><b>ACTIVE</b></code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PENDING_EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When the subscription has crossed the <code><b>pendingExpire</b></code> minutes configured during the creation of the subscription, the status is changed to <code><b>PENDING_EXPIRED</b></code>. This is a terminal state and the customer cannot attempt a payment after this.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRIAL</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Subscription is in trial mode and depending on the <code><b>trialSettings</b></code> post completion of trial auto debit may occur or may not.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>ACTIVE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Subscription has been activated by adding a payment method for postpaid subscriptions or paying in full for prepaid subscriptions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAUSED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Subscription has been paused by the system configured by the partner using <code><b>reAttemptConfig</b></code>.<br>Subscription can also be paused directly by the partner</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CANCELLED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The subscription has been canceled by the end customer using the customer panel. If <code><b>partialCancel</b></code> was allowed in the subscription, then the customer would be able to cancel on an immediate basis as well. The subscription can also be cancelled directly by the partner or by the system depending on the configuration of <code><b>reAttemptConfig.</b></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The subscription is in unknown status due to unforeseen reasons.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Invoice Status</h4>\n\n<p>These invoice statuses represent the actual status of the invoice.</p>\n<table><tbody><tr><td><div><b>Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Txn Sub Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DRAFT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>CREATED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice has just been created and there is pending approval from the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>APPROVED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice has been approved by the partner and we will try to auto-debit the customer on the due date.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DUE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice is in due state and the customer can pay on the invoice. If there is a mandate available, we will try for auto-debit as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>OVERDUE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice could not be paid within the due time and is not in the overdue state. Customers can still attempt to make the payment on the invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>CAPTURED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice has been successfully paid and is ready to be sent to the customer.<br><b>Note</b>: Billing Session Flow will only have invoices in this state from the start.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>CHARGEBACK</div><div><div><div><div></div></div></div><div></div></div></td><td><div>There has been a chargeback request on the invoice and is in the processing state.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>CHARGEBACK-COMPLETED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The chargeback has been processed and a credit note has been created.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>REFUND</div><div><div><div><div></div></div></div><div></div></div></td><td><div>There has been a refund request on the invoice and is in the processing state.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>REFUND-COMPLETED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The refund has been processed and a credit note has been created.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CANCELLED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice has been marked canceled by the partner</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>VOID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The invoice has been marked void by the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Deposit Transaction Status</h4>\n\n<p>These transaction statuses represent the actual status of the transaction.</p>\n<table><tbody><tr><td><div><b>Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Txn Sub Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PENDING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>INITIATED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The transaction has just been created and there has been a payment attempt on it.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PROCESSING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>N/A</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A payment attempt has been made on the transaction. It is an intermediary state until we get a confirmation from the acquirer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CANCELLED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>VOID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The transaction has been cancelled and no further payment attempt can be made. This is a terminal state.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>VOID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A payment attempt was made on the transaction but due to any reason, the transaction was failed by the acquirer. To know more check the <b>txStatusCode</b> value.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>REJECTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A payment attempt was made but the payment was rejected either by the customer of by the bank due to insufficient funds.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>SUCCESS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>CAPTURED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The payment attempt on the transaction has been successful and a successful debit has been made on the customer's account.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> A transaction is treated as successful only if the status is <strong><code>SUCCESS</code></strong> and txSubStatus is <strong><code>CAPTURED</code></strong>. The transactions which were accepted as chargeback will have the status <strong><code>SUCCESS</code></strong> and txSubStatus as <strong><code>CHARGEBACK</code></strong></p>\n<h4>Payment Verification Status</h4>\n\n<p>These payment verification status represents the different states the transaction can be in. These status only applies to <strong><code>PACB</code></strong> Module and not to <strong><code>TSP</code></strong> or <strong><code>Session</code></strong> Module</p>\n<table><tbody><tr><td><div><b>Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PENDING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>There is no verification details that have been uploaded.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>IN_REVIEW</div><div><div><div><div></div></div></div><div></div></div></td><td><div>After uploading verification details, accquirer is verifying the details and no further action is required from the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>ACTION_REQUIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Accquirer have rejected the verification detail and now partner needs to update the details again.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>VERIFIED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A payment attempt was made on the transaction but due to any reason, the transaction was failed by the acquirer. To know more check the <b>txStatusCode</b> value.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Payment verification details cannot be verifieid in the stipulated time perid of 7 days and therefore the payment will now be refunded back to the customer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CANCELLED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>When a refund is initiated for the payment the payment verification status changes to CANCELLED.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> Transactions for which paymentVerificationStatus if not <strong>VERIFIED</strong>, will not be settled to the partner.</p>\n<h4>Refund Transaction Status</h4>\n\n<p>These transaction statuses represent the actual status of the transaction.</p>\n<table><tbody><tr><td><div><b>Status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PENDING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>A refund has been created by the partner. Once we acknowledge the status will be changed to <code><b>PROCESSING</b></code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PROCESSING</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The refund has been passed over to the bank. We are waiting for the status update from the bank.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>SUCCESS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The refund has been successfully done and the payment reached the end customer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Due to some reason, the refund could not be completed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>CANCELLED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The refund request has been canceled by the partner.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Subscription Frequency</h4>\n\n<p>A subscription is a recurring billing mechanism which requires the billing cycle that is the frequency at which invoice has to be raised and subsequent auto-debit from customer has to be made. Below are the frequencies that are allowed.</p>\n<table><tbody><tr><td><div><b>Frequency</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DAIL</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires daily auto-debit.<br><b>Note</b>: Even though the billing is daily, the invoice needs to be generated 1-2 days prior depending on the payment method.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>WEEK</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires weekly / 7-day based auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>MNTH</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires monthly auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>BIMN</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires bi-monthly auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>QURT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires quaterly auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>MIAN</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires semi-annully that is 6 months based auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>YEAR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires yearly based auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>ONDM</div><div><div><div><div></div></div></div><div></div></div></td><td><div>For billing that requires on demand based auto-debit.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"enums-validators\">Enums &amp; Validators</h1>\n<p>Transact Bridge uses different enum values and validators for strings and numbers for efficiency.</p>\n<h4>Enums</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>txType</td>\n<td>[\"DEPOSIT\", \"REFUND\", \"CHARGEBACK\"]</td>\n</tr>\n<tr>\n<td>txSubType</td>\n<td>[\"ONE-TIME\", \"RECURRING\", \"REQ-AUTH\", \"RECURRING-NOTIFY\", \"RECURRING-NOTIFIED\", \"RECURRING-EXPIRED\"]</td>\n</tr>\n<tr>\n<td>txSubStatus</td>\n<td>[\"INITIATED\", \"CREATED\", \"SETTLEMENT\", \"RR_SETTLEMENT\", \"SALE\", \"GST\", \"IN_TRANSIT\", \"CANCELLED\", \"CHARGEBACK\", \"CAPTURED\", \"VOID\", \"REJECTED\", \"EXPIRED\", \"REFUND_INITIATED\", \"REFUND\", \"REFUND_COMPLETED\", \"REFUND_PROCESSING\", \"CHARGEBACK_SETTLED\", \"CHARGEBACK_ACCEPTED\", \"CHARGEBACK_PROCESSING\",\" CHARGEBACK_COMPLETED\", \"CHARGEBACK_INITIATED\", \"CHARGEBACK_DISPUTE\", \"CHARGEBACK_RR\"]</td>\n</tr>\n<tr>\n<td>txStatus</td>\n<td>[\"PENDING\", \"APPROVED\", \"PROCESS\", \"PROCESSING\", \"CANCELLED\", \"FAILED\", \"SUCCESS\", \"REVERTED\", \"DISPUTE\", \"PARTIAL_SUCCESS\"]</td>\n</tr>\n<tr>\n<td>invoiceStatus</td>\n<td>[\"DRAFT\", \"DUE\", \"OVERDUE\", \"PAID\", \"CANCELLED\", \"APPROVED\", \"VOID\", \"UNPAID\"]</td>\n</tr>\n<tr>\n<td>billingSessionStatus</td>\n<td>[\"CREATED\", \"STARTED\", \"CLOSED\", \"EXPIRED\", \"REJECTED\", \"FAILED\"]</td>\n</tr>\n<tr>\n<td>subscriptionStatus</td>\n<td>[\"PENDING\", \"PENDING_EXPIRED\", \"TRIAL\", \"ACTIVE\", \"PAUSED\", \"EXPIRED\", \"CANCELLED\"]</td>\n</tr>\n<tr>\n<td>subscriptionFrequency</td>\n<td>[\"DAIL\", \"WEEK\", \"MNTH\", \"BIMN\", \"QURT\", \"MIAN\", \"YEAR\", \"ONDM\"]</td>\n</tr>\n<tr>\n<td>paymentVerificationStatus</td>\n<td>[\"PENDING\", \"ACTION_REQUIRED\", \"IN_REVIEW\", \"VERIFIED\", \"EXPIRED\", \"CANCELLED\"]</td>\n</tr>\n<tr>\n<td>state</td>\n<td>[\"Andaman and Nicobar Islands\", \"Andhra Pradesh\", \"Arunachal Pradesh\", \"Assam\", \"Bihar\", \"Chandigarh\", \"Chhattisgarh\", \"Dadra and Nagar Haveli\", \"Daman and Diu\", \"Delhi\", \"Goa\", \"Gujarat\", \"Haryana\", \"Himachal Pradesh\", \"Jammu and Kashmir\", \"Jharkhand\", \"Karnataka\", \"Kerala\", \"Lakshadweep\", \"Madhya Pradesh\", \"Maharashtra\", \"Manipur\", \"Meghalaya\", \"Mizoram\", \"Nagaland\", \"Odisha\", \"Puducherry\", \"Punjab\", \"Rajasthan\", \"Sikkim\", \"Tamil Nadu\", \"Telangana\", \"Tripura\", \"Uttar Pradesh\", \"Uttarakhand\", \"West Bengal\"]</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Validators</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Regex</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AllowedString</td>\n<td>/^[a-z\\d\\s\\-/.()_:]+$/i</td>\n<td>Allowed: alphabets, numerals, space, dot, slash, hyphen, parenthesis</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>/^[a-z\\d\\s\\-_.'#&amp;()=/{},[\\]]+$/i;</td>\n<td>Allowed: alphabets, numerals, space, hyphens, underscore, ampersand, dot, apostrophe, hash, parenthesis, equal, slash, curly brackets, square brackets, backslash.</td>\n</tr>\n<tr>\n<td>MultiLineDescription</td>\n<td>/^([a-z\\d\\s\\-/+/,/.()@]+</td>\n<td>)+$/i</td>\n</tr>\n<tr>\n<td>ReferenceId</td>\n<td>/^[a-z\\d\\-/.()_:]+$/i</td>\n<td>Allowed: alphabets, numerals, dots, slash, hyphen, parenthesis, underscore, colon</td>\n</tr>\n<tr>\n<td>MongoId</td>\n<td>/^[0-9a-fA-F]{24}$/;</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"uat-testing\">UAT Testing</h1>\n<p>Transact Bridge provides UAT testing credentials for UPI, Credit Card, Debit Card, and Net banking to test the created transactions and check end-to-end flows of payments. We also provide test details for PAN (Tax Identity in India) and GST verification as well.</p>\n<p><strong>Note</strong>: The lower limit is defined as Rs. 1/- and the upper limit is defined as Rs. 1000/-</p>\n<h4>Test PAN &amp; GST Details</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PAN</td>\n<td>ABCDE1234F</td>\n<td>You can use this to verify PAN if required or prompted in the UAT for testing purpose.</td>\n</tr>\n<tr>\n<td>GST</td>\n<td>24AAACJ3770E2ZV</td>\n<td>You can use this to verify GST if required or prompted in the UAT for testing purpose.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Test UPI Details for One-time</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vpa</td>\n<td>tbridgesuccess@upi</td>\n<td>Using this as the UPI, the transaction will get auto success in 60 seconds</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>tbridgefailedrefund@upi</td>\n<td>Using this UPI, the transaction will get auto success in 60 seconds.  <br>If a refund is raised on the invoice of this particular session, it will fail in the next 60 seconds.</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>tbridgesuccessrefund@upi</td>\n<td>Using this UPI, the transaction will get auto success in 60 seconds.  <br>If a refund is raised on the invoice of this particular session, it will get success in the next 60 seconds.</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>tbridgefailure@upi</td>\n<td>Using this as the UPI, the transaction will fail in 60 seconds</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note</strong>: In the sandbox enter the above VPA/UPI Id and click on verify. Once it is successful initiate payment and wait for 90 seconds, the payment will be automatically successful.</p>\n<h4>Test UPI Details for Subscriptions</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vpa</td>\n<td>subtbridgesuccess@upi</td>\n<td>Using this as the UPI, the transaction will get auto success in 60 seconds</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>subtbridgefailure@upi</td>\n<td>Using this as the UPI, the transaction will fail in 60 seconds</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Test UPI Details for PACB Flow</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vpa</td>\n<td>testsuccess@gocash  <br>testtpvsuccess@gocash  <br>success@upi</td>\n<td>Using this as the UPI, the transaction will get auto success in 60 seconds</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>testfailure@gocash  <br>testtpvfail@gocash</td>\n<td>Using this as the UPI, the transaction will fail in 60 seconds</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Test Debit Card Details for One Time</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Card Number</td>\n<td>4622943126146407</td>\n</tr>\n<tr>\n<td>Card Issuer/Network</td>\n<td>VISA</td>\n</tr>\n<tr>\n<td>Expiry Month</td>\n<td>12</td>\n</tr>\n<tr>\n<td>Expiry Year</td>\n<td>2024</td>\n</tr>\n<tr>\n<td>CVV</td>\n<td>936</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Test Credit Card Details for One Time</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Card Number</td>\n<td>4208585190116667</td>\n</tr>\n<tr>\n<td>Card Issuer/Network</td>\n<td>VISA</td>\n</tr>\n<tr>\n<td>Expiry Month</td>\n<td>06</td>\n</tr>\n<tr>\n<td>Expiry Year</td>\n<td>2027</td>\n</tr>\n<tr>\n<td>CVV</td>\n<td>508</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note</strong>: The OTP to be used on the Bank Page is <strong>123456</strong></p>\n<h4>Test Net Banking Details</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank</td>\n<td>State Bank of India</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>test</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>test</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Test Debit Card Details for Subscriptions</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Card Number</td>\n<td>4761360079851258</td>\n</tr>\n<tr>\n<td>Card Issuer/Network</td>\n<td>VISA</td>\n</tr>\n<tr>\n<td>Expiry Month</td>\n<td>05</td>\n</tr>\n<tr>\n<td>Expiry Year</td>\n<td>2025</td>\n</tr>\n<tr>\n<td>CVV</td>\n<td>123</td>\n</tr>\n<tr>\n<td>Card OTP</td>\n<td>123456</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"errorsstatus-codes\">Errors/Status Codes</h1>\n<h4>Error Codes</h4>\n\n<p>These error codes represent specific errors. This parameter only comes when there is a specific error and not in every case.</p>\n<table><tbody><tr><td><div><b>Error Code</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The amount is not in the minimum and maximum bounds for a deposit Transaction</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>03</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The amount is not in the minimum and maximum bounds for a withdrawal Transaction</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>07</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The risk threshold exceeded for this payment</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>08</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Previous DB changes are queued. Please wait and try again.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>API authentication is incorrect</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>10</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No payment method is configured for this account</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>11</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Reference ID already exists</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>13</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The entered PIN code is not correct</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>14</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid GST number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>15</div><div><div><div><div></div></div></div><div></div></div></td><td><div>GST service is unavailable right now</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>16</div><div><div><div><div></div></div></div><div></div></div></td><td><div>GST number is inactive</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>18</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The entered payment method is not active for this account</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>19</div><div><div><div><div></div></div></div><div></div></div></td><td><div>GST number does not exist. Please check the GST number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>20</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Expiry Time should be in the future and greater than the current timestamp.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>21</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The amount is less than the minimum allowed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>22</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The amount is greater than the maximum allowed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>23</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The item is not allowed to be sold in the jurisdiction</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>25</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The price is less than the minimum allowed item price.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>26</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The price is greater than the maximum allowed item price.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>27</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer suspended due to unusual activity</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>401</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Authentication failed</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>404</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The requested object cannot be found.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>406</div><div><div><div><div></div></div></div><div></div></div></td><td><div>You do not have permission for this operation. Repeatedly trying might lead to a temporary ban</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>407</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP not configured properly</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>411</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The partner has reached its daily payment volume quota for that specific payment method. Partners can use a different payment method if the error_code is 401 and still asks for payments from customers.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>412</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The partner has reached its daily payment volume quota for all the payment methods. Partners will not be able to use a different payment method for payments from customers. Partner will need to contact the Admin to increase the volume quota.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>422</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid request format (body or headers).</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>429</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Too many requests.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>430</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid Card details</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>431</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Card Data entered is invalid.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>432</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid UPI handle</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>433</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Email used in the request body is a disposable email and is not allowed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>500</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Internal Server Error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>503</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The request cannot be processed due to unknown reasons</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>504</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Error in PsP request</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>505</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP internal error</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Tx Status Code</h4>\n\n<p>These TX status codes represent specific acquirer messages. This parameter only comes when there is a specific error and not in every case.</p>\n<table><tbody><tr><td><div><b>Tx Status Code</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>100</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The transaction did not reach the bank in time and timed out.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>101</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction cancelled by User</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>102</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction cancelled due to insufficient balance</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>103</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction failed at acquirer due to an unknown reason</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>104</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction failed at user due to unknown reason</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>105</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction failed due to not making payment in due time</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>106</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction failed because of an invalid UPI/account number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>500</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction failed due bank server down</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Data Format Errors</h4>\n\n<p>These errors are specific messages when the data is not allowed by the validator.</p>\n<table><tbody><tr><td><div><b>Tx Status Code</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>multiComment</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed characters: alphabets, numerical, space, dot, slash, hyphen, parenthesis, URL links<br>Maximum Length: 256 characters</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>multiLineDescription</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed characters: alphabets, numerical, space, dot, slash, hyphen, parenthesis, at<br>Maximum Length: 256 characters</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>onlyAlphaNumeric</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed Characters: alphabets, numerical<br>Maximum Length: 256 characters</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>gstNumberFormat</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed Characters: alphabets, numerical;<br>It is a format of alphanumeric strings described by the govt of India.<br>Maximum Length: 15 characters</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed characters: alphabets, numerical, dot, hyphen, parenthesis, colon, underscore<br>Maximum Length: 256 characters</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DateObject</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Allowed format <code><b>yyyy-MM-dd HH:mm:ss</b></code><br>For Ex. 2023-10-19 18:30:00</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>PsP Errors</h4>\n\n<p>These errors are the reason for the failed attempts, it could be from the customer, the bank, or the PSP.</p>\n<table><tbody><tr><td><div><b>Tx Status Code</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_DROP_PAYMENT_REQUEST</div><div><div><div><div></div></div></div><div></div></div></td><td><div>User dropped off before making the payment</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>REQUEST_TIME_OUT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No action was taken on the collect payment request</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_DECLINED_PAYMENT_REQUEST</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Collect request declined by the requestee</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>ACCOUNT_INSUFFICIENT_FUNDS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Insufficient funds in customer (Remitter) Account - Z9</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>UPI_COLLECT_EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>UPI collect request expired - U69</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_NOT_PERMITTED_AC</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction not permitted for this a/c type (OD) - SA</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_FREQUENCY_LIMIT_EXCEEDED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction frequency limit exceeded as set by remitting member - Z7</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PG_API_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Psp Api Call Error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>INTERNAL_SERVER_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP internal server error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>WRONG_PIN_ATTEMP_EXCEEDED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer entered the wrong pin and the number of pin tries exceeded - Z6</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>INVALID_MPIN</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer entered an invalid MPIN - ZM</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_ACCOUNT_BLOCKED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer account is blocked or frozen - YE</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_ACOUNT_NOT_EXIST</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer account does not exist - XH</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_ACCOUNT_REGISTER_NUMBER_CHANGE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The registered mobile number linked to the account has been changed/removed - B1</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_DEBIT_LIMIT_EXCEEDED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The net Debit limit has been exceeded - U03</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_NOT_PERMITTED_AC_LEGAL</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction not permitted to the account (Ex: Minor account, Proprietor account, the legal case against this account, etc., NRE) - B3</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FAILED_REASON_NOT_DEFINED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Failed reason is not defined</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>REMITTER_BANK_DEEMED_HIGH</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Remitter bank deemed high response time check decline - U90</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>REMITTER_SUSPECTED_FRAUD_HIGH_RISK</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Suspected fraud, decline/transactions declined based on risk score by remitter - K1</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TXN_NOT_PERMITTED_CARD_REMITTER</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction not permitted to cardholder (Remitter) - XP</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>BANK_HAS_PSP_UNAVAILABLE_ISSUE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The bank is getting PSP unavailable issue.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_BANK_DEBIT_LIMIT_EXCEEDED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Limit exceeded for remitting bank/issuing bank</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_TXN_NOT_FOUND</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Txn is not found on the PSP side</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_BANK_BALANCE_BLOCKED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Adequate funds not available in the account because funds have been blocked</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_PSP_OFFLINE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>User PSP is offline</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_VPA_NOT_TRANSACTION</div><div><div><div><div></div></div></div><div></div></div></td><td><div>User VPA is not transacting</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_RISK_DETECTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP risk detected</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>USER_INVALID_VPA</div><div><div><div><div></div></div></div><div></div></div></td><td><div>VPA is invalid</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_BLOCKED_USER_DETECTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>User block by PSP</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_COMPLIANCE_ISSUE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP compliance issue detected</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_TIME_OUT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Remitter/Issuer timeout</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>UPI_EXPIRED_PAY_REQUEST</div><div><div><div><div></div></div></div><div></div></div></td><td><div>User request is expired</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DEVICE_FINGER_PRINT_ISSUE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Device finger print issue</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>MANDATE_AUTH_EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Mandate auth link expired - UM</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FREEZE_PERIOD_FOR_FIRST_TIME_USER</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Freeze period for first time user</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>RESPAUTHMANDATE_EXPIRED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Response auth mandate expired - UM3</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>NATURE_OF_DEBIT_NOT_ALLOWED_IN_ACCOUNT_TYPE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Nature of the debit not allowed in account type</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>ENCRYPTION_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Encryption error - U14</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>UTR_ALREADY_PRESENT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique transaction reference already present</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_ABORTED_BY_USER</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction aborted by the user</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>AUTHENTICATION_FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Authentication failed</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAYMENT_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Payment failed</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PG_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Payment gateway error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>DEBIT_HAS_BEEN_FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Debit has been failed</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PSP_NOT_SUPPORTED_BY_UPI</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PSP not supported by UPI</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_INVALID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid transaction</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>TRANSACTION_IN_PROGRESS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The transaction is in progress</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>BANK_TECHNICAL_FAILURE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Bank technical error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>PAYMENT_INSTRUMENT_INACTIVE</div><div><div><div><div></div></div></div><div></div></div></td><td><div>customer's payment instrument is inactive</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>GATEWAY_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>gateway infrastructure error detected</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>INVALID_AMOUNT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Transaction amount should be greater than OR equal to 1 rupee.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>INVALID_CARD_DETAILS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid card details</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authorization","slug":"authorization"},{"content":"Payment Methods","slug":"payment-methods"},{"content":"Payment Flow","slug":"payment-flow"},{"content":"Request/Response","slug":"requestresponse"},{"content":"Encryption","slug":"encryption"},{"content":"Definitions","slug":"definitions"},{"content":"Enums & Validators","slug":"enums-validators"},{"content":"UAT Testing","slug":"uat-testing"},{"content":"Errors/Status Codes","slug":"errorsstatus-codes"}],"owner":"2739249","collectionId":"3c0c1875-d61c-4102-b99b-be85896e3cc8","publishedId":"2s9Y5Zv2RP","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"212529","highlight":"007aff"},"publishDate":"2023-09-21T10:37:09.000Z"},"item":[{"name":"Sessions","item":[{"name":"Create Session","id":"d4607171-457b-4d24-8277-6d9a79a997dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"USD\",\n    \"items\": [\n        {\n            \"name\": \"Product Name 1 with very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 200,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"Producith very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 500,\n            \"quantity\": 1\n        }\n    ],\n    \"name\": \"Devesh\",\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\",\n        \"state\": \"Delhi\",\n        \"city\": \"CENTRAL DELHI\",\n        \"country\": \"INDIA\"\n    },\n    \"email\": \"customer@merchant.com\"\n}"},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession","description":"<p>This API is used to create a unique payment link with a specific amount, that can be shared with a customer. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same session.</p>\n<p>A session can accommodate multiple transactions. Each transaction is considered an attempt to make payments with valid credentials. A customer can try to make a payment using different payment methods in different payment attempts. Using the <a href=\"https://\"><b>Get Session API</b></a>, all the transactions created during a session can also be found and each transaction status can be found using <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clientReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's reference id that the partner can pass to map it to the customer on Transact Bridge panel. If <code><b>email</b></code> is not passed in the request body, the customer must enter the email on the product checkout page.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>theme</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>LIGHT</b></code>, <code><b>DARK</b></code>, <code><b>AUTO</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Checkout renders accordingly to choosen theme.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>taxIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>PAN number of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>gstIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is business type then GST can be used so that the business can get input credits.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is already created, use <code>customerId</code> and then <code>email</code> will be optional</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: <code><b>USD</b></code>, <code><b>EURO</b></code>, <code><b>INR</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Fiat currency for which request needs to be initiated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pendingUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CREATED</code> or <code>STARTED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>failedUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>EXPIRED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>successUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CLOSED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userTaxId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>TaxId created by the partner. This allows us to tax the product correctly. For example: Partners can have two different <code>userTaxId</code> one for 18% GST and the other for 5% GST.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shipTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Shipping Details of the Customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Billing Details of the customer for the invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sameAsBilling</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To make the shipping address the same as the billing address</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>redirectionType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>SAME_PAGE</b></code>, <code><b>NEW_PAGE</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Depending on the redirection type value, the user will either be redirected to a new page for payment or to the same window of the product page. Default value is <code><b>NEW_PAGE</b></code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>items</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Items the customer wants to buy.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>discount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This parameter can be used to reduce the total cart pay amount.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>expiryDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The UTC date at which the session link will expire. If this is not passed by the partner, then the link will expire after 24 hours. This is the expiry of the link if a customer attempts the payment at the last minute, then the link will not expire until all the payment attempts transactions are not in the terminal state.<br />Note: Minimum 10 minutes in the future will be accepted as a valid <code>expiryDate</code> from the time of session creation.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>invoice</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice configuration for the product sold in this billing session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceEnd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referrerUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add the checkout original URL from which customer got redirected to Transact Bridge checkout page</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>enableMandatoryPopup</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is set to be <code><b>true</b></code> then the customer on the checkout page will be first shown to add the remaining mandatory inputs like name, etc.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>isSingleAttempt</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is set to be <code><b>true</b></code> then the customer can only make a single attempt on the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>If <code>sameAsBilling</code> the parameter value is set as <code>true</code> then the invoice will have the same shipping and billing address.</p>\n</li>\n<li><p><code>pendingUrl</code> , <code>successUrl</code> , <code>failedUrl</code> are all mandatory if <code>returnUrl</code> is not passed.</p>\n</li>\n<li><p>One of <code>email</code> or <code>clientReferenceId</code> is a mandatory parameter.</p>\n</li>\n</ol>\n<blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code>  <br />Enum: <code>State</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>referenceId</code></td>\n<td>If the product is already created use the refereneId of that product.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MultiLineDescription</code></td>\n<td>Description of the product.</td>\n</tr>\n<tr>\n<td>hsnCode</td>\n<td>String <code>Optional</code></td>\n<td>If the product is physical then HSN code is mandatory</td>\n</tr>\n<tr>\n<td>shippable</td>\n<td>Boolean <code>Optional</code>  <br />Default: <code>false</code></td>\n<td>If the product is physical pass this param as <code>true</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong></p>\n<ol>\n<li><p>Description in the items object allows HTML syntax for customer view. Use so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n</li>\n<li><p>If <code>productReferenceId</code> is passed then name <code>hsnCode</code> and <code>shippable</code> is not mandatory.</p>\n</li>\n</ol>\n<blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>invoice</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>issueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Issue date of the invoice</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Due date of the invoice</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>discount</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>This will be shown on the checkout page as the description of the discount being applied.</td>\n</tr>\n<tr>\n<td>quoteAmountOff</td>\n<td>Number <code>Mandatory</code></td>\n<td>Discount value that is being applied on the cart value.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> <strong><code>returnUrl</code></strong> will be a <strong>GET</strong> redirection with status, billingSessionId, and referenceId values passed in the query params. Partner can then use <a href=\"https://docs.transactbridge.com/#49db9313-bb0c-4732-a59d-b9ce0fec6217\">Get Session API</a> to get the full details of that session.</p>\n","urlObject":{"path":["billingSession","v1.0","generateBillingSession"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5bbcef8d-00a7-48c6-bb3b-e42238d6d277","name":"Create Session (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"tb_test_Y0QLrZZUtc6FJRDjOTUY8pTUpOJcmASt","type":"text"},{"key":"x-signature","value":"•••••••","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"USD\",\n    \"items\": [\n        {\n            \"name\": \"Product Name 1 with very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 2,\n            \"quantity\": 1\n        }\n    ],\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\",\n        \"state\": \"Delhi\",\n        \"city\": \"CENTRAL DELHI\",\n        \"country\": \"INDIA\"\n    },\n    \"email\": \"customer@merchant.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:56:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"100-da4i8u1XcmQIPbJuHc2mFCjNCBo\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=05E2c2%2Bm6BBmn6ufQnH2cUjMkQbox%2BqSLd9qxLLmi9DgADCu6YOo3lT%2BUfnfRExk%2BKwmvzJAYUwH%2Fxj2MbLPMrsV3MMNb2hHwiX44fBzKAgo60TtC4muoZju2sdbBKqwBDHh42Gh2yOzvZkoXmeoZw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ebf0d58a566efb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Session is successfully created for billing details\",\n    \"data\": {\n        \"sessionId\": \"6517fee9bc2aaa70e5fcc5a2\",\n        \"redirectUrl\": \"https://sandbox.transactbridge.com/customer/product?billingSessionId=6517fee9bc2aaa70e5fcc5a2\"\n    }\n}"},{"id":"0bb14ef2-8f35-44fa-bc2d-58da15d207f8","name":"Create Session (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"USD\",\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\",\n        \"state\": \"Delhi\",\n        \"city\": \"CENTRAL DELHI\",\n        \"country\": \"INDIA\"\n    },\n    \"items\": [\n        {\n            \"name\": \"Product Name 1 with very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 2,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"Product Name 2\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 10,\n            \"quantity\": 1\n        }\n    ],\n    \"name\": \"XYZ\",\n    \"email\": \"customer@merchant.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:00:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"95-1fF/WndZgbJ4/DNvOH9urUWsL+w\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5Mo5ceUTamVaX5HfHj6cAnRLgpFklLgrELVzKIAykR8zwLddaI%2FDfuZO3%2F%2FS8uzTtEVluZBlCRrBe9e1JG8WHkR2ELQ%2FRSHnJTOfjso7qcmXTNnGHX%2BURZnsCqCHVWclmC5oFUyC67evHAHRvXtIkA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80eb9e7b7db33212-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"QuoteCurrCode is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.quoteCurrCode is required\"\n    ]\n}"},{"id":"e9d21a1d-9383-4358-865f-0cbaeb910469","name":"Create Session (Aggregator)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","description":"Optional (Only to be used by Aggregators)","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"Optional (Only if Extended Signature Verification is enabled)","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"USD\",\n    \"items\": [\n        {\n            \"name\": \"Product Name 1 with very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 200,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"Producith very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 500,\n            \"quantity\": 1\n        }\n    ],\n    \"name\": \"Devesh\",\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\",\n        \"state\": \"Delhi\",\n        \"city\": \"CENTRAL DELHI\",\n        \"country\": \"INDIA\"\n    },\n    \"email\": \"customer@merchant.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Jan 2026 12:25:44 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"2000"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"7d0-MhPFFYC2fXNXJs2l0kOsCFe60PU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Session is successfully created for billing details\",\n    \"data\": {\n        \"paymentDetails\": {\n            \"supplierPayMethods\": []\n        },\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"purchaseLocation\": {},\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"phoneNo\": \"+91-8923040473\",\n            \"items\": [\n                {\n                    \"meta\": {},\n                    \"attributes\": {\n                        \"server\": {}\n                    },\n                    \"shippable\": false,\n                    \"name\": \"Product Name 1 with very long name\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 200,\n                    \"images\": [],\n                    \"taxes\": [],\n                    \"id\": null\n                },\n                {\n                    \"meta\": {},\n                    \"attributes\": {\n                        \"server\": {}\n                    },\n                    \"shippable\": false,\n                    \"name\": \"Producith very long name\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 500,\n                    \"images\": [],\n                    \"taxes\": [],\n                    \"id\": null\n                }\n            ]\n        },\n        \"meta\": {\n            \"param1\": \"\",\n            \"param2\": \"\",\n            \"param3\": \"\"\n        },\n        \"discount\": {},\n        \"_id\": \"697368c875c31de3ca4b4e91\",\n        \"orgName\": \"ZETA\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"partnerId\": null,\n        \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"CREATED\",\n        \"amount\": \"54807.62\",\n        \"totalAmount\": \"64673\",\n        \"quoteAmount\": \"593.22\",\n        \"quoteAmt\": \"700\",\n        \"quoteCurrCode\": \"USD\",\n        \"fxQuote\": \"92.39\",\n        \"returnUrl\": \"https://www.transactbridge.com/demo\",\n        \"txIds\": [],\n        \"gstInclusive\": true,\n        \"createdDate\": \"2026-01-23T12:25:44.025Z\",\n        \"billingSessionId\": \"697368c875c31de3ca4b4e91\",\n        \"id\": \"697368c875c31de3ca4b4e91\",\n        \"singlePageFlow\": true,\n        \"sessionId\": \"697368c875c31de3ca4b4e91\",\n        \"redirectUrl\": \"https://sandboxpay.transactbridge.com/customer/singlePage/product?billingSessionId=697368c875c31de3ca4b4e91\",\n        \"payUrl\": \"https://sandboxpay.transactbridge.com/customer/singlePage/product?billingSessionId=697368c875c31de3ca4b4e91\"\n    }\n}"}],"_postman_id":"d4607171-457b-4d24-8277-6d9a79a997dd"},{"name":"Get Session","id":"49db9313-bb0c-4732-a59d-b9ce0fec6217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"64a025a8e7825a91b1c2b2a9\"\n}"},"url":"{{base_url}}/billingSession/v1.0/getBillingSession","description":"<p>This API is used to get the created session and fetch the status.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String <code>Mandatory</code></td>\n<td>Created session Id</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Mandatory</code></td>\n<td>Reference ID that was passed by the partner during the generation of the session.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: Only one of the parameters needs to be passed. Both of them are not mandatory.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Full session object with all the information.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["billingSession","v1.0","getBillingSession"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e6f1001e-e9a6-4263-b574-6fcfd2b9d98b","name":"Get Session (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"tb_test_Y0QLrZZUtc6FJRDjOTUY8pTUpOJcmASt","type":"text"},{"key":"x-signature","value":"•••••••","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"6517fee9bc2aaa70e5fcc5a2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/getBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:57:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"4a4-VPE2EHz9nS4+qNjx9CEKB0kHYZ8\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=c2Fv%2BmgKm7%2FzA7I7%2FBiUogpVpTEvCBWEM4Qle%2FhpSbI9NeZ8aZJ%2FmLclQmPIS6bhYGoyihyIXf8eEL0U9mK29%2FFOalMnjvrDkjN6BMZGMWurCHxRyT36ltsJ8Dtx1VsUZieH%2FfPWpptOdUIyK1AckQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ebf2523e476efb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"Product Name 1 with very long name\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 2\n                },\n                {\n                    \"name\": \"Product Name 2\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 10\n                }\n            ]\n        },\n        \"_id\": \"6517fee9bc2aaa70e5fcc5a2\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"partnerId\": null,\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"CREATED\",\n        \"amount\": \"998.04\",\n        \"totalAmount\": \"1177.68\",\n        \"quoteAmount\": \"12\",\n        \"quoteAmt\": \"12\",\n        \"quoteCurrCode\": \"USD\",\n        \"fxQuote\": \"83.17\",\n        \"returnUrl\": \"https://www.transactbridge.com/demo\",\n        \"txIds\": [],\n        \"gstInclusive\": false,\n        \"createdDate\": \"2023-09-30T10:56:41.933Z\",\n        \"billingSessionId\": \"6517fee9bc2aaa70e5fcc5a2\",\n        \"id\": \"6517fee9bc2aaa70e5fcc5a2\"\n    }\n}"},{"id":"040c4e9b-c868-43e7-9026-d799980f570c","name":"Get Session (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"6517fee9bc2aaa70e5fcc5a3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/getBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:58:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"4a-6tDuKsL+426DJFa5bkBh8U04+gI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Cz3R4dW87T3VY85y8Fvi2VJD%2BgHirlyHHv1jBdoFQyn8Lp6iyOFLuRxHCJdc1DaeRxxINzLa15o6UTknPk8G6xRIZV9DgX9aLVYBIiC83QI3tZ0ndBOyhR99iq4lmUeIGiAMbx96GcjT2do4o8ZqFA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ebf2dffcb96efb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Billing session is not found.\"\n}"},{"id":"52a81247-1762-4719-8190-43587103c8ec","name":"Get Session with CLOSED Status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"65b9e055f3ee11bb2bed29ff\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/getBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 31 Jan 2024 08:25:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"bed-K/2fLKc5BcF6L7IBzlBTzjIpaBE\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7k1blGWyvV6KtBBPKAsoS%2Bnvr0Xplp1CT%2F%2FcSibFE4Sgrd69eoILqtxrO66XPHi963VMEs6d9kA%2BuIKMlufv32IwT2DqP4rJ8TrmEc3J2MktAR7t443K2oqTxOv1tvcHhbgJv6wS6fYYiIa31qXKsj0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"84e0900aaa7503f5-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"paymentDetails\": {\n            \"supplierPayMethods\": [],\n            \"payMethod\": \"UPI\"\n        },\n        \"billDetails\": {\n            \"shipTo\": {\n                \"country\": \"INDIA\"\n            },\n            \"billTo\": {\n                \"name\": \"Devesh Aggrawal\",\n                \"city\": \"SAHARANPUR\",\n                \"postalCode\": \"247001\",\n                \"state\": \"Uttar Pradesh\",\n                \"country\": \"INDIA\"\n            },\n            \"email\": \"devagg19@gmail.com\",\n            \"items\": [\n                {\n                    \"name\": \"ThreatCop\",\n                    \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails <br/>Helping your organizations security team in taking the necessary actions against email-based threats\",\n                    \"quantity\": 1,\n                    \"amount\": 199\n                }\n            ],\n            \"browserIp\": \"122.161.52.78\",\n            \"browserReferer\": \"https://www.transactbridge.com/\",\n            \"name\": \"Devesh Aggrawal\"\n        },\n        \"_id\": \"65b9e055f3ee11bb2bed29ff\",\n        \"orgName\": \"ZETA\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"partnerId\": null,\n        \"customerId\": \"6540bdbe2ddaef33e4619973\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"CLOSED\",\n        \"amount\": \"16534.91\",\n        \"totalAmount\": \"19511.19\",\n        \"quoteAmount\": \"199\",\n        \"quoteAmt\": \"199\",\n        \"quoteCurrCode\": \"USD\",\n        \"fxQuote\": \"83.09\",\n        \"referenceId\": \"1706680405\",\n        \"returnUrl\": \"https://www.transactbridge.com/demo\",\n        \"txIds\": [\n            {\n                \"billDetails\": {\n                    \"shipTo\": {\n                        \"country\": \"INDIA\"\n                    },\n                    \"billTo\": {\n                        \"name\": \"Devesh Aggrawal\",\n                        \"city\": \"SAHARANPUR\",\n                        \"postalCode\": \"247001\",\n                        \"state\": \"Uttar Pradesh\",\n                        \"country\": \"INDIA\"\n                    },\n                    \"email\": \"devagg19@gmail.com\",\n                    \"name\": \"Devesh Aggrawal\",\n                    \"items\": [\n                        {\n                            \"name\": \"ThreatCop\",\n                            \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails <br/>Helping your organizations security team in taking the necessary actions against email-based threats\",\n                            \"quantity\": 1,\n                            \"amount\": 199\n                        }\n                    ]\n                },\n                \"paymentDetails\": {\n                    \"payMethod\": \"UPI\",\n                    \"upiId\": \"tbridgetesting@upi\",\n                    \"benName\": \"ABC\",\n                    \"pgCode\": \"PHPYT\",\n                    \"pgProvider\": \"PHPY\",\n                    \"sourceDevice\": \"WEB\",\n                    \"sourceOS\": \"MAC\",\n                    \"sourcePlatform\": \"CHROME\",\n                    \"upiChannel\": \"COLLECT\",\n                    \"paymentId\": \"T2401311241185308491157\",\n                    \"source\": \"CRAWLER\"\n                },\n                \"_id\": \"65b9f296fc4bf7065b7b68ee\",\n                \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n                \"customerId\": \"6540bdbe2ddaef33e4619973\",\n                \"currId\": \"65141792ffb2d664bd9e4dfc\",\n                \"code\": \"INR\",\n                \"status\": \"SUCCESS\",\n                \"type\": \"DEPOSIT\",\n                \"txSubStatus\": \"CAPTURED\",\n                \"quoteAmount\": \"199\",\n                \"settleQuoteAmount\": \"194.18\",\n                \"quoteAmt\": \"199\",\n                \"quoteCurrCode\": \"USD\",\n                \"isSettled\": false,\n                \"referenceId\": \"65b9e055f3ee11bb2bed29ff_0\",\n                \"internalTxIds\": [],\n                \"returnUrl\": \"https://www.transactbridge.com/demo\",\n                \"remark\": null,\n                \"gstInclusive\": false,\n                \"comment\": [],\n                \"createdDate\": \"2024-01-31T07:11:18.323Z\",\n                \"referenceNo\": \"1706685144124\",\n                \"successDate\": \"2024-01-31T07:12:24.172Z\",\n                \"txId\": \"65b9f296fc4bf7065b7b68ee\",\n                \"id\": \"65b9f296fc4bf7065b7b68ee\"\n            }\n        ],\n        \"gstInclusive\": false,\n        \"createdDate\": \"2024-01-31T05:53:25.912Z\",\n        \"successTxnId\": \"65b9f296fc4bf7065b7b68ee\",\n        \"billingSessionId\": \"65b9e055f3ee11bb2bed29ff\",\n        \"id\": \"65b9e055f3ee11bb2bed29ff\",\n        \"singlePageFlow\": true,\n        \"payUrl\": \"https://sandbox.transactbridge.com/customer/singlePage/product?billingSessionId=65b9e055f3ee11bb2bed29ff\"\n    }\n}"}],"_postman_id":"49db9313-bb0c-4732-a59d-b9ce0fec6217"},{"name":"Get All Sessions","id":"d5589a8a-a45f-49ac-bff7-1478f6224878","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/billingSession/v1.0/getAllBillingSession","description":"<p>This API can be used to get all the sessions created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer ID can be passed to get the sessions of a particular customer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billingSessionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Session ID can also be passed here to filter the sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the sessions. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>String <code>Optional</code></td>\n<td>To filter according to the customer's email</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enums: billingSessionStatus</td>\n<td>To filter according to the status of the session</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the sessions</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["billingSession","v1.0","getAllBillingSession"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"8acf17a1-ba39-46a2-9258-0a8269c41b4a","name":"Get All Sessions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/getAllBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:57:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"4a0-6vajEGIY4cPjJvMnS/NmBUcLoVI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Rxo%2FQMT48eoldekqT3idaJguM%2B77kjBdYFUHj7ekXXz61mEcz1j3higE7CycDc2ACNBeTaCxoJbUMGZrmhFZtTWfZQfxhCk%2FgFjUoBL4%2FW5aykgYGeaddMLtIY0VhGmqnp1lJMURmFzBAoRDxosSvQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ebf183a9ba6efb-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"6517fee9bc2aaa70e5fcc5a2\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CREATED\",\n            \"quoteCurrCode\": \"USD\",\n            \"billDetails\": {\n                \"email\": \"customer@merchant.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"ABCS\",\n                    \"postalCode\": \"110001\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2\n                    },\n                    {\n                        \"name\": \"Product Name 2\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 10\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2023-09-30T10:56:41.933Z\",\n            \"amount\": \"1177.68\",\n            \"totalAmount\": \"1177.68\",\n            \"quoteAmt\": \"12\",\n            \"quoteAmount\": \"12\",\n            \"payUrl\": \"https://sandbox.transactbridge.com/customer/product?billingSessionId=6517fee9bc2aaa70e5fcc5a2\"\n        }\n    ],\n    \"hasMore\": false,\n    \"maxPageSize\": 200\n}"},{"id":"e071433c-bd1e-4b03-a6f5-59e53ed3300b","name":"Get All Sessions with filters","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filter\":{\n        \"fromDate\": \"2025-10-07T14:40:36.787Z\",\n        \"toDate\": \"2025-10-08T14:40:36.787Z\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/getAllBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Oct 2025 04:06:45 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"1988"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"7c4-EV6Nf7A29H46gO1iEJUBYnh5DWw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"68e673f9abc8939ad445b53c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759933432\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.122\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-08T14:23:53.135Z\",\n            \"amount\": \"17760.75\",\n            \"totalAmount\": \"20957.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e6607b0dc3230eea97a72f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759928443\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.122\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-08T13:00:43.917Z\",\n            \"amount\": \"17760.75\",\n            \"totalAmount\": \"20957.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        }\n    ],\n    \"hasMore\": false,\n    \"maxPageSize\": 200\n}"},{"id":"69c16d88-65bb-4f45-a336-098348499721","name":"Get All Sessions (Aggregators)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","description":"Optional (Only to be used by Aggregators)","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"Optional (Only if Extended Signature Verification is enabled)","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/billingSession/v1.0/getAllBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 23 Jan 2026 12:24:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"216597"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"34e15-LbC9GdH0hxT7sCMAGx3vl4GAi2U\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"6968b5df24f00c0d6d255b4d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768469982\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"democustomer@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302001\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.38.248.241\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-15T09:39:43.010Z\",\n            \"amount\": \"15323\",\n            \"totalAmount\": \"18081.14\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6966c24224f00c0d6d2532b8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768342082\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"aws.ayyash.1@gmail.com\",\n                \"name\": \"Aws Ayyash\",\n                \"phoneNo\": \"+91-89798789798\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.229.247.194\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-13T22:08:03.013Z\",\n            \"amount\": \"11462.89\",\n            \"totalAmount\": \"13526.22\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6966c1f5961447f861eb2d71\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768342005\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"aws.ayyash.1@gmail.com\",\n                \"name\": \"Aws Ayyash\",\n                \"phoneNo\": \"+91-89798789798\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.229.247.194\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-13T22:06:45.957Z\",\n            \"amount\": \"15309.5\",\n            \"totalAmount\": \"18065.22\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6966c1e2961447f861eb2c9d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768341985\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"aws.ayyash.1@gmail.com\",\n                \"name\": \"Aws Ayyash\",\n                \"phoneNo\": \"+91-89798789798\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.229.247.194\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-13T22:06:26.115Z\",\n            \"amount\": \"15308.59\",\n            \"totalAmount\": \"18065.22\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69668c69961447f861eb2b0f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768328297\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"tewt@test.com\",\n                \"name\": \"test\",\n                \"phoneNo\": \"+91-9562221121\",\n                \"shipTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"test\",\n                    \"city\": \"test\",\n                    \"state\": \"Haryana\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\",\n                    \"postalCode\": \"201301\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"173.64.127.17\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-13T18:18:17.735Z\",\n            \"amount\": \"15309.5\",\n            \"totalAmount\": \"18065.22\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69666b82961447f861eb295a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6641dac3a7bf1ac438e3bed4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"REJECTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768319873\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@test.com\",\n                \"name\": \"test\",\n                \"phoneNo\": \"+91-9999999999\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"173.64.127.17\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-13T15:57:54.236Z\",\n            \"amount\": \"15304.44\",\n            \"totalAmount\": \"18059.25\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6961ef6824f00c0d6d251236\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768025959\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"admin@dgbooky.tech\",\n                \"name\": \"DgBooky\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"DgBooky\",\n                    \"city\": \"KHORDA\",\n                    \"postalCode\": \"751030\",\n                    \"state\": \"Odisha\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"hsnCode\": \"998439\",\n                        \"shippable\": true,\n                        \"name\": \"Canon Digital Camera\",\n                        \"description\": \"Model Name EOS R50 RFS18<br>Full frame CMOS AF II Sensor with 24 MP (brilliant resolution for large prints and image cropping)<br>DIGIC X with 651 autofocus points (important for speed and accuracy of autofocus and burst photography)<br> 4k UHD HQ upto 30fps with fully manual control and selectable frame rates (great for precision and quality video work)\",\n                        \"quantity\": 1,\n                        \"amount\": 50,\n                        \"images\": [],\n                        \"taxes\": [\n                            {\n                                \"taxName\": \"IGST\",\n                                \"taxAmt\": {\n                                    \"$numberDecimal\": \"692.24\"\n                                },\n                                \"taxPcnt\": 18\n                            }\n                        ],\n                        \"totalTax\": {\n                            \"$numberDecimal\": \"692.24\"\n                        },\n                        \"totalTaxQuote\": {\n                            \"$numberDecimal\": \"7.63\"\n                        }\n                    }\n                ],\n                \"browserIp\": \"49.37.116.0\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"6961ef7e24f00c0d6d251359\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-10T06:19:20.031Z\",\n            \"customerId\": \"6961ef7e24f00c0d6d2512f2\",\n            \"amount\": \"3845.76\",\n            \"totalAmount\": \"4538\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"42.37\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6961ef23961447f861eb066d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768025891\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"admin@dgbooky.tech\",\n                \"name\": \"DgBooky\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"KHORDA\",\n                    \"postalCode\": \"751030\",\n                    \"state\": \"Odisha\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/>Sending malicious emails from inbox to spam when reported by the user <br/>Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"49.37.116.0\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-10T06:18:11.620Z\",\n            \"amount\": \"15306.13\",\n            \"totalAmount\": \"18061.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6961ef1b961447f861eb05f0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1768025882\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"admin@dgbooky.tech\",\n                \"name\": \"DgBooky\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"KHORDA\",\n                    \"postalCode\": \"751030\",\n                    \"state\": \"Odisha\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"49.37.116.0\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-10T06:18:03.806Z\",\n            \"amount\": \"15306.13\",\n            \"totalAmount\": \"18061.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"695e599c1963f8467eeca515\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6793bee9ec8c9eaa8acca433\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1767791004\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@gmail.com\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-8076430489\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"WEST DELHI\",\n                    \"postalCode\": \"110043\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"WEST DELHI\",\n                    \"postalCode\": \"110043\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.166.106\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-07T13:03:24.636Z\",\n            \"amount\": \"15285.89\",\n            \"totalAmount\": \"18037.36\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"695e07c83aee6dbfe3cd19c5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"692da01b897d886c4aafb27e\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1767770056\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"m.ashutosh.1642@gmail.com\",\n                \"phoneNo\": \"+91-9997673355\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.166.106\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2026-01-07T07:14:16.937Z\",\n            \"amount\": \"15292.64\",\n            \"totalAmount\": \"18045.32\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694c54c77d40223aabe49e41\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"694c548e7d40223aabe49cc4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766610119\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"16beryle@airsworld.net\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-7526836303\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"185.220.101.13\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"694c54d07d40223aabe49f04\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-24T21:01:59.810Z\",\n            \"successTxnId\": \"694c54d07d40223aabe49f04\",\n            \"amount\": \"17971.69\",\n            \"totalAmount\": \"17971.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694c54427d40223aabe49bbd\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766609986\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"16beryle@airsworld.net\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-12312312314\",\n                \"shipTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-24T20:59:46.941Z\",\n            \"amount\": \"17971.69\",\n            \"totalAmount\": \"17971.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694c54417d40223aabe49b41\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766609985\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"16beryle@airsworld.net\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-12312312314\",\n                \"shipTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\",\n                    \"postalCode\": \"201301\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"185.220.101.13\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-24T20:59:45.952Z\",\n            \"amount\": \"17971.69\",\n            \"totalAmount\": \"17971.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694c52e77d40223aabe49902\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766609638\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"16beryle@airsworld.net\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-7526836303\",\n                \"shipTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"185.220.101.13\",\n                \"browserReferer\": \"https://www.transactbridge.com/\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"694c548e7d40223aabe49d11\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-24T20:53:59.399Z\",\n            \"customerId\": \"694c548e7d40223aabe49cc4\",\n            \"successTxnId\": \"694c548e7d40223aabe49d11\",\n            \"amount\": \"15230.24\",\n            \"totalAmount\": \"17971.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694c52c334a804a6da61ccec\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766609602\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"16beryle@airsworld.net\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-12312312314\",\n                \"shipTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test\",\n                    \"line1\": \"Test\",\n                    \"line2\": \"Test\",\n                    \"city\": \"Test\",\n                    \"state\": \"Jharkhand\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-24T20:53:23.317Z\",\n            \"amount\": \"15230.24\",\n            \"totalAmount\": \"17971.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694a7a6d4321e16d30c0b9f8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766488684\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rinkesh@transactbridge.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.189\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-23T11:18:05.207Z\",\n            \"amount\": \"15226.87\",\n            \"totalAmount\": \"17967.71\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948f5ec6c9ab5b0bf3874ce\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766389228\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.77.148\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T07:40:28.517Z\",\n            \"amount\": \"15203.26\",\n            \"totalAmount\": \"17939.85\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948f5de6c9ab5b0bf387453\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766389214\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.77.148\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T07:40:14.434Z\",\n            \"amount\": \"15203.26\",\n            \"totalAmount\": \"17939.85\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948f5573a4f390ca512fcb7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766389078\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.77.148\",\n                \"browserReferer\": \"https://sandboxpay.transactbridge.com/customer/singlePage/product?billingSessionId=6948f5573a4f390ca512fcb7&theme=AUTO\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T07:37:59.804Z\",\n            \"amount\": \"15203.26\",\n            \"totalAmount\": \"17939.85\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948ddaad100e80edd683bec\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766383017\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.77.148\",\n                \"browserReferer\": \"https://www.transactbridge.com\",\n                \"phoneNo\": \"+91-8923423423\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T05:56:58.013Z\",\n            \"amount\": \"15189.77\",\n            \"totalAmount\": \"17923.93\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948db18d13292a56da7d196\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766382360\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"demosend@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"UDAIPUR\",\n                    \"postalCode\": \"313001\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.222.77\",\n                \"browserReferer\": \"https://www.transactbridge.com\",\n                \"phoneNo\": \"+91-8888474747\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"6948db30d100e80edd683a61\",\n                \"6948db41d13292a56da7d22b\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T05:46:00.437Z\",\n            \"customerId\": \"6948db30d100e80edd683a16\",\n            \"successTxnId\": \"6948db30d100e80edd683a61\",\n            \"amount\": \"15189.77\",\n            \"totalAmount\": \"17923.93\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948dab2d13292a56da7cfb4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766382258\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileotptest@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"UDAIPUR\",\n                    \"postalCode\": \"313001\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.222.77\",\n                \"browserReferer\": \"https://www.transactbridge.com\",\n                \"phoneNo\": \"+91-9999998776\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"6948dacfd13292a56da7d0c4\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T05:44:18.993Z\",\n            \"customerId\": \"6948dacfd13292a56da7d079\",\n            \"successTxnId\": \"6948dacfd13292a56da7d0c4\",\n            \"amount\": \"15189.77\",\n            \"totalAmount\": \"17923.93\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6948d960d100e80edd683803\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766381920\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"devaggere@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.77.148\",\n                \"browserReferer\": \"https://www.transactbridge.com\",\n                \"phoneNo\": \"+91-8923040483\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"6948d985d100e80edd6838d4\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-22T05:38:41.002Z\",\n            \"customerId\": \"6948d985d100e80edd683889\",\n            \"successTxnId\": \"6948d985d100e80edd6838d4\",\n            \"amount\": \"15189.77\",\n            \"totalAmount\": \"17923.93\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6946763b00224c0b4390259d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6793bee9ec8c9eaa8acca433\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1766225467\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@gmail.com\",\n                \"name\": \"Test\",\n                \"phoneNo\": \"+91-8076430489\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"WEST DELHI\",\n                    \"postalCode\": \"110043\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"WEST DELHI\",\n                    \"postalCode\": \"110043\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"103.157.53.195\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-20T10:11:07.701Z\",\n            \"amount\": \"11379.55\",\n            \"totalAmount\": \"13427.88\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694235654c6f2c15bc644add\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765946725\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"69423570ca6d9c6a6fa10932\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:45:25.880Z\",\n            \"successTxnId\": \"69423570ca6d9c6a6fa10932\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694235544c6f2c15bc6449f5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765946707\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [\n                \"6942355bca6d9c6a6fa107d0\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:45:08.031Z\",\n            \"successTxnId\": \"6942355bca6d9c6a6fa107d0\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694235424c6f2c15bc644837\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765946690\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"694235484c6f2c15bc644921\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:44:50.704Z\",\n            \"successTxnId\": \"694235484c6f2c15bc644921\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694235344c6f2c15bc6445f1\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765946676\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"6942353a4c6f2c15bc6446db\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:44:36.634Z\",\n            \"successTxnId\": \"6942353a4c6f2c15bc6446db\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"694231804c6f2c15bc64425d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765945727\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"6942318b4c6f2c15bc64436d\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:28:48.301Z\",\n            \"successTxnId\": \"6942318b4c6f2c15bc64436d\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6942315bca6d9c6a6fa104bc\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765945690\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"69423164ca6d9c6a6fa105a6\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:28:11.009Z\",\n            \"successTxnId\": \"69423164ca6d9c6a6fa105a6\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6942310eca6d9c6a6fa102a9\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765945613\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.111.164\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"69423126ca6d9c6a6fa10393\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-17T04:26:54.196Z\",\n            \"successTxnId\": \"69423126ca6d9c6a6fa10393\",\n            \"amount\": \"15427.55\",\n            \"totalAmount\": \"18204.52\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6940ee4dca6d9c6a6fa0f21a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765862989\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.69.123\",\n                \"browserReferer\": \"https://www.transactbridge.com/\",\n                \"phoneNo\": \"+91-8888888888\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"6940ee68ca6d9c6a6fa0f30a\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-16T05:29:49.399Z\",\n            \"customerId\": \"6940ee67ca6d9c6a6fa0f2bd\",\n            \"successTxnId\": \"6940ee68ca6d9c6a6fa0f30a\",\n            \"amount\": \"15403.94\",\n            \"totalAmount\": \"18176.66\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69400908ca6d9c6a6fa0f127\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765804296\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew100@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\",\n                \"phoneNo\": \"+91-8888888888\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T13:11:36.233Z\",\n            \"amount\": \"15378.65\",\n            \"totalAmount\": \"18146.81\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6940079dca6d9c6a6fa0f08b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765803933\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.196\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T13:05:33.448Z\",\n            \"amount\": \"15378.65\",\n            \"totalAmount\": \"18146.81\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fc92b4c6f2c15bc642e43\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"693fc8744c6f2c15bc642bda\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765787947\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew11@gmail.com\",\n                \"phoneNo\": \"+91-7777777777\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"693fc940ca6d9c6a6fa0edfd\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T08:39:07.315Z\",\n            \"successTxnId\": \"693fc940ca6d9c6a6fa0edfd\",\n            \"amount\": \"15375.27\",\n            \"totalAmount\": \"18142.83\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fc8f4ca6d9c6a6fa0ebb0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"693fc8744c6f2c15bc642bda\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765787892\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew11@gmail.com\",\n                \"phoneNo\": \"+91-7777777777\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"693fc8fcca6d9c6a6fa0ec9a\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T08:38:12.921Z\",\n            \"successTxnId\": \"693fc8fcca6d9c6a6fa0ec9a\",\n            \"amount\": \"15375.27\",\n            \"totalAmount\": \"18142.83\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fc8894c6f2c15bc642d56\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"693fc8744c6f2c15bc642bda\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765787784\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew11@gmail.com\",\n                \"phoneNo\": \"+91-7777777777\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\"\n            },\n            \"txIds\": [\n                \"693fc893ca6d9c6a6fa0ea58\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T08:36:25.127Z\",\n            \"successTxnId\": \"693fc893ca6d9c6a6fa0ea58\",\n            \"amount\": \"15375.27\",\n            \"totalAmount\": \"18142.83\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fc8504c6f2c15bc642af8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765787728\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew11@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\",\n                \"phoneNo\": \"+91-7777777777\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"693fc8744c6f2c15bc642c27\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T08:35:28.747Z\",\n            \"customerId\": \"693fc8744c6f2c15bc642bda\",\n            \"successTxnId\": \"693fc8744c6f2c15bc642c27\",\n            \"amount\": \"15375.27\",\n            \"totalAmount\": \"18142.83\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fc7f8ca6d9c6a6fa0e60a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765787639\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": [],\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.89.182\",\n                \"browserReferer\": \"https://www.transactbridge.com/\",\n                \"phoneNo\": \"+91-7865435677\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"693fc80dca6d9c6a6fa0e6db\",\n                \"693fc820ca6d9c6a6fa0e7ac\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T08:34:00.531Z\",\n            \"customerId\": \"693fc80cca6d9c6a6fa0e690\",\n            \"successTxnId\": \"693fc820ca6d9c6a6fa0e7ac\",\n            \"amount\": \"15375.27\",\n            \"totalAmount\": \"18142.83\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693fa4bb4c6f2c15bc642883\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765778619\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.234.97\",\n                \"browserReferer\": \"https://www.transactbridge.com\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-15T06:03:39.523Z\",\n            \"amount\": \"15371.9\",\n            \"totalAmount\": \"18138.85\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693bd560061c513907f9be94\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765528927\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"shivam@transactbridge.com\",\n                \"name\": \"Shivam\",\n                \"phoneNo\": \"+91-8979293529\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GHAZIABAD\",\n                    \"postalCode\": \"201206\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"103.72.6.69\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-12T08:42:08.129Z\",\n            \"amount\": \"15338.17\",\n            \"totalAmount\": \"18099.05\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693bd06512f815b5d50106f4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765527653\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"UDAIPUR\",\n                    \"postalCode\": \"313324\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.208.202\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-12T08:20:53.434Z\",\n            \"amount\": \"15338.17\",\n            \"totalAmount\": \"18099.05\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693ba1bc061c513907f9b3be\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765515707\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"arushi@gmail.com\",\n                \"name\": \"Arushi\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GURGAON\",\n                    \"postalCode\": \"122001\",\n                    \"state\": \"Haryana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.77.75.110\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-12T05:01:48.222Z\",\n            \"amount\": \"15338.17\",\n            \"totalAmount\": \"18099.05\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693aa92012f815b5d500ebaa\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765452064\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"gauravwaghmare193@gmail.com\",\n                \"name\": \"Gaurav Waghmare\",\n                \"phoneNo\": \"+91-9004852638\",\n                \"shipTo\": {\n                    \"name\": \"Gaurav Waghmare\",\n                    \"city\": \"THANE\",\n                    \"postalCode\": \"421201\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Gaurav Waghmare\",\n                    \"city\": \"THANE\",\n                    \"postalCode\": \"421201\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.57.250.77\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-11T11:21:04.743Z\",\n            \"amount\": \"15321.31\",\n            \"totalAmount\": \"18079.15\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693aa6ce12f815b5d500e572\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"redirectiontest2@gmail.com\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Bamboo\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 2,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.30\"\n            },\n            \"txIds\": [\n                \"693aa6de12f815b5d500e656\",\n                \"693aa77012f815b5d500e7f9\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-11T11:11:10.529Z\",\n            \"customerId\": \"693aa6de12f815b5d500e60b\",\n            \"amount\": \"307.96\",\n            \"totalAmount\": \"363.4\",\n            \"quoteAmt\": \"4\",\n            \"quoteAmount\": \"3.38\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693aa65312f815b5d500e4c9\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"redirectiontest@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Bamboo\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 2,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\"\n                },\n                \"browserIp\": \"106.219.165.30\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-11T11:09:07.216Z\",\n            \"amount\": \"307.96\",\n            \"totalAmount\": \"363.4\",\n            \"quoteAmt\": \"4\",\n            \"quoteAmount\": \"3.38\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693a7d3e982b99e7570aed7d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"CC\"\n            },\n            \"billDetails\": {\n                \"email\": \"newcctest@gmail.com\",\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"test-1\",\n                        \"description\": \"test-1\",\n                        \"quantity\": 1,\n                        \"amount\": 12,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.30\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110060\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"693a7d64982b99e7570aeed0\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-11T08:13:50.599Z\",\n            \"customerId\": \"693a7d63982b99e7570aee85\",\n            \"successTxnId\": \"693a7d64982b99e7570aeed0\",\n            \"amount\": \"923.08\",\n            \"totalAmount\": \"1089.24\",\n            \"quoteAmt\": \"12\",\n            \"quoteAmount\": \"10.16\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6938ea8aa8686de5b7987223\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765337738\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.167.187\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-10T03:35:38.563Z\",\n            \"amount\": \"15286.6\",\n            \"totalAmount\": \"18031.39\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6938e9e5ccb7e2cf52ce2412\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765337573\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mobileviewnew@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.101.153\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-10T03:32:53.801Z\",\n            \"amount\": \"15280.83\",\n            \"totalAmount\": \"18031.39\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69387c99a8686de5b7986eda\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765309593\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"priya@transactbridge.com\",\n                \"name\": \"Priya\",\n                \"phoneNo\": \"+91-8755564021\",\n                \"shipTo\": {\n                    \"name\": \"P\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"P\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-09T19:46:33.643Z\",\n            \"amount\": \"11441.43\",\n            \"totalAmount\": \"13500.89\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69387c8fccb7e2cf52ce201d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765309583\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"priya@transactbridge.com\",\n                \"name\": \"Priya\",\n                \"phoneNo\": \"+91-8755564021\",\n                \"shipTo\": {\n                    \"name\": \"P\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"P\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-09T19:46:23.599Z\",\n            \"amount\": \"11441.43\",\n            \"totalAmount\": \"13500.89\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69387bb5ccb7e2cf52ce1fd1\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6838552fb17d6b3c72250013\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765309364\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"super@gmail.com\",\n                \"name\": \"priya\",\n                \"phoneNo\": \"+91-9865324710\",\n                \"shipTo\": {\n                    \"name\": \"priya\",\n                    \"city\": \"SOUTH DELHI\",\n                    \"postalCode\": \"110020\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"priya\",\n                    \"city\": \"SOUTH DELHI\",\n                    \"postalCode\": \"110020\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"49.36.182.71\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-09T19:42:45.296Z\",\n            \"amount\": \"11441.43\",\n            \"totalAmount\": \"13500.89\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69369f3ffa80c26d9d4c3a05\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"testreturn2224@gmail.com\",\n                \"shipTo\": {\n                    \"name\": \"test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"test\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"item 1\",\n                        \"description\": \"test item\",\n                        \"quantity\": 3,\n                        \"amount\": 10,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.172\"\n            },\n            \"txIds\": [\n                \"69369f7d2606f8913d7ffa8c\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-08T09:49:51.130Z\",\n            \"customerId\": \"69369f7d2606f8913d7ffa58\",\n            \"successTxnId\": \"69369f7d2606f8913d7ffa8c\",\n            \"amount\": \"2305.67\",\n            \"totalAmount\": \"2720.7\",\n            \"quoteAmt\": \"30\",\n            \"quoteAmount\": \"25.42\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6934865afa80c26d9d4c3095\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765049946\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"g@h.vom\",\n                \"name\": \"Nnnn\",\n                \"phoneNo\": \"+91-9636966300\",\n                \"shipTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"223.188.117.185\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T19:39:06.847Z\",\n            \"amount\": \"11418.7\",\n            \"totalAmount\": \"13474.07\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"126.27\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69348639fa80c26d9d4c3048\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765049913\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"g@h.vom\",\n                \"name\": \"Nnnn\",\n                \"phoneNo\": \"+91-9636966300\",\n                \"shipTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"223.188.117.185\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T19:38:33.415Z\",\n            \"amount\": \"15250.48\",\n            \"totalAmount\": \"17995.57\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693486162606f8913d7ff19c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"REJECTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765049877\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"g@h.vom\",\n                \"name\": \"Nnnn\",\n                \"phoneNo\": \"+91-9636966300\",\n                \"shipTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Uujj\",\n                    \"line1\": \"Jjjj\",\n                    \"line2\": \"Jjjj\",\n                    \"city\": \"BENGALURU\",\n                    \"postalCode\": \"560074\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"223.188.117.185\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T19:37:58.292Z\",\n            \"amount\": \"15250.48\",\n            \"totalAmount\": \"17995.57\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d24cfa80c26d9d4c2b6e\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003852\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"iostest@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110011\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.58.122.125\",\n                \"phoneNo\": \"+91-9999999999\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"6933d292fa80c26d9d4c2c1d\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:50:52.817Z\",\n            \"customerId\": \"6933d291fa80c26d9d4c2bea\",\n            \"successTxnId\": \"6933d292fa80c26d9d4c2c1d\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d1e2fa80c26d9d4c2b23\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003745\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"iostest@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:49:06.020Z\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d16d2606f8913d7fee50\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6880e62dc8ad3529e33e4fb1\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003628\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"surya@transactbridge.com\",\n                \"name\": \"surya\",\n                \"phoneNo\": \"+91-9354952104\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"103.68.31.66\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:47:09.075Z\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d1632606f8913d7fedc7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6880e62dc8ad3529e33e4fb1\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003619\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"surya@transactbridge.com\",\n                \"name\": \"surya\",\n                \"phoneNo\": \"+91-9354952104\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"103.68.31.66\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:46:59.504Z\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d155fa80c26d9d4c2a9a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6880e62dc8ad3529e33e4fb1\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003605\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"surya@transactbridge.com\",\n                \"name\": \"surya\",\n                \"phoneNo\": \"+91-9354952104\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"103.68.31.66\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:46:45.592Z\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6933d14cfa80c26d9d4c2a4a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6880e62dc8ad3529e33e4fb1\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1765003595\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"surya@transactbridge.com\",\n                \"name\": \"surya\",\n                \"phoneNo\": \"+91-9354952104\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"103.68.31.66\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-06T06:46:36.045Z\",\n            \"amount\": \"15255.54\",\n            \"totalAmount\": \"18001.54\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69327161fa80c26d9d4c22c9\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6932708afa80c26d9d4c21dd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"newtestdropin@gmail.com\",\n                \"shipTo\": {\n                    \"city\": \"BHOPAL\",\n                    \"postalCode\": \"462023\",\n                    \"state\": \"Madhya Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"BHOPAL\",\n                    \"postalCode\": \"462023\",\n                    \"state\": \"Madhya Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"dwqefr\",\n                        \"description\": \"dewfr\",\n                        \"quantity\": 1,\n                        \"amount\": 12,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.58.115.47\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-05T05:45:05.913Z\",\n            \"amount\": \"922.67\",\n            \"totalAmount\": \"1088.76\",\n            \"quoteAmt\": \"12\",\n            \"quoteAmount\": \"10.16\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6932707a2606f8913d7fe457\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"newtestdropin@gmail.com\",\n                \"billTo\": {\n                    \"city\": \"BHOPAL\",\n                    \"postalCode\": \"462023\",\n                    \"state\": \"Madhya Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"dwqefr\",\n                        \"description\": \"dewfr\",\n                        \"quantity\": 1,\n                        \"amount\": 12,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.58.115.47\",\n                \"shipTo\": {\n                    \"city\": \"BHOPAL\",\n                    \"postalCode\": \"462023\",\n                    \"state\": \"Madhya Pradesh\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"6932708bfa80c26d9d4c2211\"\n            ],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-05T05:41:14.367Z\",\n            \"customerId\": \"6932708afa80c26d9d4c21dd\",\n            \"successTxnId\": \"6932708bfa80c26d9d4c2211\",\n            \"amount\": \"922.67\",\n            \"totalAmount\": \"1088.76\",\n            \"quoteAmt\": \"12\",\n            \"quoteAmount\": \"10.16\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"693268d52606f8913d7fe245\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"REJECTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1764911317\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"princevegeta732@gmail.com\",\n                \"name\": \"Naren\",\n                \"phoneNo\": \"+91-9354985863\",\n                \"shipTo\": {\n                    \"name\": \"Naren\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Naren\",\n                    \"state\": \"Karnataka\",\n                    \"country\": \"INDIA\",\n                    \"city\": \"CHITRADURGA\",\n                    \"postalCode\": \"577598\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"104.30.161.176\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": true,\n            \"createdDate\": \"2025-12-05T05:08:37.902Z\",\n            \"amount\": \"15301.07\",\n            \"totalAmount\": \"18055.27\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"168.64\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"692d9ff6897d886c4aafb21b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1764597750\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"m.ashutosh.1642@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.162.60\",\n                \"phoneNo\": \"+91-9997673355\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"692da01b897d886c4aafb2b1\",\n                \"692da02120014297038dedac\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-12-01T14:02:30.543Z\",\n            \"customerId\": \"692da01b897d886c4aafb27e\",\n            \"successTxnId\": \"692da01b897d886c4aafb2b1\",\n            \"amount\": \"17941.84\",\n            \"totalAmount\": \"21171.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"692d922720014297038debdd\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1764594215\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"m.ashutosh.1642@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.162.60\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-12-01T13:03:35.920Z\",\n            \"amount\": \"17941.84\",\n            \"totalAmount\": \"21171.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"692567b1297c177ca65c30f6\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"692567a7297c177ca65c3027\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"eerer@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.20\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"customer43gmailcom\",\n            \"createdDate\": \"2025-11-25T08:24:17.215Z\",\n            \"amount\": \"627.97\",\n            \"totalAmount\": \"741.01\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6925673b297c177ca65c2fa8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.20\",\n                \"email\": \"eerer@gmail.com\",\n                \"shipTo\": {}\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"customer43gmailcom\",\n            \"createdDate\": \"2025-11-25T08:22:19.034Z\",\n            \"amount\": \"627.97\",\n            \"totalAmount\": \"741.01\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6925671895ccd2a8a479bb28\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.20\",\n                \"email\": \"eerer@gmail.com\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"692567a7297c177ca65c305a\"\n            ],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"customer43gmailcom\",\n            \"createdDate\": \"2025-11-25T08:21:44.525Z\",\n            \"customerId\": \"692567a7297c177ca65c3027\",\n            \"amount\": \"627.97\",\n            \"totalAmount\": \"741.01\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"692488e8294cc388b7d49e2a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.20\",\n                \"email\": \"devaggg19@adfadf.com\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"692488fb294cc388b7d49ecf\"\n            ],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"customer2349gmailcom\",\n            \"createdDate\": \"2025-11-24T16:33:44.005Z\",\n            \"customerId\": \"692488fb294cc388b7d49e9b\",\n            \"successTxnId\": \"692488fb294cc388b7d49ecf\",\n            \"amount\": \"630.63\",\n            \"totalAmount\": \"744.15\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69246e758ae7301db1e3e351\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"691c813109dbf7d8e0968efc\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2349@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.49.122.75\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-24T14:40:53.744Z\",\n            \"amount\": \"630.63\",\n            \"totalAmount\": \"744.15\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69243f7cc4f89b05aea6a087\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763983228\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"testingui@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.154\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-24T11:20:28.611Z\",\n            \"amount\": \"17927.91\",\n            \"totalAmount\": \"21154.94\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691f248b1316fbb80eff3c42\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"691c813109dbf7d8e0968efc\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2349@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.22\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-20T14:24:12.004Z\",\n            \"amount\": \"624.33\",\n            \"totalAmount\": \"736.71\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691d888c97443c309c882ef9\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763543180\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"teseeeract@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.160.159\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-19T09:06:20.521Z\",\n            \"amount\": \"17720.95\",\n            \"totalAmount\": \"20910.73\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691cf39397443c309c882964\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763505042\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"greenthurotgreenthurot@gmail.com\",\n                \"name\": \"GREEN THUROT\",\n                \"phoneNo\": \"+91-6285343685771\",\n                \"shipTo\": {\n                    \"line1\": \"Jl. Polsek\",\n                    \"line2\": \"Jl. Polsek\",\n                    \"city\": \"Kab. Nabire\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"line1\": \"Jl. Polsek\",\n                    \"line2\": \"Jl. Polsek\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"country\": \"INDIA\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.2.197.31\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T22:30:43.027Z\",\n            \"amount\": \"13278.88\",\n            \"totalAmount\": \"15669.08\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691cf34fb683f6bb7b3c5c70\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763504974\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"greenthurotgreenthurot@gmail.com\",\n                \"name\": \"GREEN THUROT\",\n                \"phoneNo\": \"+91-6285343685771\",\n                \"shipTo\": {\n                    \"line1\": \"Jl. Polsek\",\n                    \"line2\": \"Jl. Polsek\",\n                    \"city\": \"Kab. Nabire\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"line1\": \"Jl. Polsek\",\n                    \"line2\": \"Jl. Polsek\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"country\": \"INDIA\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.2.197.147\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T22:29:35.218Z\",\n            \"amount\": \"17734.88\",\n            \"totalAmount\": \"20927.16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691c9325b683f6bb7b3c5ac2\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763480357\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.221.231.20\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T15:39:17.908Z\",\n            \"amount\": \"17734.88\",\n            \"totalAmount\": \"20927.16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691c906797443c309c8827b5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"691c813109dbf7d8e0968efc\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"customer2349@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.221.231.20\"\n            },\n            \"txIds\": [\n                \"691c907eb683f6bb7b3c5a10\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T15:27:35.440Z\",\n            \"successTxnId\": \"691c907eb683f6bb7b3c5a10\",\n            \"amount\": \"623.84\",\n            \"totalAmount\": \"736.14\",\n            \"quoteAmt\": \"7\",\n            \"quoteAmount\": \"7\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691c811e09dbf7d8e0968ea8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"customer2349@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c813109dbf7d8e0968f30\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T14:22:22.396Z\",\n            \"customerId\": \"691c813109dbf7d8e0968efc\",\n            \"successTxnId\": \"691c813109dbf7d8e0968f30\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c75a46fd10f8551f1370e\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2348@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c75b604808adf9d093fd1\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T13:33:24.717Z\",\n            \"customerId\": \"691c75b504808adf9d093f9d\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c7297627930e2a3528cf1\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2346@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c72a5627930e2a3528d8d\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T13:20:23.992Z\",\n            \"customerId\": \"691c72a5627930e2a3528d59\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c6f580ac9496f917696e7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"customer2345@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c6f6a0ac9496f91769765\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T13:06:32.891Z\",\n            \"customerId\": \"691c6f690ac9496f91769731\",\n            \"successTxnId\": \"691c6f6a0ac9496f91769765\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c5e205d76d920ff57e486\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2344@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c5e385d76d920ff57e4f2\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:53:04.240Z\",\n            \"customerId\": \"691c5e385d76d920ff57e4bf\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c5e1d452dfdcf8de18649\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"691c5dec452dfdcf8de1853d\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2341@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:53:01.029Z\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c5deb5d76d920ff57e3e5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6880e62dc8ad3529e33e4fb1\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763466730\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"surya@transactbridge.com\",\n                \"name\": \"surya\",\n                \"shipTo\": {\n                    \"name\": \"surya\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"103.102.89.57\",\n                \"phoneNo\": \"+91-9354952104\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"691c5e685d76d920ff57e5ae\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:52:11.130Z\",\n            \"successTxnId\": \"691c5e685d76d920ff57e5ae\",\n            \"amount\": \"17734.88\",\n            \"totalAmount\": \"20927.16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691c5dde452dfdcf8de1849d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"customer2341@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c5dec452dfdcf8de18571\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:51:58.012Z\",\n            \"customerId\": \"691c5dec452dfdcf8de1853d\",\n            \"successTxnId\": \"691c5dec452dfdcf8de18571\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c5dbc5d76d920ff57e32f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"651ca52d0cdd4d0a1c96fb43\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763466684\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"suryapt.sing@gmail.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"103.102.89.57\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:51:24.723Z\",\n            \"amount\": \"17734.88\",\n            \"totalAmount\": \"20927.16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691c5d77452dfdcf8de18418\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"691c5d2a5d76d920ff57e20d\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer2342@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:50:15.891Z\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691c5d165d76d920ff57e1a5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"customer2342@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 5,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"182.73.120.89\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691c5d2a5d76d920ff57e241\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T11:48:38.931Z\",\n            \"customerId\": \"691c5d2a5d76d920ff57e20d\",\n            \"successTxnId\": \"691c5d2a5d76d920ff57e241\",\n            \"amount\": \"534.72\",\n            \"totalAmount\": \"630.97\",\n            \"quoteAmt\": \"6\",\n            \"quoteAmount\": \"6\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691bf8e074e826b28a00d7dc\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer103434@gmail.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 1,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.51.58\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691bf8e974e826b28a00d866\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T04:41:04.813Z\",\n            \"customerId\": \"691bf8e974e826b28a00d833\",\n            \"amount\": \"178.32\",\n            \"totalAmount\": \"210.42\",\n            \"quoteAmt\": \"2\",\n            \"quoteAmount\": \"2\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691bf8b688e3348573006cb4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer103434@merchant.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 1,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.51.58\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T04:40:22.230Z\",\n            \"amount\": \"178.32\",\n            \"totalAmount\": \"210.42\",\n            \"quoteAmt\": \"2\",\n            \"quoteAmount\": \"2\",\n            \"discount\": \"1.000\"\n        },\n        {\n            \"_id\": \"691bf89788e3348573006c66\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer103434@merchant.com\",\n                \"name\": \"Devesh\",\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 200,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 500,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.51.58\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T04:39:51.033Z\",\n            \"amount\": \"53496\",\n            \"totalAmount\": \"63125.28\",\n            \"quoteAmt\": \"600\",\n            \"quoteAmount\": \"600\",\n            \"discount\": \"100.000\"\n        },\n        {\n            \"_id\": \"691bf87a74e826b28a00d6e0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"customer@merchant.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 200,\n                        \"images\": [],\n                        \"taxes\": []\n                    },\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Producith very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 500,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.51.58\",\n                \"phoneNo\": \"+91-8923040473\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-18T04:39:22.707Z\",\n            \"amount\": \"53496\",\n            \"totalAmount\": \"63125.28\",\n            \"quoteAmt\": \"600\",\n            \"quoteAmount\": \"600\",\n            \"discount\": \"100.000\"\n        },\n        {\n            \"_id\": \"691b031f726ce4e151e2219b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6910216e7b4060856ad280cd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763377950\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"tom@qq.com\",\n                \"name\": \"tom\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"shipTo\": {\n                    \"name\": \"tom\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"tom\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"141.98.75.209\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T11:12:31.214Z\",\n            \"amount\": \"17734.88\",\n            \"totalAmount\": \"20927.16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691aee906efbe9d33f15ed3c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"reflogo11@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"TAB Customer\",\n                        \"description\": \"Test\",\n                        \"quantity\": 1,\n                        \"amount\": 100,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"157.48.98.90\",\n                \"phoneNo\": \"+91-7654567765\",\n                \"shipTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691aeea36ef290239749da15\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:44:48.398Z\",\n            \"customerId\": \"691aeea36ef290239749d9e4\",\n            \"amount\": \"8916\",\n            \"totalAmount\": \"10520.88\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691aee326efbe9d33f15ed0c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"reflogo11@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"TAB Customer\",\n                        \"description\": \"Test\",\n                        \"quantity\": 1,\n                        \"amount\": 100,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:43:14.016Z\",\n            \"amount\": \"8916\",\n            \"totalAmount\": \"10520.88\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691aee2c6efbe9d33f15ecdc\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"reflogo11@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"TAB Customer\",\n                        \"description\": \"Test\",\n                        \"quantity\": 1,\n                        \"amount\": 100,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:43:08.307Z\",\n            \"amount\": \"8916\",\n            \"totalAmount\": \"10520.88\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691aed816efbe9d33f15eae0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"reflogo@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"TAB Customer\",\n                        \"description\": \"Test\",\n                        \"quantity\": 1,\n                        \"amount\": 100,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"157.48.98.90\",\n                \"phoneNo\": \"+91-7654356765\",\n                \"shipTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"691aed946efbe9d33f15eb8b\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:40:17.992Z\",\n            \"customerId\": \"691aed946efbe9d33f15eb5a\",\n            \"amount\": \"8916\",\n            \"totalAmount\": \"10520.88\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691ae8726efbe9d33f15e8cd\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"reflogo@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"TAB Customer\",\n                        \"description\": \"Test\",\n                        \"quantity\": 1,\n                        \"amount\": 100,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302001\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"browserIp\": \"157.33.20.225\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:18:42.307Z\",\n            \"amount\": \"8916\",\n            \"totalAmount\": \"10520.88\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"691ae8366ef290239749d9aa\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763371061\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mobileotpcheck@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302001\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.33.20.225\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-17T09:17:42.208Z\",\n            \"amount\": \"17742.84\",\n            \"totalAmount\": \"20936.56\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69158755bb11706ef020e5b1\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763018581\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"sdfg@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.164.209\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-13T07:23:01.906Z\",\n            \"amount\": \"17740.85\",\n            \"totalAmount\": \"20934.21\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69158409710a951e6bd1211c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1763017737\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"sdfg@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.164.209\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-13T07:08:57.931Z\",\n            \"amount\": \"17740.85\",\n            \"totalAmount\": \"20934.21\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69143874a7b898a8e9707456\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762932851\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"monajo8406@etramay.com\",\n                \"name\": \"Rita Koshy\",\n                \"phoneNo\": \"+91-7824505060\",\n                \"shipTo\": {\n                    \"name\": \"Rita Koshy\",\n                    \"line1\": \"NH 1 Phagwara-Jalandhar HWY\",\n                    \"city\": \"Nagpur\",\n                    \"postalCode\": \"440013\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"line1\": \"NH 1 Phagwara-Jalandhar HWY\",\n                    \"city\": \"Nagpur\",\n                    \"postalCode\": \"440013\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/>Sending malicious emails from inbox to spam when reported by the user <br/>Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"45.137.126.20\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"691438bca7b898a8e9707570\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-12T07:34:12.211Z\",\n            \"customerId\": \"691438bca7b898a8e970753b\",\n            \"amount\": \"17728.91\",\n            \"totalAmount\": \"20920.12\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690dab46535faf2764f47e09\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762503494\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.55\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-07T08:18:14.850Z\",\n            \"amount\": \"17742.84\",\n            \"totalAmount\": \"20936.56\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690daab9535faf2764f47d96\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762503352\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.49.55\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-07T08:15:53.040Z\",\n            \"amount\": \"17742.84\",\n            \"totalAmount\": \"20936.56\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c7e60e6b611b5d6ab631f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"690c782fe6b611b5d6ab61bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"ashutosh@transactbridge.com\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 1,\n                        \"amount\": 9,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.50.28\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-06T10:54:24.192Z\",\n            \"amount\": \"801.99\",\n            \"totalAmount\": \"946.35\",\n            \"quoteAmt\": \"9\",\n            \"quoteAmount\": \"9\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c7e1de6b611b5d6ab6295\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"690c782fe6b611b5d6ab61bd\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"ashutosh@transactbridge.com\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 1,\n                        \"amount\": 9,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.163.77\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-06T10:53:17.030Z\",\n            \"amount\": \"802.62\",\n            \"totalAmount\": \"947.1\",\n            \"quoteAmt\": \"9\",\n            \"quoteAmount\": \"9\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c782648210932651be812\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"ashutosh@transactbridge.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 1,\n                        \"amount\": 9,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"106.219.163.77\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"690c782fe6b611b5d6ab61f0\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-06T10:27:50.139Z\",\n            \"customerId\": \"690c782fe6b611b5d6ab61bd\",\n            \"successTxnId\": \"690c782fe6b611b5d6ab61f0\",\n            \"amount\": \"802.62\",\n            \"totalAmount\": \"947.1\",\n            \"quoteAmt\": \"9\",\n            \"quoteAmount\": \"9\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c6460e6b611b5d6ab5fb7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 1,\n                        \"amount\": 9,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"106.219.163.77\",\n                \"email\": \"kyctest@gmail.com\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"690c647de6b611b5d6ab6072\"\n            ],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"kyc_test\",\n            \"createdDate\": \"2025-11-06T09:03:28.208Z\",\n            \"customerId\": \"690c647de6b611b5d6ab603f\",\n            \"successTxnId\": \"690c647de6b611b5d6ab6072\",\n            \"amount\": \"802.62\",\n            \"totalAmount\": \"947.1\",\n            \"quoteAmt\": \"9\",\n            \"quoteAmount\": \"9\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c60d948210932651be584\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"newcustomer2@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 1,\n                        \"amount\": 9,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"106.219.163.77\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"690c6100e6b611b5d6ab5e40\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-06T08:48:25.707Z\",\n            \"customerId\": \"690c6100e6b611b5d6ab5e0c\",\n            \"successTxnId\": \"690c6100e6b611b5d6ab5e40\",\n            \"amount\": \"802.62\",\n            \"totalAmount\": \"947.1\",\n            \"quoteAmt\": \"9\",\n            \"quoteAmount\": \"9\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690c608d48210932651be42b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"newcustomer@gmail.com\",\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Testing ref customer\",\n                        \"description\": \"Bamboo product\",\n                        \"quantity\": 2,\n                        \"amount\": 2,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"106.219.163.77\",\n                \"shipTo\": {\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                }\n            },\n            \"txIds\": [\n                \"690c609c48210932651be4d3\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-06T08:47:09.007Z\",\n            \"customerId\": \"690c609c48210932651be4a0\",\n            \"successTxnId\": \"690c609c48210932651be4d3\",\n            \"amount\": \"356.72\",\n            \"totalAmount\": \"420.93\",\n            \"quoteAmt\": \"4\",\n            \"quoteAmount\": \"4\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"690b56099dfe0ddf65fa8319\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762350600\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400019\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"27.60.41.56\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-05T13:50:01.292Z\",\n            \"amount\": \"17754.78\",\n            \"totalAmount\": \"20950.65\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6909c37d8f3d28fd775d500f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762247549\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"itswf2@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"156.248.15.44\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-04T09:12:29.339Z\",\n            \"amount\": \"17758.76\",\n            \"totalAmount\": \"20955.34\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69084a169628ff751c614aff\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1762150934\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"itswf2@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"GAUTAM BUDDHA NAGAR\",\n                    \"postalCode\": \"201301\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"156.248.15.44\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-11-03T06:22:14.740Z\",\n            \"amount\": \"17782.64\",\n            \"totalAmount\": \"17782.64\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"69030c7a1a779de2f27d9962\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68fb0e3597c7e26b6acb6158\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761807481\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"phoneNo\": \"+91-8765435678\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.161.14\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-30T06:58:02.223Z\",\n            \"amount\": \"17711\",\n            \"totalAmount\": \"20898.98\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6900f62694ca448647c28a20\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761670694\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"pranavkhude18@gmail.com\",\n                \"name\": \"Pranav Eknath Khude\",\n                \"phoneNo\": \"+91-9730430652\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"PUNE\",\n                    \"postalCode\": \"411007\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"49.36.57.136\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-28T16:58:14.542Z\",\n            \"amount\": \"13229.71\",\n            \"totalAmount\": \"15611.06\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6900f58894ca448647c289d4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761670536\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"pranavkhude18@gmail.com\",\n                \"name\": \"Pranav Eknath Khude\",\n                \"phoneNo\": \"+91-9730430652\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"PUNE\",\n                    \"postalCode\": \"411007\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"hsnCode\": \"998439\",\n                        \"shippable\": true,\n                        \"name\": \"Canon Digital Camera\",\n                        \"description\": \"Model Name EOS R50 RFS18<br>Full frame CMOS AF II Sensor with 24 MP (brilliant resolution for large prints and image cropping)<br>DIGIC X with 651 autofocus points (important for speed and accuracy of autofocus and burst photography)<br> 4k UHD HQ upto 30fps with fully manual control and selectable frame rates (great for precision and quality video work)\",\n                        \"quantity\": 1,\n                        \"amount\": 50,\n                        \"images\": [],\n                        \"taxes\": [\n                            {\n                                \"taxName\": \"IGST\",\n                                \"taxAmt\": {\n                                    \"$numberDecimal\": \"799.11\"\n                                },\n                                \"taxPcnt\": 18\n                            }\n                        ],\n                        \"totalTax\": {\n                            \"$numberDecimal\": \"799.11\"\n                        },\n                        \"totalTaxQuote\": {\n                            \"$numberDecimal\": \"9\"\n                        }\n                    }\n                ],\n                \"browserIp\": \"49.36.57.136\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-28T16:55:36.446Z\",\n            \"amount\": \"4439.5\",\n            \"totalAmount\": \"5238.61\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6900612e2bb671c1cda01146\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761632557\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"nimish.kadam@transbnk.co.in\",\n                \"name\": \"Nimish Kadam\",\n                \"phoneNo\": \"+91-7767807807\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"PUNE\",\n                    \"postalCode\": \"411011\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"49.248.201.178\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-28T06:22:38.033Z\",\n            \"amount\": \"13229.71\",\n            \"totalAmount\": \"15611.06\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"6900610c985c3c19d00a7251\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761632523\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"nimish.kadam@transbnk.co.in\",\n                \"name\": \"Nimish Kadam\",\n                \"phoneNo\": \"+91-7767807807\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"THANE\",\n                    \"postalCode\": \"400604\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"103.29.156.246\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-28T06:22:04.696Z\",\n            \"amount\": \"13229.71\",\n            \"totalAmount\": \"15611.06\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68fe7e122bb671c1cda00b40\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761508881\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"afridiali31654@gmail.com\",\n                \"name\": \"Afridi ALI\",\n                \"phoneNo\": \"+91-7003927569\",\n                \"shipTo\": {\n                    \"name\": \"Afridi ALI\",\n                    \"line1\": \"India kolkata\",\n                    \"line2\": \"Kolkata New town\",\n                    \"city\": \"NORTH 24 PARGANAS\",\n                    \"postalCode\": \"700159\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Afridi ALI\",\n                    \"line1\": \"India kolkata\",\n                    \"line2\": \"Kolkata New town\",\n                    \"city\": \"NORTH 24 PARGANAS\",\n                    \"postalCode\": \"700159\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.40.165.115\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-26T20:01:22.715Z\",\n            \"amount\": \"17567.72\",\n            \"totalAmount\": \"20729.91\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68fb0e1bd1b3ce44b696a0ea\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1761283611\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"KOTA\",\n                    \"postalCode\": \"324008\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.71.59\",\n                \"phoneNo\": \"+91-8765435678\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68fb0e3597c7e26b6acb618c\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-24T05:26:51.432Z\",\n            \"customerId\": \"68fb0e3597c7e26b6acb6158\",\n            \"successTxnId\": \"68fb0e3597c7e26b6acb618c\",\n            \"amount\": \"17589.61\",\n            \"totalAmount\": \"20755.74\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e677e4abc8939ad445b5b7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759934421\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.122\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-08T14:40:36.787Z\",\n            \"amount\": \"17760.75\",\n            \"totalAmount\": \"20957.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e673f9abc8939ad445b53c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759933432\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.122\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-08T14:23:53.135Z\",\n            \"amount\": \"17760.75\",\n            \"totalAmount\": \"20957.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e6607b0dc3230eea97a72f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759928443\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"checkoutexp@mailiantor.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.122\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-08T13:00:43.917Z\",\n            \"amount\": \"17760.75\",\n            \"totalAmount\": \"20957.69\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e4b439c1f92eb99307cb66\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6540de1405f2303f7283e772\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759818809\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"kkb088078@gmail.com\",\n                \"name\": \"chrome-extension://someid/manifest.json\",\n                \"phoneNo\": \"+91-9887933833\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.165.218\"\n            },\n            \"txIds\": [\n                \"68e4b452cb35e1ed81fb8bb6\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-07T06:33:29.856Z\",\n            \"amount\": \"17764.73\",\n            \"totalAmount\": \"20962.39\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e3c2cd9cbdb1a58ecc3ec6\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6641dac3a7bf1ac438e3bed4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759757004\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@test.com\",\n                \"name\": \"test\",\n                \"shipTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.134\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-06T13:23:25.013Z\",\n            \"amount\": \"17764.73\",\n            \"totalAmount\": \"20962.39\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68e36009db0af772d8484fef\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6540de1405f2303f7283e772\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759731720\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"kkb088078@gmail.com\",\n                \"name\": \"chrome-extension://someid/manifest.json\",\n                \"phoneNo\": \"+91-9887933833\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"157.48.110.200\"\n            },\n            \"txIds\": [\n                \"68e36012db0af772d8485067\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-10-06T06:22:01.079Z\",\n            \"successTxnId\": \"68e36012db0af772d8485067\",\n            \"amount\": \"17758.76\",\n            \"totalAmount\": \"20955.34\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68da1b6e316cbe71de641ab6\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6641dac3a7bf1ac438e3bed4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759124334\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@test.com\",\n                \"name\": \"test\",\n                \"shipTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.37.170.65\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-29T05:38:54.811Z\",\n            \"amount\": \"17746.82\",\n            \"totalAmount\": \"20941.25\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68da1b5d316cbe71de641a68\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6641dac3a7bf1ac438e3bed4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759124317\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@test.com\",\n                \"name\": \"test\",\n                \"shipTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.37.170.65\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-29T05:38:37.716Z\",\n            \"amount\": \"17746.82\",\n            \"totalAmount\": \"20941.25\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68da1b56a9202df67701f723\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"6641dac3a7bf1ac438e3bed4\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1759124309\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"test@test.com\",\n                \"name\": \"test\",\n                \"shipTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"a\",\n                    \"line1\": \"Mumbai\",\n                    \"city\": \"MUMBAI\",\n                    \"postalCode\": \"400001\",\n                    \"state\": \"Maharashtra\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-29T05:38:30.635Z\",\n            \"amount\": \"17746.82\",\n            \"totalAmount\": \"20941.25\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68d512051c134781a59a9271\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758794245\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"pranavkhude18@gmail.com\",\n                \"name\": \"Pranav Eknath Khude\",\n                \"phoneNo\": \"+91-9730430652\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"PUNE\",\n                    \"postalCode\": \"411005\",\n                    \"state\": \"Maharashtra\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"223.233.84.133\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-25T09:57:25.945Z\",\n            \"amount\": \"17762.74\",\n            \"totalAmount\": \"20960.04\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68d2989c424501b56cee07c4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758632092\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110012\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.164.209\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-23T12:54:52.803Z\",\n            \"amount\": \"17754.78\",\n            \"totalAmount\": \"20950.65\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68cbf8ff3a98fdcb60bc39b5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758198015\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-18T12:20:15.494Z\",\n            \"amount\": \"17631.4\",\n            \"totalAmount\": \"20805.06\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68cbf8fc8c9a2e25d0be3798\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758198012\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-18T12:20:12.752Z\",\n            \"amount\": \"17631.4\",\n            \"totalAmount\": \"20805.06\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68cbce2a3a98fdcb60bc24aa\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758187050\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.65\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-18T09:17:30.421Z\",\n            \"amount\": \"17631.4\",\n            \"totalAmount\": \"20805.06\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c9122b7b9121a893eb1e52\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a839fa4710872571e3a7a9\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007850\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman@gmail.com\",\n                \"name\": \"Riya Dhiman\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.164.201\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:30:51.098Z\",\n            \"amount\": \"17643.34\",\n            \"totalAmount\": \"20819.15\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c910697b9121a893eb1d80\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007398\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:23:21.732Z\",\n            \"amount\": \"13210.34\",\n            \"totalAmount\": \"15588.21\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c91066354abf26749d9c21\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007396\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:23:18.708Z\",\n            \"amount\": \"13210.34\",\n            \"totalAmount\": \"15588.21\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c9105f7b9121a893eb1d32\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007391\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"hsnCode\": \"998439\",\n                        \"shippable\": true,\n                        \"name\": \"Canon Digital Camera\",\n                        \"description\": \"Model Name EOS R50 RFS18<br>Full frame CMOS AF II Sensor with 24 MP (brilliant resolution for large prints and image cropping)<br>DIGIC X with 651 autofocus points (important for speed and accuracy of autofocus and burst photography)<br> 4k UHD HQ upto 30fps with fully manual control and selectable frame rates (great for precision and quality video work)\",\n                        \"quantity\": 1,\n                        \"amount\": 50,\n                        \"images\": [],\n                        \"taxes\": [\n                            {\n                                \"taxName\": \"IGST\",\n                                \"taxAmt\": {\n                                    \"$numberDecimal\": \"797.94\"\n                                },\n                                \"taxPcnt\": 18\n                            }\n                        ],\n                        \"totalTax\": {\n                            \"$numberDecimal\": \"797.94\"\n                        },\n                        \"totalTaxQuote\": {\n                            \"$numberDecimal\": \"9\"\n                        }\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:23:11.926Z\",\n            \"amount\": \"4433\",\n            \"totalAmount\": \"5230.94\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c91047354abf26749d9bd5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007367\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:22:47.800Z\",\n            \"amount\": \"17643.34\",\n            \"totalAmount\": \"20819.15\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c910447b9121a893eb1c97\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1758007364\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"harshalmadnani@gmail.com\",\n                \"name\": \"Harshal Madnani\",\n                \"phoneNo\": \"+91-9836711182\",\n                \"shipTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"city\": \"Kolkata\",\n                    \"state\": \"West Bengal\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"91.73.226.88\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-16T07:22:44.803Z\",\n            \"amount\": \"17643.34\",\n            \"totalAmount\": \"20819.15\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c7c0ec004fa25d090f06c0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a839fa4710872571e3a7a9\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757921516\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman@gmail.com\",\n                \"name\": \"Riya Dhiman\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.165.157\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-15T07:31:56.930Z\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c7bae9004fa25d090f062c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757919975\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"testingui@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110012\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.157\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-15T07:06:17.159Z\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c7abce004fa25d090f05ae\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"651ca52d0cdd4d0a1c96fb43\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757916110\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"suryapt.sing@gmail.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.58.129.21\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-15T06:01:50.765Z\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c4f4b1004fa25d090f0202\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757738160\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"suraj.kumargithub@gmail.com\",\n                \"name\": \"Jfjfu\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"RANGAREDDY\",\n                    \"postalCode\": \"500048\",\n                    \"state\": \"Telangana\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"152.57.190.21\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-13T04:36:01.836Z\",\n            \"amount\": \"17665.23\",\n            \"totalAmount\": \"20844.98\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c1c9e164e278b6b2234b20\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757530593\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mrchiefredu@gmail.com\",\n                \"name\": \"Sameer Ahmad\",\n                \"phoneNo\": \"+91-6398429752\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"MUZAFFARNAGAR\",\n                    \"postalCode\": \"247776\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.215.161.247\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-10T18:56:33.844Z\",\n            \"amount\": \"17649.31\",\n            \"totalAmount\": \"20826.19\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c1c96c66230cd6bd0ba67a\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757530475\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"mrchiefredu@gmail.com\",\n                \"name\": \"Sameer Ahmad\",\n                \"phoneNo\": \"+91-6398429742\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"MUZAFFARNAGAR\",\n                    \"postalCode\": \"247776\",\n                    \"state\": \"Uttar Pradesh\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.215.161.247\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-10T18:54:36.004Z\",\n            \"amount\": \"17649.31\",\n            \"totalAmount\": \"20826.19\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c034d9eccbce7cd3e0b679\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757426905\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"dfasdf@upi.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.139\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-09T14:08:25.512Z\",\n            \"amount\": \"17639.36\",\n            \"totalAmount\": \"20814.45\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68c009349e2d0d1c98a040b7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757415731\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"sdfcgvbhnj@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.166.139\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-09T11:02:12.413Z\",\n            \"amount\": \"17627.42\",\n            \"totalAmount\": \"20800.36\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68beb365eccbce7cd3e098b4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757328229\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"dfgvbhnjm@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.163.3\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-08T10:43:49.903Z\",\n            \"amount\": \"17637.37\",\n            \"totalAmount\": \"20812.1\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68beb352eccbce7cd3e09869\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68bc2a90eccbce7cd3e091c5\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757328210\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"werfgh@gmail.com\",\n                \"phoneNo\": \"+91-8660086043\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.163.3\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-08T10:43:30.711Z\",\n            \"amount\": \"17637.37\",\n            \"totalAmount\": \"20812.1\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68be95e99e2d0d1c98a03388\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68bc2a90eccbce7cd3e091c5\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757320681\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"werfgh@gmail.com\",\n                \"phoneNo\": \"+91-8660086043\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.163.3\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-08T08:38:01.613Z\",\n            \"amount\": \"17637.37\",\n            \"totalAmount\": \"20812.1\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68bc2c70eccbce7cd3e09437\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68bc2a90eccbce7cd3e091c5\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757162608\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"werfgh@gmail.com\",\n                \"phoneNo\": \"+91-8660086043\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.165.33\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-06T12:43:28.640Z\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68bc2a24eccbce7cd3e09124\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757162019\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"werfgh@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.33\",\n                \"phoneNo\": \"+91-8660086043\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68bc2a91eccbce7cd3e091f8\",\n                \"68bc2adfeccbce7cd3e09295\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-06T12:33:40.230Z\",\n            \"customerId\": \"68bc2a90eccbce7cd3e091c5\",\n            \"successTxnId\": \"68bc2adfeccbce7cd3e09295\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68bc26779e2d0d1c98a02e34\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757161079\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"edfrg@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110003\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.165.33\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-06T12:17:59.936Z\",\n            \"amount\": \"17655.28\",\n            \"totalAmount\": \"20833.24\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68baf352035d279f4477ab03\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757082450\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg234234234@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.53.81\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-05T14:27:30.692Z\",\n            \"amount\": \"17667.22\",\n            \"totalAmount\": \"20847.32\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68baf31ecc6183a81f0d9af5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68b800f18d20ac881dcdb460\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757082398\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg12349@gmail.com\",\n                \"phoneNo\": \"+91-8737472342\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"122.161.53.81\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-05T14:26:39.007Z\",\n            \"amount\": \"17667.22\",\n            \"totalAmount\": \"20847.32\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68baf306035d279f4477a9da\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68b800f18d20ac881dcdb460\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1757082374\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg12349@gmail.com\",\n                \"phoneNo\": \"+91-8737472342\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"122.161.53.81\"\n            },\n            \"txIds\": [\n                \"68baf94e035d279f4477ab98\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-05T14:26:14.466Z\",\n            \"amount\": \"17667.22\",\n            \"totalAmount\": \"20847.32\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b7feda2d946760207b6914\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756888794\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"devagg12349@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.53.53\",\n                \"phoneNo\": \"+91-8737472342\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68b800f28d20ac881dcdb491\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-03T08:39:54.848Z\",\n            \"customerId\": \"68b800f18d20ac881dcdb460\",\n            \"successTxnId\": \"68b800f28d20ac881dcdb491\",\n            \"amount\": \"17635.38\",\n            \"totalAmount\": \"20809.75\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b7fea02d946760207b68a2\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756888735\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg123e4349@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.53.53\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-03T08:38:56.439Z\",\n            \"amount\": \"17635.38\",\n            \"totalAmount\": \"20809.75\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b7fe0e8d20ac881dcdb36f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756888590\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devaggere12@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.53.53\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-09-03T08:36:30.729Z\",\n            \"amount\": \"17635.38\",\n            \"totalAmount\": \"20809.75\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b2d62eca47bc0cf53b6b32\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756550702\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rtest@mail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.49.41.105\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-30T10:45:02.506Z\",\n            \"amount\": \"17649.31\",\n            \"totalAmount\": \"17649.31\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b2d623ca47bc0cf53b6ae7\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756550691\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rtest@mail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.49.41.105\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-30T10:44:51.440Z\",\n            \"amount\": \"13214.81\",\n            \"totalAmount\": \"15593.48\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b2d61e172888512c4852a6\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756550685\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rtest@mail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.49.41.105\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-30T10:44:46.240Z\",\n            \"amount\": \"17649.31\",\n            \"totalAmount\": \"20826.19\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b2d611172888512c48525b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756550673\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rtest@mail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"hsnCode\": \"998439\",\n                        \"shippable\": true,\n                        \"name\": \"Canon Digital Camera\",\n                        \"description\": \"Model Name EOS R50 RFS18<br>Full frame CMOS AF II Sensor with 24 MP (brilliant resolution for large prints and image cropping)<br>DIGIC X with 651 autofocus points (important for speed and accuracy of autofocus and burst photography)<br> 4k UHD HQ upto 30fps with fully manual control and selectable frame rates (great for precision and quality video work)\",\n                        \"quantity\": 1,\n                        \"amount\": 50,\n                        \"images\": [],\n                        \"taxes\": [\n                            {\n                                \"taxName\": \"IGST\",\n                                \"taxAmt\": {\n                                    \"$numberDecimal\": \"798.21\"\n                                },\n                                \"taxPcnt\": 18\n                            }\n                        ],\n                        \"totalTax\": {\n                            \"$numberDecimal\": \"798.21\"\n                        },\n                        \"totalTaxQuote\": {\n                            \"$numberDecimal\": \"9\"\n                        }\n                    }\n                ],\n                \"browserIp\": \"157.49.41.105\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-30T10:44:33.747Z\",\n            \"amount\": \"4434.5\",\n            \"totalAmount\": \"5232.71\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b2d608172888512c4851f4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756550663\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"rtest@mail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110002\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Voucher\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.49.41.105\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-30T10:44:24.055Z\",\n            \"amount\": \"17649.31\",\n            \"totalAmount\": \"17649.31\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b1438cf386c13b61143401\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756447628\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"devagg1232@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"EAST DELHI\",\n                    \"postalCode\": \"110091\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"122.161.51.168\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-29T06:07:08.623Z\",\n            \"amount\": \"17561.75\",\n            \"totalAmount\": \"20722.87\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b052c1f386c13b61136878\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"test\",\n                        \"description\": \"sdf\",\n                        \"quantity\": 1,\n                        \"amount\": 1,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"browserIp\": \"106.219.161.193\",\n                \"email\": \"devagg2131@gmail.com\",\n                \"shipTo\": {}\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"client_testing_103\",\n            \"createdDate\": \"2025-08-28T12:59:45.519Z\",\n            \"amount\": \"88.22\",\n            \"totalAmount\": \"104.1\",\n            \"quoteAmt\": \"1\",\n            \"quoteAmount\": \"1\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68b0526df386c13b611367fa\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"test\",\n                        \"description\": \"sdf\",\n                        \"quantity\": 100,\n                        \"amount\": 1,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"billTo\": {\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\",\n                    \"name\": \"Devesh\"\n                },\n                \"browserIp\": \"106.219.161.193\",\n                \"phoneNo\": \"+91-8923040473\",\n                \"email\": \"devagsss1@gmail.com\",\n                \"name\": \"Devesh\",\n                \"shipTo\": {},\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"clientReferenceId\": \"client_testing_102\",\n            \"createdDate\": \"2025-08-28T12:58:21.095Z\",\n            \"amount\": \"8822\",\n            \"totalAmount\": \"10409.96\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68ad6da2e1b302767d6f3627\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"67c03a74d7d29f0b98b439ae\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1756196257\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"custnameissue@gmail.com\",\n                \"shipTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"billTo\": {\n                    \"city\": \"JAIPUR\",\n                    \"postalCode\": \"302012\",\n                    \"state\": \"Rajasthan\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"157.48.68.69\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-26T08:17:38.032Z\",\n            \"amount\": \"17551.8\",\n            \"totalAmount\": \"20711.13\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a8578d4710872571e3b41b\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755862925\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"g6zuq6w9hwwy4si8gq5weyt8b@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a857ad47327f5e0b07954a\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T11:42:06.004Z\",\n            \"customerId\": \"68a857ad47327f5e0b079519\",\n            \"successTxnId\": \"68a857ad47327f5e0b07954a\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a840e04710872571e3affe\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755857120\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"3polwfsce1h6wnggr@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a840fe4710872571e3b084\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T10:05:20.554Z\",\n            \"customerId\": \"68a840fe4710872571e3b053\",\n            \"successTxnId\": \"68a840fe4710872571e3b084\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a83deb4710872571e3ae3d\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755856363\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"49g7mnr36jbjpxxcu90r375avy@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a83e084710872571e3aeea\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:52:43.415Z\",\n            \"customerId\": \"68a83e074710872571e3aeb9\",\n            \"successTxnId\": \"68a83e084710872571e3aeea\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a83d8647327f5e0b078dea\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755856262\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"seajgpwc8acyu9@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a83da347327f5e0b078e70\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:51:02.936Z\",\n            \"customerId\": \"68a83da347327f5e0b078e3f\",\n            \"successTxnId\": \"68a83da347327f5e0b078e70\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a83bdd47327f5e0b078c8f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755855836\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"fknfwrwl895zuyprpiuf4t7mkm@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a83c1d4710872571e3ac0f\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:43:57.246Z\",\n            \"customerId\": \"68a83c184710872571e3abde\",\n            \"successTxnId\": \"68a83c1d4710872571e3ac0f\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a83ad14710872571e3a9dd\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755855568\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"c1fts2e30xc926j@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a83b1f4710872571e3aa93\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:39:29.100Z\",\n            \"customerId\": \"68a83b1f4710872571e3aa62\",\n            \"successTxnId\": \"68a83b1f4710872571e3aa93\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a83a1a4710872571e3a874\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a839fa4710872571e3a7a9\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755855386\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman@gmail.com\",\n                \"name\": \"Riya Dhiman\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"taxIdentity\": \"ABCDE1234F\",\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [\n                \"68a83a1d4710872571e3a8eb\",\n                \"68a83a264710872571e3a973\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:36:26.397Z\",\n            \"successTxnId\": \"68a83a264710872571e3a973\",\n            \"amount\": \"17504.04\",\n            \"totalAmount\": \"20654.77\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a838484710872571e3a6b2\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755854919\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"tevljmu@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a838ab47327f5e0b078ad9\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:28:40.041Z\",\n            \"customerId\": \"68a838ab47327f5e0b078aa6\",\n            \"successTxnId\": \"68a838ab47327f5e0b078ad9\",\n            \"amount\": \"17502.05\",\n            \"totalAmount\": \"20652.42\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a836ff47327f5e0b078876\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755854591\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"billDetails\": {\n                \"email\": \"7bufrvskswvvzm2rl7hfxqq9q2c@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"name\": \"Testing Name\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a8376847327f5e0b078923\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:23:11.914Z\",\n            \"customerId\": \"68a8376847327f5e0b0788f2\",\n            \"successTxnId\": \"68a8376847327f5e0b078923\",\n            \"amount\": \"17502.05\",\n            \"totalAmount\": \"20652.42\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a8364047327f5e0b078775\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755854400\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"90aj9rtiltmlu51zz2rgc7f6xrqf@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T09:20:00.414Z\",\n            \"amount\": \"17502.05\",\n            \"totalAmount\": \"20652.42\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a82cd247327f5e0b078635\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755851985\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"6sog48ucrq20cg85z55ak8u@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T08:39:46.243Z\",\n            \"amount\": \"17502.05\",\n            \"totalAmount\": \"20652.42\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a82b9f4710872571e3a400\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755851679\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"by70s1qjtbgc2t857k8@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T08:34:39.634Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a823834710872571e39287\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"CLOSED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755849603\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Test User\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"name\": \"Riya Dhiman\",\n                \"taxIdentity\": \"ABCDE1234F\"\n            },\n            \"txIds\": [\n                \"68a839fa4710872571e3a7da\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T08:00:03.403Z\",\n            \"customerId\": \"68a839fa4710872571e3a7a9\",\n            \"successTxnId\": \"68a839fa4710872571e3a7da\",\n            \"amount\": \"17502.05\",\n            \"totalAmount\": \"20652.42\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a8236c47327f5e0b077315\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a0c3cefa8ee561371f114d\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755849580\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman2920@gmail.com\",\n                \"name\": \"XYZ\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:59:40.499Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a823584710872571e391d4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a0c3cefa8ee561371f114d\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755849559\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman2920@gmail.com\",\n                \"name\": \"XYZ\",\n                \"phoneNo\": \"+91-9876543210\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:59:20.301Z\",\n            \"amount\": \"13100.08\",\n            \"totalAmount\": \"15458.1\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a8210c47327f5e0b076fe8\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755848972\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:49:32.510Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a820c447327f5e0b076ebd\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a0c3cefa8ee561371f114d\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755848898\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman2920@gmail.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"city\": \"MEERUT\",\n                    \"postalCode\": \"250004\",\n                    \"state\": \"Uttar Pradesh\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9876543210\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:48:20.249Z\",\n            \"amount\": \"13100.08\",\n            \"totalAmount\": \"15458.1\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a820a94710872571e38c12\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755848872\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:47:53.028Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a8209b4710872571e38b2e\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755848858\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"phoneNo\": \"+91-9368671964\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T07:47:39.511Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a810ae9fd6b445afdae7b4\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755844782\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-22T06:39:42.555Z\",\n            \"amount\": \"17496.08\",\n            \"totalAmount\": \"20645.38\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a71c590c177b652a31c8b3\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755782233\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.161.37\",\n                \"phoneNo\": \"+91-9368671964\"\n            },\n            \"txIds\": [\n                \"68a809e80c177b652a31cc4c\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-21T13:17:13.821Z\",\n            \"amount\": \"13100.08\",\n            \"totalAmount\": \"15458.1\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a71c309fd6b445afdae2f6\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755782192\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"name\": \"Ria\",\n                \"shipTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.162.132\"\n            },\n            \"txIds\": [\n                \"68a71c469fd6b445afdae355\",\n                \"68a71c539fd6b445afdae3c5\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-21T13:16:32.222Z\",\n            \"amount\": \"17454.29\",\n            \"totalAmount\": \"20596.07\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a70e3a9fd6b445afdae17e\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"STARTED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755778608\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"Ria\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.162.132\",\n                \"name\": \"Ria\"\n            },\n            \"txIds\": [\n                \"68a713ae0c177b652a31c7a0\",\n                \"68a71bdc9fd6b445afdae247\"\n            ],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-21T12:16:58.277Z\",\n            \"customerId\": \"68a713ae0c177b652a31c771\",\n            \"amount\": \"17454.29\",\n            \"totalAmount\": \"20596.07\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a70e230c177b652a31c71c\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755778580\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-21T12:16:35.262Z\",\n            \"amount\": \"17454.29\",\n            \"totalAmount\": \"20596.07\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a58eef53a642065f27edd0\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755680495\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.160.226\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-20T09:01:35.222Z\",\n            \"amount\": \"17430.41\",\n            \"totalAmount\": \"20567.89\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a57037f28fcdb8ab7a56b5\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755672621\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"riyadhiman290@gmail.com\",\n                \"shipTo\": {\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"country\": \"INDIA\",\n                    \"city\": \"NORTH DELHI\",\n                    \"postalCode\": \"110006\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"ThreatCop\",\n                        \"description\": \"Protecting your organization against email based threats <br/> Sending malicious emails from inbox to spam when reported by the user <br/> Empowering your workforce to report suspicious emails\",\n                        \"quantity\": 1,\n                        \"amount\": 199,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ],\n                \"browserIp\": \"106.219.160.226\"\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-20T06:50:31.816Z\",\n            \"amount\": \"17430.41\",\n            \"totalAmount\": \"20567.89\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a3b3e3abf7c0011fe0afa9\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755558883\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"meetzemdegs@gmail.com\",\n                \"name\": \"MEET\",\n                \"phoneNo\": \"+91-8149910468\",\n                \"shipTo\": {\n                    \"name\": \"meet\",\n                    \"line1\": \"Sisjnsjejw\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"meet\",\n                    \"line1\": \"Sisjnsjejw\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-18T23:14:43.365Z\",\n            \"amount\": \"13104.55\",\n            \"totalAmount\": \"15463.37\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        },\n        {\n            \"_id\": \"68a3b3defa8ee561371f382f\",\n            \"orgName\": \"ZETA\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"EXPIRED\",\n            \"quoteCurrCode\": \"USD\",\n            \"referenceId\": \"1755558878\",\n            \"paymentDetails\": {\n                \"supplierPayMethods\": []\n            },\n            \"billDetails\": {\n                \"email\": \"meetzemdegs@gmail.com\",\n                \"name\": \"MEET\",\n                \"phoneNo\": \"+91-8149910468\",\n                \"shipTo\": {\n                    \"name\": \"meet\",\n                    \"line1\": \"Sisjnsjejw\",\n                    \"country\": \"INDIA\"\n                },\n                \"billTo\": {\n                    \"name\": \"meet\",\n                    \"line1\": \"Sisjnsjejw\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"shippable\": false,\n                        \"name\": \"Mailinator\",\n                        \"description\": \"Send upto 150,000 per month and post than less than 1 cents for email <br/> Unlimited users and audience can be added that means no worries <br/> 300+ Integrations like wordpress, zumla, drupal <br/> Scale fast with dedicated onboarding, unlimited contacts, and priority support built for teams.\",\n                        \"quantity\": 1,\n                        \"amount\": 149,\n                        \"images\": [],\n                        \"taxes\": []\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"gstInclusive\": false,\n            \"createdDate\": \"2025-08-18T23:14:38.916Z\",\n            \"amount\": \"13104.55\",\n            \"totalAmount\": \"15463.37\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"discount\": null\n        }\n    ],\n    \"hasMore\": true,\n    \"maxPageSize\": 200\n}"}],"_postman_id":"d5589a8a-a45f-49ac-bff7-1478f6224878"}],"id":"a393206c-8fae-4f1f-a55f-01b53330ec66","description":"<p>A payment link is a shareable URL that will take your customers to a hosted payment page. A payment link can be shared and used multiple times. The session is considered closed once the payment is done successfully. Before that customer can retry any number of times to make the payment before the session expires (configured by the partner).</p>\n<p>Partners can use the <a href=\"https://docs.transactbridge.com/#49db9313-bb0c-4732-a59d-b9ce0fec6217\">Get Session API</a> to track the status of the session. Invoices are created once the payment is successful and is sent to the end customer.</p>\n<p>The payments once done by the customer are reflected instantly in the panel and webhook/callback events are also pushed to the configured URL for all the activities done in the session and also for invoices.</p>\n<p>Since the payments are browser-based, the partner needs to set redirect URLs to where the customer will be redirected once the payment is done.</p>\n","_postman_id":"a393206c-8fae-4f1f-a55f-01b53330ec66"},{"name":"TSP","item":[{"name":"Create Payment Request","id":"757c3604-04ea-494c-9d61-aa30a15373e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing10111378g\",\n    \"returnUrl\": \"https://google.com\",\n    \"payMethod\": \"CC\",\n    \"quoteAmount\": 100,\n    \"cardNumber\": \"gcuuql4eYglfErVIOSl37vVXgjKd4KQQWCNKjd7u5/Xr3fj2pbbYZsZzYMFVc2hdnwDC/mNu/0X4sUXb6zIL6xrfimR52Vn7SVg3nTPA/HqIr/b0+7+cq6Jqx3SIqx/OOrAOWpzDLLsyu8VZh8uhQU6pr8XuRXSMQDX7rfXhLResDXNIti6Yvkv3ZqKOKm1u1jntnOYfQI/k2GSvMJkwwZeONK4+giNnd9D/4ikg4DYbSdwdv+O4CSamU7anJhFUprBji78QWWEcL0FFLel2cwAsD64DE2ZMPqKhvCe0nvB136rF1ifKyWYJ46q8U8lP5abnxW7vqMipvJqaxjDckQ==\",\n    \"cardBeneficiary\": \"Devesh Aggrawal\",\n    \"cardExpireMonth\": \"12\",\n    \"cardExpireYear\": \"24\",\n    \"cardCVV\": \"e63cccNS/+/AQzIvtLeAcAjkd1iZ6k3ShQ1HBcwk/wtSEAStk7/Za/je3ukgBLPyGQ4Zy0y/3IV27lYyAuT4IfqOAICZXkDlTcF5OBq9FjnLchtmDb8/ylp7i47dNFA7mm/JZwLMfJxzLqbm9+nXnmx39P3gd8aocHhX1nL3yNDHBhp+704O/e6pyB8jUwmuRWB7+arjMMGLkgkVPOkBTIMjGDrdAI4qoNK/zbudMTwQuulrogDA/R+pcAQ7MhIRw3MN1XyxXHZemuREeNsbUjHDU1nTOXMUZ+ql1mKRlFBfKV/vBNTlnqJrBbl+AEVqtg1jCi56oulPX8hjtpJW3g==\"\n}"},"url":"{{base_url}}/payment/v1.0/createPaymentRequest","description":"<p>This API is used to create a unique payment request with a specific amount. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same deposit. To send the debit card and credit card details, the partner would require to use encryption and then send encrypted data. Read the <a href=\"https://docs.transactbridge.com/#encryption\">encryption documentation</a> to understand how to use it.</p>\n<p>Each transaction status can be found using <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<p>To verify if the encryption is being done correctly in the sandbox environment (Do not work in Production Environment), use <a href=\"https://docs.transactbridge.com/#cdb602e4-c8e8-4cdd-9f36-3ca8e921418c\">Encryption Testing API</a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Mandatory</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note</strong>: For different <strong><code>payMethod</code></strong> there are different params to send the correspoding values mandatory for that <strong><code>payMethod</code></strong>. Please refer to the examples to understand what other parameters can be sent.</p>\n<blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>For UPI Collect request there will be no redirection URL.</p>\n</li>\n<li><p>For UPI Intent reqeust there will be a intent URL provided in the data object.</p>\n</li>\n<li><p>In all other payment methods (NB, CC, DC) there will be a redirection URL proviced in the data object.</p>\n</li>\n</ol>\n","urlObject":{"path":["payment","v1.0","createPaymentRequest"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ba2e3f74-ddea-4832-bd70-6822d71473ae","name":"UPI Collect (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing101123\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"8923040473@testingupi\",\n    \"quoteAmount\": \"100\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1065"},{"key":"ETag","value":"W/\"429-YHqcZvfctzjheM8tJm99QzcRQy4\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:35:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"INTERNAL_RENDER\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"UPI\",\n        \"upiChannel\": \"COLLECT\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\",\n                \"upiId\": \"8923040473@testingupi\",\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\",\n                \"upiChannel\": \"COLLECT\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"669685462d76b3e5277cee07\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"88\",\n            \"txQuoteFee\": \"10\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing101123\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:35:50.463Z\",\n            \"txId\": \"669685462d76b3e5277cee07\",\n            \"id\": \"669685462d76b3e5277cee07\"\n        },\n        \"transactionId\": \"669685462d76b3e5277cee07\"\n    }\n}"},{"id":"be6820b0-3adb-4d24-a140-ecd4c1047217","name":"UPI Intent (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing101123\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"8923040473@testingupi\",\n    \"quoteAmount\": \"100\",\n    \"upiChannel\": \"INTENT\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"206"},{"key":"ETag","value":"W/\"ce-topYZl8KOc9GWzlutZW3PZQ4ZiU\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:37:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"DeviceOS is a mandatory field. UpiAppName is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.deviceOS is required\",\n        \"instance.upiAppName is required\"\n    ]\n}"},{"id":"fefe5cb5-8055-4558-8a71-3b5bfad5a0a1","name":"UPI Intent (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing10113\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"8923040473@testingupi\",\n    \"quoteAmount\": \"100\",\n    \"upiChannel\": \"INTENT\",\n    \"deviceOS\": \"IOS\",\n    \"upiAppName\": \"PHONEPE\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1344"},{"key":"ETag","value":"W/\"540-5JDVwZN5VjJtnqzsWRzITt4FZYs\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:38:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"REDIRECTION\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"UPI\",\n        \"upiChannel\": \"INTENT\",\n        \"intentUrl\": \"ppesim://pay?pa=TRANSACTUAT@ybl&pn=MERCHANT&am=100.00&mam=100.00&tr=669685fb2d76b3e5277cef3d&tn=Payment%20for%20669685fb2d76b3e5277cef3d&mc=5311&mode=04&purpose=00&utm_campaign=B2B_PG&utm_medium=TRANSACTUAT&utm_source=669685fb2d76b3e5277cef3d&mcbs=\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\",\n                \"upiId\": \"8923040473@testingupi\",\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\",\n                \"upiChannel\": \"INTENT\",\n                \"upiAppName\": \"PHONEPE\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"669685fb2d76b3e5277cef3d\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"88\",\n            \"txQuoteFee\": \"10\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing10113\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:38:51.700Z\",\n            \"txId\": \"669685fb2d76b3e5277cef3d\",\n            \"id\": \"669685fb2d76b3e5277cef3d\"\n        },\n        \"transactionId\": \"669685fb2d76b3e5277cef3d\"\n    }\n}"},{"id":"a7aab152-b873-476c-8aa4-64278ea4beee","name":"Credit Card (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing1011378t6fg\",\n    \"payMethod\": \"CC\",\n    \"quoteAmount\": \"100\",\n    \"cardNumber\": \"KgxWtqRvbSwZGxc187f7prSnGv1bNZFFFsQjy65RN+PKYX14LdIilV2OCUrCjro3SZey42oJL5gp8J89U3Cltf7Ui6u/y+Y84uEIcbPjPbpd200QGj4EwXpFdCaVnpUjELzAj4tqhzSz8cwjyvBzLpI8hrcpZThy0h4t2RLsB1h4Hnvj21QVE3m4ULuHckV6rrWiMW9rljZxAow4UowhtwBT9GELz90JOvCH0UD8zgf3gfHCUqdmlw6lrfuB5yAYwmB0BCWhrTwCCMYG63u24R0bDU2o12xjroiPwTNym9LTv2yfqqhaA50OJZFQ13/XwhVaZhYBMbBuqxDtzroow==\",\n    \"cardBeneficiary\": \"Devesh Aggrawal\",\n    \"cardExpireMonth\": \"12\",\n    \"cardExpireYear\": \"24\",\n    \"cardCVV\": \"P7xHTJqJLkcgl7plyDflb8UM2NWgDX7Atn6Lr4Fh1xywdyjAKkWaoLwXFJFlg9ctqzm5OzwEBtGn/g9lAzezL7PSap/HJ/2G71n5JViCyElHVvbPTYCSgelzPZEnLO4zC6GS2QRHVDE5ilFluNVrTSeBi9gSXSkSRJLuwANjWfN10sMW0B/pi5bATDkDlPCwO2kELI4swgFlmrS6FXACioYT2COkUNc7IpWjgagYkHIXhiOuFe0yR4Uu1ruU5lOkOy06XHGchIcYnjc3zuwG2FQ3SuyMKI3QjXDFYMBOVHdzynIPVr72YmgzO1bdG5I4p3pKEQTSqbAWyDkti6+lpA==\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1252"},{"key":"ETag","value":"W/\"4e4-NqQFSQiY5MwvjhBtdl/fqOPJyLw\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:54:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"REDIRECTION\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"CC\",\n        \"redirectUrl\": \"https://merchant-simulator.phonepe.com/bank/otpPage?transactToken=2x7bc9HZHWCYuJHwCsnhyvJfQt243McRcGhsotvqJtSLgHf80\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"CC\",\n                \"cardBin\": \"462294\",\n                \"cardEndingNumber\": \"************6407\",\n                \"cardBeneficiary\": \"Devesh Aggrawl\",\n                \"cardNetwork\": \"VISA\",\n                \"cardNetworkCode\": 101,\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"6696898ff8db63b29afe311e\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"96\",\n            \"txQuoteFee\": \"2\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing1011378t6fg\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:54:07.367Z\",\n            \"txId\": \"6696898ff8db63b29afe311e\",\n            \"id\": \"6696898ff8db63b29afe311e\"\n        },\n        \"transactionId\": \"6696898ff8db63b29afe311e\"\n    }\n}"},{"id":"d9ee2638-9862-4128-b43d-039f58ad539e","name":"Debit Card (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing1011378tg\",\n    \"payMethod\": \"DC\",\n    \"quoteAmount\": \"100\",\n    \"cardNumber\": \"KgxWtqRvbSwZGxc187f7prSnGv1bNZFFFsQjy65RN+PKYX14LdIilV2OCUrCjro3SZey42oJL5gp8J89U3Cltf7Ui6u/y+Y84uEIcbPjPbpd200QGj4EwXpFdCaVnpUjELzAj4tqhzSz8cwjyvBzLpI8hrcpZThy0h4t2RLsB1h4Hnvj21QVE3m4ULuHckV6rrWiMW9rljZxAow4UowhtwBT9GELz90JOvCH0UD8zgf3gfHCUqdmlw6lrfuB5yAYwmB0BCWhrTwCCMYG63u24R0bDU2o12xjroiPwTNym9LTv2yfqqhaA50OJZFQ13/XwhVaZhYBMbBuqxDtzroow==\",\n    \"cardBeneficiary\": \"Devesh Aggrawal\",\n    \"cardExpireMonth\": \"12\",\n    \"cardExpireYear\": \"24\",\n    \"cardCVV\": \"P7xHTJqJLkcgl7plyDflb8UM2NWgDX7Atn6Lr4Fh1xywdyjAKkWaoLwXFJFlg9ctqzm5OzwEBtGn/g9lAzezL7PSap/HJ/2G71n5JViCyElHVvbPTYCSgelzPZEnLO4zC6GS2QRHVDE5ilFluNVrTSeBi9gSXSkSRJLuwANjWfN10sMW0B/pi5bATDkDlPCwO2kELI4swgFlmrS6FXACioYT2COkUNc7IpWjgagYkHIXhiOuFe0yR4Uu1ruU5lOkOy06XHGchIcYnjc3zuwG2FQ3SuyMKI3QjXDFYMBOVHdzynIPVr72YmgzO1bdG5I4p3pKEQTSqbAWyDkti6+lpA==\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1250"},{"key":"ETag","value":"W/\"4e2-0BVG1ypFmuqF+CLl8UXwxHd0oQM\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:54:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"REDIRECTION\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"DC\",\n        \"redirectUrl\": \"https://merchant-simulator.phonepe.com/bank/otpPage?transactToken=2x7bc9HZHWCYuJHwCsnhyvJfREpEtEYe6onsYic4RzkhXYWVx\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"DC\",\n                \"cardBin\": \"462294\",\n                \"cardEndingNumber\": \"************6407\",\n                \"cardBeneficiary\": \"Devesh Aggrawl\",\n                \"cardNetwork\": \"VISA\",\n                \"cardNetworkCode\": 101,\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"669689bff8db63b29afe3264\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"97\",\n            \"txQuoteFee\": \"1\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing1011378tg\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:54:55.884Z\",\n            \"txId\": \"669689bff8db63b29afe3264\",\n            \"id\": \"669689bff8db63b29afe3264\"\n        },\n        \"transactionId\": \"669689bff8db63b29afe3264\"\n    }\n}"},{"id":"ae98e3b8-935d-4c18-b1c4-85163856f64f","name":"Net Banking (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing1011378g\",\n    \"payMethod\": \"NB\",\n    \"quoteAmount\": \"100\",\n    \"bank\": 1033\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1181"},{"key":"ETag","value":"W/\"49d-lDchxinJfg4VPxp1nLryC8MG21c\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:56:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"REDIRECTION\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"NB\",\n        \"redirectUrl\": \"https://merchant-simulator.phonepe.com/bank/loginPage?transactToken=2x7bc9HZHWCYuJHwCsnhyvJiTMTIJFnuNWfaFX0Gp6tyPNXSe&amount=100.00\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\",\n                \"netBank\": \"State bank of India\",\n                \"netBankCode\": 1033,\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"66968a07f8db63b29afe33ae\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"96\",\n            \"txQuoteFee\": \"2\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing1011378g\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:56:07.516Z\",\n            \"txId\": \"66968a07f8db63b29afe33ae\",\n            \"id\": \"66968a07f8db63b29afe33ae\"\n        },\n        \"transactionId\": \"66968a07f8db63b29afe33ae\"\n    }\n}"},{"id":"081fd9e6-4016-45c1-baa5-58dbb75c1388","name":"Net Banking (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"testing1011378g\",\n    \"payMethod\": \"NB\",\n    \"quoteAmount\": \"100\",\n    \"bank\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"173"},{"key":"ETag","value":"W/\"ad-tD2GoENYLyq0iGpqdE/Mfk+yT4A\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:56:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Bank can only be 1013 or 1014 or 1033. \",\n    \"addmsgs\": [\n        \"instance.bank is not one of enum values: 1013,1014,1033\"\n    ]\n}"}],"_postman_id":"757c3604-04ea-494c-9d61-aa30a15373e7"}],"id":"d929211a-d578-4e4a-bb98-d350943dcec2","description":"<p>Payment module is not available for all the partners. If you want this to be activated, please contact <a href=\"mailto:info@transactbridge.com\">info@transactbridge.com</a>. This module allows for the partner to capture payment using a server to server integration. This module requires PCI certificate to be held by the partner.</p>\n","_postman_id":"d929211a-d578-4e4a-bb98-d350943dcec2"},{"name":"PACB","item":[{"name":"Create Server Payment Request","id":"3c295196-e927-4201-aa32-5cebdcc6b42a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteAmount\": 100,\n    \"quoteCurrCode\": \"INR\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"testsuccess@gocash\",\n    \"upiChannel\": \"COLLECT\",\n    \"referenceId\": \"test-tsp-057\"\n}"},"url":"{{base_url}}/payment/v1.0/createPaymentRequest","description":"<p>This API is used to create a unique payment request with a specific amount directly to the end customer without Transact Bridge's Checkout page. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same deposit. The partner then needs to send the required verification details for the payment using the <a href=\"https://docs.transactbridge.com/#742eba67-c5c0-4f54-bde2-8bda45e65a51\">Upload Verification Details</a> API.</p>\n<p>Payment status and transaction verification status can be found using the <a href=\"https://docs.transactbridge.com/#b52481dd-9f32-4317-a881-e2ccce1af38f\">Get Transaction API</a>.</p>\n<blockquote>\n<p><strong>Note: This API endpoint is not available to all partners. Reach out Tech support team to enable this configuration.</strong> </p>\n</blockquote>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteAmount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Amount that needs to be collected from end user</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Base currency of the <code><b>quoteAmount</b></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod is <code><b>CC</b></code>, <code><b>DC</b></code>, <code><b>NB</b></code> Then this parameter is <code>Mandatory</code> needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: <code><b>UPI</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code>, <code><b>NB</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The payMethod that is to be used to collect the payment from the end customer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note</strong>: For different <strong><code>payMethod</code></strong> there are different params to send the correspoding values mandatory for that <strong><code>payMethod</code></strong>. Please refer to the examples to understand what other parameters can be sent. As of now only <strong><code>UPI</code></strong> is supported.</p>\n<blockquote>\n<p><code>payMethod: \"UPI\"</code> </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>upiId</td>\n<td>String <code>Mandatory</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>upiChannel</td>\n<td>String <code>Mandatory</code>  <br />Enum: <strong><code>COLLECT</code></strong></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>For UPI Collect request there will be no redirection URL.</p>\n</li>\n<li><p>For UPI Intent reqeust there will be a intent URL provided in the data object.</p>\n</li>\n<li><p>In all other payment methods (NB, CC, DC) there will be a redirection URL proviced in the data object.</p>\n</li>\n</ol>\n","urlObject":{"path":["payment","v1.0","createPaymentRequest"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"099a211e-2c7b-4a4f-801e-31cebd29bc1f","name":"UPI Collect (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteAmount\": 100,\n    \"quoteCurrCode\": \"INR\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"testsuccess@gocash\",\n    \"upiChannel\": \"COLLECT\",\n    \"referenceId\": \"test-tsp-057\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1065"},{"key":"ETag","value":"W/\"429-YHqcZvfctzjheM8tJm99QzcRQy4\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:35:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"action\": \"INTERNAL_RENDER\",\n        \"status\": \"SUCCESS\",\n        \"paymentMethod\": \"UPI\",\n        \"upiChannel\": \"COLLECT\",\n        \"txnData\": {\n            \"billDetails\": {\n                \"items\": []\n            },\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\",\n                \"upiId\": \"8923040473@testingupi\",\n                \"pgCode\": \"PHPYT\",\n                \"pgProvider\": \"PHPY\",\n                \"sourceDevice\": \"UNKNOWN\",\n                \"sourceOS\": \"UNKNOWN\",\n                \"sourcePlatform\": \"OTHER\",\n                \"upiChannel\": \"COLLECT\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"_id\": \"669685462d76b3e5277cee07\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"code\": \"INR\",\n            \"currId\": \"64197efbc9346d2f4a2c3adc\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalQuoteAmount\": \"100\",\n            \"settleQuoteAmount\": \"88\",\n            \"txQuoteFee\": \"10\",\n            \"rrQuoteFee\": \"1\",\n            \"txCostQuoteFee\": \"1\",\n            \"isSettled\": false,\n            \"referenceId\": \"testing101123\",\n            \"internalTxIds\": [],\n            \"remark\": null,\n            \"gstInclusive\": false,\n            \"tspModule\": true,\n            \"comment\": [],\n            \"createdDate\": \"2024-07-16T14:35:50.463Z\",\n            \"txId\": \"669685462d76b3e5277cee07\",\n            \"id\": \"669685462d76b3e5277cee07\"\n        },\n        \"transactionId\": \"669685462d76b3e5277cee07\"\n    }\n}"},{"id":"c90ce8cf-5712-4345-8bee-81fcb68c3091","name":"UPI Collect (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteAmount\": 100,\n    \"quoteCurrCode\": \"INR\",\n    \"payMethod\": \"UPI\",\n    \"upiId\": \"testfailure@gocash\",\n    \"upiChannel\": \"COLLECT\",\n    \"referenceId\": \"test-tsp-057\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/payment/v1.0/createPaymentRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"206"},{"key":"ETag","value":"W/\"ce-topYZl8KOc9GWzlutZW3PZQ4ZiU\""},{"key":"Date","value":"Tue, 16 Jul 2024 14:37:51 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"DeviceOS is a mandatory field. UpiAppName is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.deviceOS is required\",\n        \"instance.upiAppName is required\"\n    ]\n}"}],"_postman_id":"3c295196-e927-4201-aa32-5cebdcc6b42a"},{"name":"Create Payment Link","id":"8d36f8b3-7c5e-4cd9-8c47-3af60911cf0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteAmount\": 100,\n    \"quoteCurrCode\": \"INR\",\n    \"referenceId\": \"test-tsp-057\",\n    \"returnUrl\": \"https://www.google.com\"\n}"},"url":"{{base_url}}/payment/v1.0/createPaymentLink","description":"<p>This API is used to create a payment link to collect payment from the end customer. Response of this API contains the <strong><code>payURL</code></strong> to which the customer needs to be redirectd. Once the customer lands on the checkout page and makes the paymentnt through the selected payment channel, the customer is redirect back to the partner's <strong><code>returnUrl</code></strong> and the partner gets a webhook call for a successful credit of the same deposit. The partner then need to send required verification details for the payment using <a href=\"https://docs.transactbridge.com/#742eba67-c5c0-4f54-bde2-8bda45e65a51\">Upload Verification Details</a> API.</p>\n<p>Payment status and transaction verificaiton status can be found using <a href=\"https://docs.transactbridge.com/#b52481dd-9f32-4317-a881-e2ccce1af38f\">Get Transaction API</a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteAmount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Amount that needs to be collected from end user</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Base currency of the <code><b>quoteAmount</b></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>For UPI Collect request there will be no redirection URL.</p>\n</li>\n<li><p>For UPI Intent reqeust there will be a intent URL provided in the data object.</p>\n</li>\n<li><p>In all other payment methods (NB, CC, DC) there will be a redirection URL proviced in the data object.</p>\n</li>\n</ol>\n","urlObject":{"path":["payment","v1.0","createPaymentLink"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6bf5ef0d-cd93-4387-b2d9-60050b604249","name":"Create Payment Link (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"quoteAmount\": 100,\n    \"quoteCurrCode\": \"INR\",\n    \"referenceId\": \"test-tsp-057\",\n    \"returnUrl\": \"https://www.google.com\"\n}"},"url":"{{base_url}}/payment/v1.0/createPaymentLink"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 30 Oct 2025 10:24:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"256"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"100-qNkWx7k23tP1+zi0tdEJYsAt4fM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Payment link generated successfully\",\n    \"data\": {\n        \"txnId\": \"69033cf21fc967b691eb3552\",\n        \"payUrl\": \"https://sandboxpay.transactbridge.com/customer/txnCheckout?txnId=69033cf21fc967b691eb3552\",\n        \"referenceId\": \"test-tsp-057\"\n    }\n}"}],"_postman_id":"8d36f8b3-7c5e-4cd9-8c47-3af60911cf0a"},{"name":"Upload Verification Details","id":"742eba67-c5c0-4f54-bde2-8bda45e65a51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"type":"text","key":"transactionId","value":"688b3215ddf25e468f52497f","description":"<p>Mandator</p>\n"},{"type":"text","key":"importerName","value":"John","description":"<p>Mandatory</p>\n"},{"type":"text","key":"invoiceNumber","value":"234234","description":"<p>Optional</p>\n"},{"key":"importerAddressPostalCode","value":"560034","description":"<p>Mandatory</p>\n","type":"text","uuid":"586381e8-a2d5-4d51-90cb-66cda5994fc2"},{"key":"countryOfOrigin","value":"USA","type":"text","uuid":"761570f6-078b-41a2-8980-40460af545e1","description":"<p>Optional</p>\n"},{"key":"importerAddress","value":"321 Elm Street, Suite 3, Los Angeles, CA 90401, USA","type":"text","uuid":"0839ac7e-7ba8-4b84-8f01-75454a23db5d","description":"<p>Optional</p>\n"},{"key":"goodsDescription","value":"This is a test product for test purpose","type":"text","uuid":"945bca5a-ffcb-4b65-9240-4ddcb3974d46","description":"<p>Mandatory</p>\n"},{"key":"ecommerceOrderSerialNumber","value":"123123","type":"text","uuid":"9841678b-2ef0-4923-b08c-5d76954b7999","description":"<p>Optional</p>\n"}]},"url":"{{base_url}}/transaction/v1.0/uploadPaymentVerificationDetails","description":"<p>This API is used to upload the verification details for a transaction that was processed under PACB module. The partner will receive webhook if any verificaiotn detail that has been uploaded is REJECTED. Partner needs to reupload the verificaiton detail.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>transactionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>importerName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>invoiceNumber</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>importerAddressPostalCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>countryOfOrigin</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>importerAddress</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>goodsDescription</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["transaction","v1.0","uploadPaymentVerificationDetails"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"563287e1-10b9-4662-8fe6-7498c06b053e","name":"Verification Details (For Success)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <your-token>"}],"body":{"mode":"formdata","formdata":[{"type":"text","key":"transactionId","value":"68695830ead59d145baccefd"},{"type":"text","key":"importerName","value":"JHON"},{"type":"text","key":"invoiceNumber","value":"234234"},{"key":"countryOfOrigin","value":"USA","type":"text","uuid":"761570f6-078b-41a2-8980-40460af545e1"},{"key":"importerAddress","value":"321 Elm Street, Suite 3, Los Angeles, CA 90401, USA","type":"text","uuid":"0839ac7e-7ba8-4b84-8f01-75454a23db5d"},{"key":"goodsDescription","value":"This is a test product for test purpose","type":"text","uuid":"945bca5a-ffcb-4b65-9240-4ddcb3974d46"},{"key":"ecommerceOrderSerialNumber","value":"123123","type":"text","uuid":"9841678b-2ef0-4923-b08c-5d76954b7999"},{"key":"invoiceFile","type":"file","uuid":"9b834d96-381d-4527-9325-71caffdd1cb7","src":"/Users/admin/INVOICE/TBridgeView_PRO_2025-26_001535.pdf"}]},"url":"{{base_url}}/transaction/v1.0/uploadPaymentVerificationDetails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2967"},{"key":"ETag","value":"W/\"b97-QCAIMUTRl4JwtFIuprIfhQl7AGA\""},{"key":"Date","value":"Sat, 05 Jul 2025 16:53:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Upload request sent to PG successfully.\",\n    \"data\": {\n        \"uploaded_documents\": [\n            {\n                \"doc_name\": \"importer_address\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"321 Elm Street, Suite 3, Los Angeles, CA 90401, USA\"\n            },\n            {\n                \"doc_name\": \"country_of_origin\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"USA\"\n            },\n            {\n                \"doc_name\": \"invoice_file\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"DOCUMENT\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"https://new-cfmerchantdocsdevo.s3.ap-south-1.amazonaws.com/3BF10A992C1B1754011788DC5154DE00?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEEEaCmFwLXNvdXRoLTEiRjBEAiB5Nh40GFmWmDJ%2FtM2EpKE0X5sBvJX6fMMKcC3Nn5zacQIgDIjrqnuBDhXgMCtzt4POIwZpsEpeChFEPtW35J1pK7EqmwUIShAAGgwxODUxNTI3MzUxOTUiDFKFsXKQvVgxNo4hjyr4BHWmZphLwx3RLcTc0AGyPPtS8OADzEBusQBawNHamMELw4ZMg80MwgZyed9pjvWKNbZRQUIIAHXV94YMD7Hg%2B6xZ1Onpf3T1wUYf3xEGvzqukcI%2FYi3epSLqwFhgIL02zIykOC0aCM7%2BvMprYhG6clB2WFJdaGgPwIzrwxL0ltiua4jJT4sHRs8SX6yRGFuaqz5Ujo9xwWg4MJK0LlKjnZuamzQ0HcNajXkgRTFu%2Bvgqyzab%2FfqTu0vxuMGEtIGq4zNwVkqNDURQoRb4Ur1a2HK%2BeMFZT98jMANRkUEl%2Bj94rrdYt0O4Hf3W%2BQzxu5YntP74aadwGJA4P2e2TXeS8zBtvtzmb6P1lkXaoa1LsnJmSSY7vVJ2%2F5MCHv7AV4uRLuaxnPTya%2B1nqUhDAaa2kJDv6ingRIRt4BKS6HPyU0QluM8%2BY9x%2Bb8wftiDk76tk7xCd7qta2FFIYmwBt%2B%2FOsIszfzr56QaRl%2BxwHYIcy6kEC%2BPPmx5YgTbgheZ3%2BnkkQgbkQrsodkHvEIbpHdbrJEiY6Qk%2BUv4gFoN3QyNUt5Wwiu939l2K5CeDT1KaDJEU%2FiRdkHQnVF8m1w3q5xcS5eCpwJJazpK7p2b1kfcvWhcdv9MPh4seGmn75cfBA4r7S75QPptBDD5d6FeLqnlRLoy9wQ056eUw9VBRN2gUcxEDJO2X2Y9fnyeZ4vI4zkv2JuxYCqcLmfhkiWW1wJlF6w8DA051qHpIkC71SoHeFBz%2F4OHFUafD1EgEse%2BoJvf2GueikhFN2d41A0tp834SWkzGRsPwVgbO4aZlQrC4hJfuDUueI2C0d46WQBhoa6gEVjmQTC8Yiy8rMOSnpcMGOpwBrB8om%2FgJ%2BZf3Cz2377cRGqlaW7RI%2BOWmUWUtek6IqG3NqzN1iJlSrgJN3J33MIQApD5Y1cSY2gd8l5KWsVhpg9Wg8ZX0K2Y0F6h%2FZXukeqiYa37%2FjTwmkoqcEv06pigjqP6O9uoLc4mIoqBvBCu3tW7PJSIrkgOdT2vFZKpcfGG7WzB2iMEIS55ddjl8IbpwCUO9HwHMBAKXbszU&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250705T165327Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604799&X-Amz-Credential=ASIASWG7WQ7NRGEI2CDE%2F20250705%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=42f9361efc73c57345ddc957ef8909ee03d98f07b61a402c3bbdc4378b41a82b\"\n            },\n            {\n                \"doc_name\": \"invoice_number\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"234234\"\n            },\n            {\n                \"doc_name\": \"ecommerce_order_serial_number\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"123123\"\n            },\n            {\n                \"doc_name\": \"goods_description\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"This is a test product for test purpose\"\n            },\n            {\n                \"doc_name\": \"importer_name\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"JHON\"\n            }\n        ],\n        \"missing_documents\": [],\n        \"errors\": []\n    }\n}"},{"id":"547d7df6-b8c2-471c-9e3f-80aa18e02a64","name":"Verification Details (For Action Required)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <your-token>"}],"body":{"mode":"formdata","formdata":[{"type":"text","key":"transactionId","value":"68695830ead59d145baccefd"},{"type":"text","key":"importerName","value":"CENA"},{"type":"text","key":"invoiceNumber","value":"234234"},{"key":"countryOfOrigin","value":"USA","type":"text","uuid":"761570f6-078b-41a2-8980-40460af545e1"},{"key":"importerAddress","value":"321 Elm Street, Suite 3, Los Angeles, CA 90401, USA","type":"text","uuid":"0839ac7e-7ba8-4b84-8f01-75454a23db5d"},{"key":"goodsDescription","value":"This is a test product for test purpose","type":"text","uuid":"945bca5a-ffcb-4b65-9240-4ddcb3974d46"},{"key":"ecommerceOrderSerialNumber","value":"123123","type":"text","uuid":"9841678b-2ef0-4923-b08c-5d76954b7999"},{"key":"invoiceFile","type":"file","uuid":"9b834d96-381d-4527-9325-71caffdd1cb7","src":"/Users/admin/INVOICE/TBridgeView_PRO_2025-26_001535.pdf"}]},"url":"{{base_url}}/transaction/v1.0/uploadPaymentVerificationDetails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2967"},{"key":"ETag","value":"W/\"b97-QCAIMUTRl4JwtFIuprIfhQl7AGA\""},{"key":"Date","value":"Sat, 05 Jul 2025 16:53:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Upload request sent to PG successfully.\",\n    \"data\": {\n        \"uploaded_documents\": [\n            {\n                \"doc_name\": \"importer_address\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"321 Elm Street, Suite 3, Los Angeles, CA 90401, USA\"\n            },\n            {\n                \"doc_name\": \"country_of_origin\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"USA\"\n            },\n            {\n                \"doc_name\": \"invoice_file\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"DOCUMENT\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"https://new-cfmerchantdocsdevo.s3.ap-south-1.amazonaws.com/3BF10A992C1B1754011788DC5154DE00?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEEEaCmFwLXNvdXRoLTEiRjBEAiB5Nh40GFmWmDJ%2FtM2EpKE0X5sBvJX6fMMKcC3Nn5zacQIgDIjrqnuBDhXgMCtzt4POIwZpsEpeChFEPtW35J1pK7EqmwUIShAAGgwxODUxNTI3MzUxOTUiDFKFsXKQvVgxNo4hjyr4BHWmZphLwx3RLcTc0AGyPPtS8OADzEBusQBawNHamMELw4ZMg80MwgZyed9pjvWKNbZRQUIIAHXV94YMD7Hg%2B6xZ1Onpf3T1wUYf3xEGvzqukcI%2FYi3epSLqwFhgIL02zIykOC0aCM7%2BvMprYhG6clB2WFJdaGgPwIzrwxL0ltiua4jJT4sHRs8SX6yRGFuaqz5Ujo9xwWg4MJK0LlKjnZuamzQ0HcNajXkgRTFu%2Bvgqyzab%2FfqTu0vxuMGEtIGq4zNwVkqNDURQoRb4Ur1a2HK%2BeMFZT98jMANRkUEl%2Bj94rrdYt0O4Hf3W%2BQzxu5YntP74aadwGJA4P2e2TXeS8zBtvtzmb6P1lkXaoa1LsnJmSSY7vVJ2%2F5MCHv7AV4uRLuaxnPTya%2B1nqUhDAaa2kJDv6ingRIRt4BKS6HPyU0QluM8%2BY9x%2Bb8wftiDk76tk7xCd7qta2FFIYmwBt%2B%2FOsIszfzr56QaRl%2BxwHYIcy6kEC%2BPPmx5YgTbgheZ3%2BnkkQgbkQrsodkHvEIbpHdbrJEiY6Qk%2BUv4gFoN3QyNUt5Wwiu939l2K5CeDT1KaDJEU%2FiRdkHQnVF8m1w3q5xcS5eCpwJJazpK7p2b1kfcvWhcdv9MPh4seGmn75cfBA4r7S75QPptBDD5d6FeLqnlRLoy9wQ056eUw9VBRN2gUcxEDJO2X2Y9fnyeZ4vI4zkv2JuxYCqcLmfhkiWW1wJlF6w8DA051qHpIkC71SoHeFBz%2F4OHFUafD1EgEse%2BoJvf2GueikhFN2d41A0tp834SWkzGRsPwVgbO4aZlQrC4hJfuDUueI2C0d46WQBhoa6gEVjmQTC8Yiy8rMOSnpcMGOpwBrB8om%2FgJ%2BZf3Cz2377cRGqlaW7RI%2BOWmUWUtek6IqG3NqzN1iJlSrgJN3J33MIQApD5Y1cSY2gd8l5KWsVhpg9Wg8ZX0K2Y0F6h%2FZXukeqiYa37%2FjTwmkoqcEv06pigjqP6O9uoLc4mIoqBvBCu3tW7PJSIrkgOdT2vFZKpcfGG7WzB2iMEIS55ddjl8IbpwCUO9HwHMBAKXbszU&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250705T165327Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604799&X-Amz-Credential=ASIASWG7WQ7NRGEI2CDE%2F20250705%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=42f9361efc73c57345ddc957ef8909ee03d98f07b61a402c3bbdc4378b41a82b\"\n            },\n            {\n                \"doc_name\": \"invoice_number\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"234234\"\n            },\n            {\n                \"doc_name\": \"ecommerce_order_serial_number\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"123123\"\n            },\n            {\n                \"doc_name\": \"goods_description\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"This is a test product for test purpose\"\n            },\n            {\n                \"doc_name\": \"importer_name\",\n                \"doc_status\": \"IN_REVIEW\",\n                \"doc_type\": \"VALUE\",\n                \"remarks\": null,\n                \"added_on\": null,\n                \"last_updated_on\": null,\n                \"doc_value\": \"JHON\"\n            }\n        ],\n        \"missing_documents\": [],\n        \"errors\": []\n    }\n}"}],"_postman_id":"742eba67-c5c0-4f54-bde2-8bda45e65a51"},{"name":"Get Verification Status","id":"f3298404-3d57-45d5-9521-f03b5c2bacf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transactionId\": \"688cbb0edfb22ceb181ba2d6\"\n}"},"url":"{{base_url}}/transaction/v1.0/getPaymentVerificationDetails","description":"<p>This API is used to create a unique payment request with a specific amount. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same deposit and also the verification status webhook as well.</p>\n<p>Once the payment has been received, partner needs to upload the verificaiton details of that customer using <a href=\"https://docs.transactbridge.com/#742eba67-c5c0-4f54-bde2-8bda45e65a51\"><b>Upload Verification Details</b></a> API.</p>\n<p>Each transaction status can be found using <a href=\"https://docs.transactbridge.com/#b52481dd-9f32-4317-a881-e2ccce1af38f\"><b>Get Transaction API</b></a>.</p>\n<p>Each transaction verification status can be found using <a href=\"https://docs.transactbridge.com/#f3298404-3d57-45d5-9521-f03b5c2bacf6\"><b>Get Verification Status</b></a>.</p>\n<p>Different webhooks for the verification and transaction can be <a href=\"https://docs.transactbridge.com/#54011101-5d7b-4481-9b22-e8eef82babd3\"><b>found here</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Mandatory</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note</strong>: For different <strong><code>payMethod</code></strong> there are different params to send the correspoding values mandatory for that <strong><code>payMethod</code></strong>. Please refer to the examples to understand what other parameters can be sent.</p>\n<blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>For UPI Collect request there will be no redirection URL.</p>\n</li>\n<li><p>For UPI Intent reqeust there will be a intent URL provided in the data object.</p>\n</li>\n<li><p>In all other payment methods (NB, CC, DC) there will be a redirection URL proviced in the data object.</p>\n</li>\n</ol>\n","urlObject":{"path":["transaction","v1.0","getPaymentVerificationDetails"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f98ad509-2dc5-4edf-a747-05c11ef271d6","name":"Get Verification Status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transactionId\": \"688cbb0edfb22ceb181ba2d6\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/transaction/v1.0/getPaymentVerificationDetails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Payment verification details fetched\",\n    \"data\": {\n        \"status\": \"SUCCESS\",\n        \"pgResponse\": {\n            \"cf_payment_id\": 5114918904036,\n            \"payment_status\": \"SUCCESS\",\n            \"payment_verification_status\": \"ACTION_REQUIRED\",\n            \"payment_expiry\": \"2025-07-08T23:59:59+05:30\",\n            \"remarks\": null,\n            \"details\": [\n                {\n                    \"doc_name\": \"importer_address\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T14:12:45+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"Noida 63\"\n                },\n                {\n                    \"doc_name\": \"country_of_origin\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T14:12:45+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"India\"\n                },\n                {\n                    \"doc_name\": \"invoice_file\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"DOCUMENT\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T16:01:02+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"TRANSACTION/5114918904036/TRANSACTION/10605243/invoice_file-file\"\n                },\n                {\n                    \"doc_name\": \"invoice_number\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T14:12:45+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"INV-2025-001\"\n                },\n                {\n                    \"doc_name\": \"ecommerce_order_serial_number\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"1234\"\n                },\n                {\n                    \"doc_name\": \"goods_description\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T14:12:45+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"Digital goods\"\n                },\n                {\n                    \"doc_name\": \"importer_name\",\n                    \"doc_status\": \"ACTION_REQUIRED\",\n                    \"doc_type\": \"VALUE\",\n                    \"remarks\": null,\n                    \"added_on\": \"2025-07-01T14:12:45+05:30\",\n                    \"last_updated_on\": \"2025-07-01T16:30:47+05:30\",\n                    \"doc_value\": \"SolaraPay Pvt Ltd\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"f3298404-3d57-45d5-9521-f03b5c2bacf6"}],"id":"d0093900-d29d-4454-bed6-4ffa1812e854","description":"<p>Payment module is not available for all the partners. If you want this to be activated, please contact <a href=\"https://mailto:info@transactbridge.com\">info@transactbridge.com</a>. This module allows the partner to collect payments with it's own invoicing system. Partner will need to upload those invoices through API.</p>\n<img src=\"https://content.pstmn.io/6ac8f4a0-028e-4dc8-a7c4-ebd0aeb681b5/aW1hZ2UucG5n\" alt=\"API%20Flow%20for%20PACB\" width=\"759\" height=\"870\" />","_postman_id":"d0093900-d29d-4454-bed6-4ffa1812e854"},{"name":"Subscriptions","item":[{"name":"Create Subscription","id":"307dc665-ae10-4e43-8853-5b7f04961825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.google.com\",\n    \"quoteCurrCode\": \"INR\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ],\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\"\n    },\n    // \"trialSettings\":{\n    //     \"freeTrialExpire\":\"Tue Nov 05 2024 00:00:00 GMT+0530 (India Standard Time)\"\n    // },\n    \"name\": \"XYZ\",\n    \"email\": \"customer@mailinator.com\",\n    \"frequency\": \"MNTH\",\n    \"maxQuoteAmount\": \"30\",\n    \"collectionMechanism\": \"AUTOPAY\",\n    \"billAtStart\": true,\n    \"pendingExpire\": \"120\",\n    \"dayUntillDue\": \"10\",\n    \"maxUnpaidInvoices\": \"2\",\n    \"postMaxUnpaidInvoices\": \"PAUSED\",\n    \"partialCancel\": false\n}"},"url":"{{base_url}}/subscription/v1.0/addSubscription","description":"<p>This API is used to create a unique payment link for a subscription, that can be shared with a customer. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit and subscription.</p>\n<p>At the start, the subscription is in <strong><code>PENDING</code></strong> state, which means the customer can pay to activate the subscription. If the customer fails to make payment before the date derived from <strong><code>pendingExpire</code></strong> then the subscription is moved into <strong><code>PENDING_EXPIRED</code></strong> which is a terminal state after which no payment can be made on the same subscription.</p>\n<p>A subscription can accommodate multiple transactions. Each transaction is considered an attempt to make payments with valid credentials. A customer can try to make a payment using different payment methods in different payment attempts. Using the <a href=\"https://\"><b>Get Session API</b></a>, all the transactions created during a session can also be found, and each transaction status can be found using the <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is already created use <code>customerId</code> and then <code>email</code> is optional parameter</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clientReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's reference id that the partner can pass to map it to the customer on Transact Bridge panel. If <code><b>email</b></code> is not passed in the request body, the customer must enter the email on the product checkout page.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>taxIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>PAN number of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>gstIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is business type then GST can be used so that the business can get input credits.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: <code><b>USD</b></code>, <code><b>EURO</b></code>, <code><b>INR</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Fiat currency for which request needs to be initiated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>maxQuoteAmount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is the amount in the same denomination as <code>quoteCurrCode</code>. This is the maximum value for which we can use the mandate for auto debit the amount. This amount will be inclusive of GST/VAT. Please configure it accordingly.<br /><b>Note</b>: UPI has a maximum limit of ₹ 15,000 per mandate. Cards have a limit of ₹ 500,000 per mandate.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner-generated ID to map a subscription. Partners can use this to query the subscriptions as well. This cannot be the same for two subscriptions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userTaxId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>We will create a userTaxId for the partner. This allows us to tax the product correctly. For example: Partners can have two different <code><b>userTaxId</b></code> one for 18% GST and the other for 5% GST.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>redirectionType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>SAME_PAGE</b></code>, <code><b>NEW_PAGE<br /></b></code>Default: <code><b>SAME_PAGE<br /></b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Depending on the redirection type value, the user will either be redirected to a new page for payment or to the same window of the product page. Default value is <code><b>NEW_PAGE</b></code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>frequency</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: subscriptionFrequency</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Frequency of the subscription renewal period.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>description</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To set the subscription view</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>collectionMechanism</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>AUTOPAY</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Only <code><b>AUTOPAY</b></code> is allowed right now.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billAtStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code><br />Default <code><b>true</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is <code><b>true</b></code>, then the subscription is prepaid based subscription and allows to deduction of money before providing the product to the end customer and generating the invoice at the start of the subscription period. If this is <code><b>false</b></code> then it is a postpaid subscription which creates an invoice at the end of the subscription period.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>couponDetails</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To pass the coupon object and apply different coupons on the subscription.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pendingExpire</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number of minutes after which the status of the subscription if <code><b>PENDING</b></code> (Customer did not pay) it becomes <code><b>PENDING_EXPIRED</b></code> which is a terminal state and now customers cannot pay on the same subscription.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>maxUnpaidInvoices</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional<br /></code>String <code><b>0</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Max unpaid invoices allowed for the subscription. For example, if maxUnpaidInvoices is set to 2 then after 2 unpaid invoices the subscription status will be converted from <code><b>ACTIVE</b></code> to status based from <code><b>postMaxUnpaidInvoices</b></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>postMaxUnpaidInvoices</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>PENDING</b></code>, <code><b>PENDING_EXPIRED</b></code>, <code><b>PAUSED</b></code>, <code><b>EXPIRED</b></code>, <code><b>CANCELLED</b></code><br />Default <code><b>PAUSED</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Subscription status after <code><b>maxUnpaidInvoices</b></code> the threshold is crossed by the customer.<br />Default Value: <code><b>PAUSED</b></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>dayUntillDue</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional<br /></code>Default <code><b>1</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Period of time from the issue date after which <code><b>DUE</b></code> invoice is converted into <code><b>OVERDUE</b></code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billingDateAnchor</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>It allows the partner to configure the billing cycle from a fixed date. If not passed then the subscription period will start from the day the customer pays for it. For Example: if the <code><b>frequency</b></code> is <code><b>MNTH</b></code> (monthly) and <code><b>billingDateAnchor</b></code> is set to 2, this means that the invoice will be created on every 2nd day of each month.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>trialSettings</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Configuration of the trial mechanism</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>maxUnpausedInvoiceDueCount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Maximum number of unpaid invoices count allowed after that the subscription is <code><b>PAUSED</b></code> by the system. For Ex: If a subscription has been paused due to 3 non payment of invoices and this parameter is set to be 2 then once the customer pays 1 invoice the subscription will be re activated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>reAttemptConfig</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To configure how the reattempt for failed invoices be processed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shipTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Shipping Details of the Customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Billing Details of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sameAsBilling</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To make the shipping address the same as the billing address</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>items</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Items the customer wants to buy.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the subscription. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>If <code>sameAsBilling</code> parameter value is set as <code>true</code> then <code>shipTo</code> is not mandatory, and the invoice will have the same shipping and billing address.</p>\n</li>\n<li><p><code>pendingUrl</code> , <code>successUrl</code> , <code>failedUrl</code> are all mandatory if <code>returnUrl</code> is not passed.</p>\n</li>\n<li><p>One of <code>email</code> or <code>clientReferenceId</code> is a mandatory parameter.</p>\n</li>\n</ol>\n<blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>couponDetails</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coupon</td>\n<td>String <code>Mandatory</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>applicable</td>\n<td>Boolean <code>Mandatory</code></td>\n<td>Always send <code>true</code></td>\n</tr>\n<tr>\n<td>discountType</td>\n<td>String <code>Mandatory</code>Enums: ['<code>PCNT</code>', '<code>FIX</code>']</td>\n<td>Discount can be percentage based on the invoice value or flat.</td>\n</tr>\n<tr>\n<td>discountPcnt</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>PCNT</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>discountQuoteAmount</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>FIX</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>durationType</td>\n<td>String <code>Mandatory</code>  <br />Enums: ['<code>LIMITED_PERIOD</code>', '<code>FOREVER</code>', '<code>ONETIME</code>']</td>\n<td>The duration for which this coupon will be applicable on the subscription.</td>\n</tr>\n<tr>\n<td>periodUnit</td>\n<td>String <code>Optional</code>Enum: ['<code>DAIL</code>', '<code>WEEK</code>', '<code>MNTH</code>', '<code>BIMN</code>', '<code>QURT</code>', '<code>MIAN</code>', '<code>YEAR</code>', '<code>ONDM</code>']</td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>Number <code>Optional</code></td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>referenceId</code></td>\n<td>If the product is already created use the refereneId of that product.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>prorate</td>\n<td>Number <code>Mandatory</code></td>\n<td>If the invoice needs to be partially paid the total amount will be calculated using prorate on day consumed basis.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code></td>\n<td>Description of the product.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong></p>\n<ol>\n<li><p>Description in the items object allows HTML syntax for customer view. Use so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n</li>\n<li><p>If <code>productReferenceId</code> is passed then <code>name</code> is not mandatory.</p>\n</li>\n</ol>\n<blockquote>\n<p><strong><code>reAttemptConfig</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>days</td>\n<td>String <code>Mandatory</code></td>\n<td>No of days after which reattempt to be done</td>\n</tr>\n<tr>\n<td>attemptType</td>\n<td>String <code>Mandatory</code>  <br />Enum: <strong><code>try_again</code></strong>, <strong><code>subscription_active-invoice_unpaid</code></strong>, <strong><code>subscription_paused-invoice_unpaid</code></strong>, <strong><code>subscription_expire-invoice_unpaid</code></strong>, <strong><code>subscription_expire-invoice_cancelled</code></strong></td>\n<td>Depending on the enum passed post reattempt flow is configured.  <br /><strong><code>try_again</code></strong>: Will configure the system to make a reattempt.  <br />Other than <strong><code>try_again</code></strong> are terminal states that will change the status of the subscription and invoice according to the enum configured.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Description in the items object allows HTML syntax for customer view. Use<br />so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n<blockquote>\n<p><strong><code>trialSettings</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>freeTrialExpire</td>\n<td>Date <code>Mandatory</code></td>\n<td>Date in the future at which the trial should expire.</td>\n</tr>\n<tr>\n<td>needPayMethod</td>\n<td>Boolean <code>Optional</code></td>\n<td>If a valid payment method with the mandate is required to activate the trial.</td>\n</tr>\n<tr>\n<td>reminderBeforeTrialEnd</td>\n<td>String <code>Optional</code></td>\n<td>Number of days before the <strong><code>freeTrialExpire</code></strong> to send an email to remind the customer of the upcoming debit to convert <strong><code>trial</code></strong> to <strong><code>active</code></strong> subscription. The default value is \"2\".</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the subscriptionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> <strong><code>returnUrl</code></strong> will be a <strong>GET</strong> redirection with status, subscriptionId, and referenceId values passed in the query parameters. Partners can then use the Get Subscription API to get the full details of that session.</p>\n","urlObject":{"path":["subscription","v1.0","addSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4a471a46-ae59-48a8-8bad-05da7e889401","name":"Create Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceId\": \"vb43567ufg3vbc4rtghjtyjgh\",\n    \"returnUrl\": \"https://www.google.com\",\n    \"quoteCurrCode\": \"INR\",\n    \"items\": [\n        {\n            \"name\": \"ProductName1\",\n            \"description\": \"ProductDescriptoin1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"ProductName2\",\n            \"description\": \"ProductDescriptoin2\",\n            \"amount\": 20,\n            \"quantity\": 3\n        }\n    ],\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\"\n    },\n    \"name\": \"XYZ\",\n    \"email\": \"customer@mailinator.com\",\n    \"userTaxId\": \"6492b2c9f9cc14e7019b115d\",\n    \"description\": \"Testing first subscription end to end\",\n    \"maxQuoteAmount\": \"500\",\n    \"collectionMechanism\": \"AUTOPAY\",\n    \"billAtStart\": false,\n    \"pendingExpire\": \"120\",\n    \"trialSettings\": {\n        \"needPayMethod\": false,\n        \"freeTrialExpire\": \"2023-09-30 11:07:50\"\n    },\n    \"dayUntillDue\": \"10\",\n    \"maxUnpaidInvoices\": \"2\",\n    \"postMaxUnpaidInvoices\": \"PAUSED\",\n    \"partialCancel\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/addSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:08:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"8d-khw9SWUclrXMH/bZ1YZi4T7ze2Y\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MJ70RakFnh8OFZoDeDoC5HQbbwotAPo30rjI7KrUX55e4Tly%2BNUSRssbPhqBJEMJkIp%2BK2vnBLUhPX%2FWgJDGrdq66MYzDlWuQri%2F1PwaXni%2FmzpueLLYHYQ4vKFfZXUBhVME%2Bgifsavc6tCMJ9f46A%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec01c479792dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Frequency is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.frequency is required\"\n    ]\n}"},{"id":"54ff3cca-f39b-4523-b8c2-38842beae016","name":"Create Subscription (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.google.com\",\n    \"quoteCurrCode\": \"USD\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescription1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ],\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\"\n    },\n    \"name\": \"XYZ\",\n    \"email\": \"customer@mailinator.com\",\n    \"frequency\": \"MNTH\",\n    \"description\": \"Testing first subscription end to end\",\n    \"maxQuoteAmount\": \"500\",\n    \"collectionMechanism\": \"AUTOPAY\",\n    \"billAtStart\": false,\n    \"pendingExpire\": \"120\",\n    \"trialSettings\": {\n        \"needPayMethod\": false,\n        \"freeTrialExpire\": \"2023-09-30 11:07:50\"\n    },\n    \"dayUntillDue\": \"10\",\n    \"maxUnpaidInvoices\": \"2\",\n    \"postMaxUnpaidInvoices\": \"PAUSED\",\n    \"partialCancel\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/addSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:09:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"e6-JI860k1CAxRmzsWNuM55y03T7qQ\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pmcUvKRxHG6FOVgpT%2FJLwK5Y61StreF3y5idH5hHBmYynkYs4sWyRWxeoDSMqOL32s8lzxqLJdxPDR6fESFjNXH8LNAdCgAsE2F%2BuO%2FRB3TUrU75Yij909JOvmSVoD0aVFgRsrmBIA05yMppBarskQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec04008b7b2dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription created successfully\",\n    \"data\": {\n        \"_id\": \"651801fb00404fc45711eebe\",\n        \"redirectUrl\": \"https://sandbox.transactbridge.com/customer/product?subscriptionId=651801fb00404fc45711eebe\"\n    }\n}"}],"_postman_id":"307dc665-ae10-4e43-8853-5b7f04961825"},{"name":"Get Subscription","id":"2390e6f2-dabf-4ff5-b1a5-112ab1eb8a4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\"\n}"},"url":"{{base_url}}/subscription/v1.0/getSubscription","description":"<p>This API is used to get the created session and fetch the status.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String <code>Mandatory</code></td>\n<td>Created session Id</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Mandatory</code></td>\n<td>Reference ID that was passed by the partner during the generation of the session.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: Only one of the parameters needs to be passed. Both of them are not mandatory.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Full subscription object with all the information.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","getSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"db461702-18ca-4c57-80ad-60f6b16e9e11","name":"Get Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/getSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:11:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"43-OGVlTbbKf8XMQ6Mhm3HHQts6ARY\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RIlp6HND5U6veJFe2gZidf3GaP2cx5dsabzS%2FT9VORaD%2F2ClDVxA7%2FcyDpDUXyZdL95jYp8yjtMlox19lXdH98pLNDN3fH51J%2FnhtV%2FFQ%2FBlu4Ra4b%2FHsN2qj7Xsynji4JxAV5Y23s5ASD6FHG7jOA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec0615e8df2dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription not found\"\n}"},{"id":"fb698f34-bf5b-412c-8309-536bfb14cc95","name":"Get Subscription (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/getSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:11:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"323-POGmCbnkALpysnbmYlaqjhnb0mI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kzV1i5OztcXu%2BNBt4KZvQOgxRVJ2HgCXjhKf942xwJy8yTVSTIW6y0LQ4lcVry80nRkbjCbqlZzBM6kTHq0EyUwMiqbkLRVkigsBvRFrnxAQ14qrE67r7J1gXG%2BN0lP%2BY0Td74N852tWTq5noZPWfg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec064edfd42dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\"\n            },\n            \"email\": \"customer@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescription1\",\n                    \"quantity\": 1,\n                    \"amount\": 20\n                }\n            ]\n        },\n        \"_id\": \"651801fb00404fc45711eebe\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"TRIAL\",\n        \"amount\": \"1663.4\",\n        \"quoteAmount\": \"20\",\n        \"quoteAmt\": \"20\",\n        \"totalAmount\": \"1962.81\",\n        \"quoteCurrCode\": \"USD\",\n        \"txIds\": [],\n        \"frequency\": \"MNTH\",\n        \"maxAmount\": \"41585\",\n        \"maxQuoteAmount\": \"500\",\n        \"partialCancel\": true,\n        \"gstInclusive\": false,\n        \"createdDate\": \"2023-09-30T11:09:47.053Z\",\n        \"subscriptionId\": \"651801fb00404fc45711eebe\",\n        \"id\": \"651801fb00404fc45711eebe\"\n    }\n}"}],"_postman_id":"2390e6f2-dabf-4ff5-b1a5-112ab1eb8a4c"},{"name":"Get All Subscriptions","id":"48c0627f-d890-4a83-8839-2cdf3d0d5823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/subscription/v1.0/getAllSubscription","description":"<p>This API can be used to get all the sessions created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer ID can be passed to get the sessions of a particular customer.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billingSessionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Session ID can also be passed here to filter the sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the sessions. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>String <code>Optional</code></td>\n<td>To filter according to the customer's email</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enums: subscriptionStatus</td>\n<td>To filter according to the status of the session</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the subscriptions</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","getAllSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"17420b35-29c4-4de6-9970-7b8c8bfc21ea","name":"Get All Subscriptions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/getAllSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:10:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"34c-vqdbrLq4CfVxzvcqaw8nx9qP0Io\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kr%2FsR3dupEvAkEGSbzt5bnshOJq%2FCf8zJEuJKCuodtG7FCExJI4I91TPYAaIKV%2FLU2TnHNRYYuNXm3oCinSsqes0%2BTcawbj0glKDLLAJ2k5S1kZ259gwBiYp%2B1wle%2FjqAnh9S8cIgRRzLhibWSlyHQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec0500ea2c2dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"651801fb00404fc45711eebe\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"partnerId\": null,\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"status\": \"TRIAL\",\n            \"quoteCurrCode\": \"USD\",\n            \"billDetails\": {\n                \"email\": \"customer@mailinator.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"ABCS\",\n                    \"postalCode\": \"110001\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\"\n                },\n                \"items\": [\n                    {\n                        \"name\": \"SubscriptionName1\",\n                        \"description\": \"SubscriptionDescription1\",\n                        \"quantity\": 1,\n                        \"amount\": 20\n                    }\n                ]\n            },\n            \"txIds\": [],\n            \"frequency\": \"MNTH\",\n            \"gstInclusive\": false,\n            \"createdDate\": \"2023-09-30T11:09:47.053Z\",\n            \"amount\": \"1962.81\",\n            \"totalAmount\": \"1962.81\",\n            \"quoteAmount\": \"1962.81\",\n            \"quoteAmt\": \"20\",\n            \"fxQuote\": \"83.170\",\n            \"payUrl\": \"https://sandbox.transactbridge.com/customer/product?subscriptionId=651801fb00404fc45711eebe\"\n        }\n    ],\n    \"hasMore\": false,\n    \"maxPageSize\": 200\n}"}],"_postman_id":"48c0627f-d890-4a83-8839-2cdf3d0d5823"},{"name":"Update Subscription","id":"56ca8715-4409-4fdb-8211-dc21bda67741","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}"},"url":"{{base_url}}/subscription/v1.0/updateSubscription","description":"<p>This API is used to update a subscription. The main motive for updating a subscription is to update the item values of a subscription or change the reattempt configuration of the subscription.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subscriptionId</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>MongoId</code></td>\n<td>Subscription Id of the subscription for which update is needed.</td>\n</tr>\n<tr>\n<td>items</td>\n<td>String <code>Optional</code></td>\n<td>Items the customer wants to buy.</td>\n</tr>\n<tr>\n<td>billTo</td>\n<td>String <code>Optional</code></td>\n<td>Billing Details of the customer</td>\n</tr>\n<tr>\n<td>reAttemptConfig</td>\n<td>String <code>Optional</code></td>\n<td>To configure how the reattempt for failed invoices be processed.</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Object <code>Optional</code></td>\n<td>To update meta params in the subscription.</td>\n</tr>\n<tr>\n<td>couponDetails</td>\n<td>Object <code>Optional</code></td>\n<td>To apply a coupon on the update Subscription.  <br /><strong>Note</strong>: Only applicable if the subscription requires a new mandate setup to activate.</td>\n</tr>\n<tr>\n<td>frequency</td>\n<td>String <code>Optional</code>Enum: subscriptionFrequency</td>\n<td>To update the frequency of a subscription.  <br /><strong>Note</strong>: Only prepaid subscriptions are allowed for frequency update.</td>\n</tr>\n<tr>\n<td>maxUnpausedInvoiceDueCount</td>\n<td>String <code>Optional</code></td>\n<td>Maximum number of unpaid invoices count allowed after that the subscription is <strong><code>PAUSED</code></strong> by the system. For Ex: If a subscription has been paused due to 3 non payment of invoices and this parameter is set to be 2 then once the customer pays 1 invoice the subscription will be re activated.</td>\n</tr>\n<tr>\n<td>maxQuoteAmount</td>\n<td>String <code>Optional</code></td>\n<td>Amount that can be auto-debited from the customer using the existing mandate. Increasing this parameter might require a new mandate setup.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Mandatory</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>couponDetails</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coupon</td>\n<td>String <code>Mandatory</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>applicable</td>\n<td>Boolean <code>Mandatory</code></td>\n<td>Always send <code>true</code></td>\n</tr>\n<tr>\n<td>discountType</td>\n<td>String <code>Mandatory</code>Enums: ['<code>PCNT</code>', '<code>FIX</code>']</td>\n<td>Discount can be percentage based on the invoice value or flat.</td>\n</tr>\n<tr>\n<td>discountPcnt</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>PCNT</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>discountQuoteAmount</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>FIX</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>durationType</td>\n<td>String <code>Mandatory</code>  <br />Enums: ['<code>LIMITED_PERIOD</code>', '<code>FOREVER</code>', '<code>ONETIME</code>']</td>\n<td>The duration for which this coupon will be applicable on the subscription.</td>\n</tr>\n<tr>\n<td>periodUnit</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>subscriptionFrequency</code></strong></td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>Number <code>Optional</code></td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code></td>\n<td>Description of the product.</td>\n</tr>\n<tr>\n<td>prorate</td>\n<td>Number <code>Optional</code></td>\n<td>Prorate of the product</td>\n</tr>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Optional</code></td>\n<td>If product is already in the catelogue, Partner can use that</td>\n</tr>\n<tr>\n<td>productId</td>\n<td>String <code>Optional</code>  <br />Validator: <strong><code>MongoId</code></strong></td>\n<td>If product is already in the catelogue, Partner can use that</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Description in the items object allows HTML syntax for customer view. Use html syntax for code break so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the updated subscription details.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","updateSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"39a2ca57-0c30-4665-bacd-a233898c8153","name":"Update Subscription (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:16:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"3c7-rntoSJUWCkllJIIMEPIU5/j4UT0\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fYYdqdsH2JubiuHwgJR88iByfnv%2BsA46e7fE6Xoe6DYMFtKBHrmcECXRQ0AvRJ3bVzxzlmX%2BnEC5XeUAvZUUYegSvybK9IYsoM3%2BsQThBgPXZ8wddD5F8h%2BHOz1uCkVgPCZ1Qk2YxyF%2BFpgZNLCnTQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec0e159d252dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription updated successfully\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\"\n            },\n            \"email\": \"customer@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescription1\",\n                    \"quantity\": 1,\n                    \"amount\": 20\n                }\n            ]\n        },\n        \"_id\": \"651801fb00404fc45711eebe\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"TRIAL\",\n        \"amount\": \"1663.4\",\n        \"quoteAmount\": \"20\",\n        \"quoteAmt\": \"20\",\n        \"totalAmount\": \"1962.81\",\n        \"quoteCurrCode\": \"USD\",\n        \"txIds\": [],\n        \"frequency\": \"MNTH\",\n        \"maxAmount\": \"41585\",\n        \"maxQuoteAmount\": \"500\",\n        \"partialCancel\": true,\n        \"gstInclusive\": false,\n        \"createdDate\": \"2023-09-30T11:09:47.053Z\",\n        \"pendingUpdates\": {\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescriptionUpdated1\",\n                    \"amount\": 20,\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"subscriptionId\": \"651801fb00404fc45711eebe\",\n        \"id\": \"651801fb00404fc45711eebe\"\n    }\n}"},{"id":"7e912fe6-8f0f-4a55-aabe-6b7e08836b52","name":"Update Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": \"1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:58:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"a8-7gcq5I5yMG1GaLEsVIkc1H274sI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BUpIfgIw2arVHD%2BcNLScn%2FlxPZquU%2F7nirhtxYAtHxLPk1TvMtmYmYybOlnDFUWPg4WJ770c42mQz25NtAISz56pA3mNosFuFxcb1FzH9RqQ3GaqPVTq1wkrgPL5MuvYXTWHfMhirFGOTZjHnPSptw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec4b3def9e2e4d-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Quantity should be a string number. \",\n    \"addmsgs\": [\n        \"instance.items[0].quantity is not of a type(s) number\"\n    ]\n}"}],"_postman_id":"56ca8715-4409-4fdb-8211-dc21bda67741"},{"name":"Update Subscription Summary","id":"28fcb81a-1edf-4b17-b7c7-4ec2db6167f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"6939770bcc6a96340407101b\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}"},"url":"{{base_url}}/subscription/v1.0/updateSubscriptionSummary","description":"<p>This API is used to get the summary of what changes will be there on updating a subscription. This API does not update the subscription but creates the summary for the customer.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subscriptionId</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>MongoId</code></td>\n<td>Subscription Id of the subscription for which update is needed.</td>\n</tr>\n<tr>\n<td>items</td>\n<td>String <code>Optional</code></td>\n<td>Items the customer wants to buy.</td>\n</tr>\n<tr>\n<td>billTo</td>\n<td>String <code>Optional</code></td>\n<td>Billing Details of the customer</td>\n</tr>\n<tr>\n<td>reAttemptConfig</td>\n<td>String <code>Optional</code></td>\n<td>To configure how the reattempt for failed invoices be processed.</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Object <code>Optional</code></td>\n<td>To update meta params in the subscription.</td>\n</tr>\n<tr>\n<td>couponDetails</td>\n<td>Object <code>Optional</code></td>\n<td>To apply a coupon on the update Subscription.  <br /><strong>Note</strong>: Only applicable if the subscription requires a new mandate setup to activate.</td>\n</tr>\n<tr>\n<td>frequency</td>\n<td>String <code>Optional</code>Enum: subscriptionFrequency</td>\n<td>To update the frequency of a subscription.  <br /><strong>Note</strong>: Only prepaid subscriptions are allowed for frequency update.</td>\n</tr>\n<tr>\n<td>maxUnpausedInvoiceDueCount</td>\n<td>String <code>Optional</code></td>\n<td>Maximum number of unpaid invoices count allowed after that the subscription is <strong><code>PAUSED</code></strong> by the system. For Ex: If a subscription has been paused due to 3 non payment of invoices and this parameter is set to be 2 then once the customer pays 1 invoice the subscription will be re activated.</td>\n</tr>\n<tr>\n<td>maxQuoteAmount</td>\n<td>String <code>Optional</code></td>\n<td>Amount that can be auto-debited from the customer using the existing mandate. Increasing this parameter might require a new mandate setup.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Mandatory</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>couponDetails</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coupon</td>\n<td>String <code>Mandatory</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>applicable</td>\n<td>Boolean <code>Mandatory</code></td>\n<td>Always send <code>true</code></td>\n</tr>\n<tr>\n<td>discountType</td>\n<td>String <code>Mandatory</code>Enums: ['<code>PCNT</code>', '<code>FIX</code>']</td>\n<td>Discount can be percentage based on the invoice value or flat.</td>\n</tr>\n<tr>\n<td>discountPcnt</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>PCNT</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>discountQuoteAmount</td>\n<td>String <code>Optional</code></td>\n<td>If <code>discountType</code> is <code>FIX</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>durationType</td>\n<td>String <code>Mandatory</code>  <br />Enums: ['<code>LIMITED_PERIOD</code>', '<code>FOREVER</code>', '<code>ONETIME</code>']</td>\n<td>The duration for which this coupon will be applicable on the subscription.</td>\n</tr>\n<tr>\n<td>periodUnit</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>subscriptionFrequency</code></strong></td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n<tr>\n<td>period</td>\n<td>Number <code>Optional</code></td>\n<td>If <code>durationType</code> is <code>LIMITED_PERIOD</code> then this parameter is <code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code></td>\n<td>Description of the product.</td>\n</tr>\n<tr>\n<td>prorate</td>\n<td>Number <code>Optional</code></td>\n<td>Prorate of the product</td>\n</tr>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Optional</code></td>\n<td>If product is already in the catelogue, Partner can use that</td>\n</tr>\n<tr>\n<td>productId</td>\n<td>String <code>Optional</code>  <br />Validator: <strong><code>MongoId</code></strong></td>\n<td>If product is already in the catelogue, Partner can use that</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Description in the items object allows HTML syntax for customer view. Use html syntax for code break so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the updated subscription details.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","updateSubscriptionSummary"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"853d663a-32e1-4637-80fa-cc8e4dbf2bf4","name":"Update Subscription Summary (SUCCESS)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"6939770bcc6a96340407101b\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}"},"url":"{{base_url}}/subscription/v1.0/updateSubscriptionSummary"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1483"},{"key":"ETag","value":"W/\"5cb-aAl0GvvuWrz3cXqD4rmnFIgGOlI\""},{"key":"Date","value":"Thu, 11 Dec 2025 07:45:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription summary updated successfully\",\n    \"data\": {\n        \"_id\": \"6939770bcc6a96340407101b\",\n        \"mandateRequired\": false,\n        \"updateFlag\": true,\n        \"pendingUpdates\": {\n            \"pendingUpdateDate\": \"2025-12-11T07:45:24.910Z\",\n            \"pendingUpdateExpiryDate\": \"2025-12-11T13:00:00.000Z\",\n            \"updatedDate\": \"2025-12-11T07:45:24.910Z\",\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescriptionUpdated1\",\n                    \"amount\": 20,\n                    \"quantity\": 1\n                }\n            ],\n            \"maxQuoteAmount\": \"23.84\",\n            \"maxAmount\": \"23.84\",\n            \"fxQuote\": \"1\",\n            \"tax\": {\n                \"taxCurrCode\": \"INR\",\n                \"totalTax\": \"3.64\",\n                \"totalTaxQuote\": \"3.64\",\n                \"taxCatId\": \"677c208b58620377aaaa8369\",\n                \"userTaxId\": \"68188c5d992c17b63373ffe9\",\n                \"taxes\": [\n                    {\n                        \"taxAmt\": \"1.82\",\n                        \"taxPcnt\": 9,\n                        \"taxName\": \"SGST\"\n                    },\n                    {\n                        \"taxAmt\": \"1.82\",\n                        \"taxPcnt\": 9,\n                        \"taxName\": \"CGST\"\n                    }\n                ]\n            },\n            \"paymentAmt\": 0,\n            \"updatedProrateAmt\": \"20\",\n            \"currentProrateAmt\": \"3.23\",\n            \"totalPeriodProrateAmt\": \"23.23\",\n            \"currentItemsQuoteAmt\": \"100\",\n            \"updatedItems\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescriptionUpdated1\",\n                    \"amount\": 20,\n                    \"quantity\": 1,\n                    \"startDate\": \"2025-12-10T13:00:00.000Z\",\n                    \"endDate\": \"2026-01-10T13:00:00.000Z\",\n                    \"itemAmount\": \"20\"\n                }\n            ],\n            \"adjustmentQuoteAmount\": \"20\",\n            \"adjustmentInvoiceId\": \"69397767154019644e69eef9\",\n            \"adjustment\": {\n                \"adjustmentQuoteAmount\": \"20\",\n                \"adjustmentAmount\": \"20\",\n                \"totalInvoiceAdjustQuoteAmount\": \"96.77\",\n                \"totalInvoiceAdjustAmount\": \"96.77\"\n            },\n            \"updateItemStartDate\": \"2025-12-10T13:00:00.000Z\",\n            \"updateItemEndDate\": \"2026-01-10T13:00:00.000Z\",\n            \"prepaidCreateInvoice\": true,\n            \"lastUpdateDate\": \"2025-12-11T07:45:25.380Z\"\n        }\n    }\n}"}],"_postman_id":"28fcb81a-1edf-4b17-b7c7-4ec2db6167f4"},{"name":"Cancel Subscription","id":"ba15b59d-5704-44b0-8d54-5df8d83199d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"66c5a38925cc19adeb81a525\",\n    \"cancelNow\": true\n}"},"url":"{{base_url}}/subscription/v1.0/cancelSubscription","description":"<p>This API is used to cancel an <strong><code>ACTIVE</code></strong> or <strong><code>PAUSED</code></strong> subscription. Canceling a subscription works differently for the Prepaid and Postpaid billing cycles. If <strong><code>cancelAtEnd</code></strong> is used, the subscription will remain in <strong><code>ACTIVE</code></strong> state until the end of the billing cycle. At the end of the billing cycle, the subscription will be auto-canceled, and no new invoice will be raised. If <strong><code>cancelNow</code></strong> is used, it will change the status from <strong><code>ACTIVE</code></strong> to <strong><code>CANCELLED</code></strong> then only.</p>\n<p>For <code>Prepaid</code>, <strong><code>cancelNow</code></strong> will not revert the amount paid at the start of the cycle but will issue adjustment credits for that customer, which can be used in the future for any subscription payments. Therefore, it is recommended to use <strong><code>cancelAtEnd</code></strong> to cancel a <strong><code>ACTIVE</code></strong> subscription.</p>\n<p>For <code>Postpaid</code>, <strong><code>cancelNow</code></strong> and <strong><code>cancelAtEnd</code></strong> can be used. If <strong><code>cancelNow</code></strong> is used, it will raise a pro-rate-based invoice and will try to debit the amount using the auto-debit mandate if available.</p>\n<p>In the subscription analytics, this is considered as if the user has requested to drop out of the subscription.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subscriptionId</td>\n<td>String Validator  <br />Validator: <code>MongoId</code></td>\n<td>Subscription Id of the subscription for which update is needed.</td>\n</tr>\n<tr>\n<td>cancelAtEnd</td>\n<td>Boolean <code>Optional</code></td>\n<td>Subscriptions will be canceled at the end of the cycle.  <br />If <strong><code>cancelAtEnd</code></strong> is used to cancel a subscription. In response to this API, the subscription remains in the <strong><code>ACTIVE</code></strong> state and <strong><code>cancelAtEnd</code></strong> the parameter is changed to <strong><code>true</code></strong>.</td>\n</tr>\n<tr>\n<td>cancelNow</td>\n<td>Boolean <code>Optional</code></td>\n<td>Subscriptions will be canceled at the</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> One of the parameter <strong><code>cancelNow</code></strong> or <strong><code>cancelAtEnd</code></strong> is mandatory to pass in the request body.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the updated subscription details.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","cancelSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"bced3ddf-9d22-4d53-be7e-43fdb79c75bb","name":"Cancel Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\"\n}"},"url":"{{base_url}}/subscription/v1.0/cancelSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 Sep 2024 11:23:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"48-Esud1IcJNlwD9KlxBdDrOEabUY0\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=KAtF9G62pHVomOElsS3oCN3qGf1fDeBwzEvekqHL10CQj53NZcaLfkigtVhq6wNQ83NCeAXItoJymk8GL%2B1oHO9yo1q0ytsZlHPXZBohO2%2BAYoEZLM0jDHdFljsEKpgYcpFq6Q%2Bg01s8E50Rw2zKsao%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c593395ef7b822a-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription is not active.\"\n}"},{"id":"3518aaeb-19e1-4ac2-99b2-be74f576be55","name":"Cancel Subscription (Cancel At End Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"66c5a38925cc19adeb81a525\",\n    \"cancelAtEnd\": true\n}"},"url":"{{base_url}}/subscription/v1.0/cancelSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 19 Sep 2024 11:24:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"b74-lk9sHEd/VmkYePHybHqqgZ5dwpA\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=KwTxVzfABO35TYTtQ5ynAbLLVnRPs8zPc0xvTASDZzPQC5VHkoydDTwrQu698vqSFO%2Fz9APHT0cCDaWFlRR31ZfA6E0Zea8SCjo0a2rP5MuOc%2BIzJjQ9Vlouc9QjjAcBoj8rwaws2QnXCMNNDNwFbVI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c5935aa6b1a20ac-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription cancelled successfully\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"Krishan K\",\n                \"city\": \"GAUTAM BUDDHA NAGAR\",\n                \"postalCode\": \"201301\",\n                \"state\": \"Uttar Pradesh\",\n                \"country\": \"INDIA\"\n            },\n            \"billTo\": {\n                \"name\": \"Krishan K\",\n                \"city\": \"GAUTAM BUDDHA NAGAR\",\n                \"postalCode\": \"201301\",\n                \"state\": \"Uttar Pradesh\",\n                \"country\": \"INDIA\"\n            },\n            \"email\": \"newwebhook@gmail.com\",\n            \"name\": \"Krishan K\",\n            \"items\": [\n                {\n                    \"prorate\": 1,\n                    \"name\": \"P1\",\n                    \"description\": \"Discover how will help you earn more money and make a seamless customer experience<br>Discover how will help you earn more money and make a seamless customer experience<br>Discover how will help you earn more money and make a seamless customer experience<br>\",\n                    \"quantity\": 1,\n                    \"amount\": 20,\n                    \"images\": [],\n                    \"taxes\": [],\n                    \"id\": null\n                }\n            ],\n            \"browserIp\": \"207.244.89.161\"\n        },\n        \"paymentSettings\": {\n            \"defaultPaymentMethodId\": \"66c5a2ffa934be63d7f61a36\",\n            \"payMethod\": \"UPI\",\n            \"status\": \"SUCCESS\"\n        },\n        \"tax\": {\n            \"country\": \"INDIA\",\n            \"taxCurrCode\": \"INR\",\n            \"totalTax\": \"303.66\",\n            \"totalTaxQuote\": \"3.6\",\n            \"taxCatId\": \"6517fcb1bfa4a55614508c9a\",\n            \"userTaxId\": \"6517fdd500404fc45711edb9\",\n            \"taxes\": [\n                {\n                    \"taxName\": \"SGST\",\n                    \"taxAmt\": \"151.83\",\n                    \"taxPcnt\": 9\n                },\n                {\n                    \"taxName\": \"CGST\",\n                    \"taxAmt\": \"151.83\",\n                    \"taxPcnt\": 9\n                }\n            ]\n        },\n        \"meta\": {\n            \"param1\": \"\",\n            \"param2\": \"\",\n            \"param3\": \"\"\n        },\n        \"_id\": \"66c5a38925cc19adeb81a525\",\n        \"orgName\": \"ZETA\",\n        \"midId\": null,\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"partnerId\": null,\n        \"customerId\": \"66c5a2f5a934be63d7f619c5\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"ACTIVE\",\n        \"amount\": \"1687\",\n        \"quoteAmount\": \"20\",\n        \"quoteAmt\": \"20\",\n        \"totalAmount\": \"1990.66\",\n        \"quoteCurrCode\": \"USD\",\n        \"quoteCurrId\": \"65141792ffb2d664bd9e4e00\",\n        \"fxQuote\": \"84.35\",\n        \"txIds\": [\n            \"66c5a397a934be63d7f61a93\"\n        ],\n        \"invoiceIds\": [\n            \"66dae7bc13080f5a3487b838\",\n            \"66daf5cb13080f5a3487bb91\",\n            \"66df3eac13080f5a34888eda\",\n            \"66e727b67c8ee4e9e5bebdc6\"\n        ],\n        \"remark\": null,\n        \"comment\": [],\n        \"systemComment\": [],\n        \"frequency\": \"WEEK\",\n        \"maxAmount\": \"8435\",\n        \"maxQuoteAmount\": \"100\",\n        \"collectionMechanism\": \"AUTOPAY\",\n        \"billAtStart\": false,\n        \"partialCancel\": false,\n        \"pendingExpire\": \"2024-08-22T08:21:29.012Z\",\n        \"dayUntillDue\": 3,\n        \"unpaidInvoices\": 4,\n        \"maxUnpaidInvoices\": 0,\n        \"returnUrl\": \"https://www.transactbridge.com\",\n        \"amountType\": \"FLEXIBLE\",\n        \"gstInclusive\": false,\n        \"lastFxUpdate\": \"2024-08-21T08:21:29.012Z\",\n        \"deleted\": false,\n        \"reAttemptConfig\": [],\n        \"activateDate\": \"2024-08-21T08:21:29.100Z\",\n        \"pauseDate\": \"2024-08-21T08:21:29.100Z\",\n        \"createdDate\": \"2024-08-21T08:21:29.100Z\",\n        \"updatedDate\": \"2024-08-21T08:21:29.100Z\",\n        \"__v\": 13,\n        \"pspData\": {\n            \"subscriptionId\": \"OM2408211351434007563065\",\n            \"reqAuthId\": \"66c5a397a934be63d7f61a93\",\n            \"pgCode\": \"PHPYT\",\n            \"pgProvider\": \"PHPY\",\n            \"status\": \"SUCCESS\"\n        },\n        \"currentPeriodEnd\": \"2024-09-21T18:30:00.000Z\",\n        \"currentPeriodStart\": \"2024-09-15T18:30:00.000Z\",\n        \"nextDraftInvCreatedDate\": \"2024-09-21T18:30:00.000Z\",\n        \"draftInvCreated\": false,\n        \"maxUnpausedInvoiceDueCount\": 0,\n        \"redirectionType\": \"SAME_PAGE\",\n        \"isTrialActive\": false,\n        \"cancelAt\": \"2024-09-21T18:30:00.000Z\",\n        \"cancelAtEnd\": true,\n        \"subscriptionId\": \"66c5a38925cc19adeb81a525\",\n        \"id\": \"66c5a38925cc19adeb81a525\"\n    }\n}"}],"_postman_id":"ba15b59d-5704-44b0-8d54-5df8d83199d4"},{"name":"Pause Subscription","id":"e91a292e-d13c-4a27-a77e-dfbbc63447b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"66f1900b28c1f9a9472e7092\"\n}"},"url":"{{base_url}}/subscription/v1.0/pauseSubscription","description":"<p>This API is used to pause an <strong><code>ACTIVE</code></strong> subscription. This API updates the status of the subscription to <strong><code>PAUSED</code></strong>. Paused subscriptions do not incur billing and the invoice will be created according to a <strong><code>prorate</code></strong> basis at the end of the cycle. Once <strong><code>PAUSED</code></strong>, a subscription can be <strong><code>UNPAUSED</code></strong> to reinstate the billing. If the subscription is marked <strong><code>PAUSED</code></strong> and then <strong><code>UNPAUSED</code></strong> again in the same billing cycle, it would not be considered <strong><code>PAUSED</code></strong> at all and the billing cycle will be considered to be used fully.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subscriptionId</td>\n<td>String Validator  <br />Validator: <code>MongoId</code></td>\n<td>Subscription Id of the subscription for which update is needed.</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>ReferenceId</code></td>\n<td>Subscription referenceId that was passed during the creation of the subscription.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> One of the parameter <strong><code>subscriptionId</code></strong> or <strong><code>referenceId</code></strong> is mandatory to pass in the request body.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the updated subscription details.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","pauseSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"a56bfdc2-654a-444e-b98f-97e79d5582bc","name":"Update Subscription (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:16:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"3c7-rntoSJUWCkllJIIMEPIU5/j4UT0\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fYYdqdsH2JubiuHwgJR88iByfnv%2BsA46e7fE6Xoe6DYMFtKBHrmcECXRQ0AvRJ3bVzxzlmX%2BnEC5XeUAvZUUYegSvybK9IYsoM3%2BsQThBgPXZ8wddD5F8h%2BHOz1uCkVgPCZ1Qk2YxyF%2BFpgZNLCnTQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec0e159d252dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription updated successfully\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\"\n            },\n            \"email\": \"customer@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescription1\",\n                    \"quantity\": 1,\n                    \"amount\": 20\n                }\n            ]\n        },\n        \"_id\": \"651801fb00404fc45711eebe\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"TRIAL\",\n        \"amount\": \"1663.4\",\n        \"quoteAmount\": \"20\",\n        \"quoteAmt\": \"20\",\n        \"totalAmount\": \"1962.81\",\n        \"quoteCurrCode\": \"USD\",\n        \"txIds\": [],\n        \"frequency\": \"MNTH\",\n        \"maxAmount\": \"41585\",\n        \"maxQuoteAmount\": \"500\",\n        \"partialCancel\": true,\n        \"gstInclusive\": false,\n        \"createdDate\": \"2023-09-30T11:09:47.053Z\",\n        \"pendingUpdates\": {\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescriptionUpdated1\",\n                    \"amount\": 20,\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"subscriptionId\": \"651801fb00404fc45711eebe\",\n        \"id\": \"651801fb00404fc45711eebe\"\n    }\n}"},{"id":"1ed54a6d-a25a-4a39-8690-c82c6d2c84c7","name":"Update Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": \"1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:58:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"a8-7gcq5I5yMG1GaLEsVIkc1H274sI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BUpIfgIw2arVHD%2BcNLScn%2FlxPZquU%2F7nirhtxYAtHxLPk1TvMtmYmYybOlnDFUWPg4WJ770c42mQz25NtAISz56pA3mNosFuFxcb1FzH9RqQ3GaqPVTq1wkrgPL5MuvYXTWHfMhirFGOTZjHnPSptw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec4b3def9e2e4d-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Quantity should be a string number. \",\n    \"addmsgs\": [\n        \"instance.items[0].quantity is not of a type(s) number\"\n    ]\n}"}],"_postman_id":"e91a292e-d13c-4a27-a77e-dfbbc63447b7"},{"name":"Unpause Subscription","id":"3ccbb9e0-c648-42b8-9bd8-de74c38b3743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"referenceId\": \"\"\n}"},"url":"{{base_url}}/subscription/v1.0/unpauseSubscription","description":"<p>This API is used to mark a <strong><code>PAUSED</code></strong> subscription to <strong><code>ACTIVE</code></strong>. This API updates the status of the subscription to <strong><code>ACTIVE</code></strong>. <strong><code>PAUSED</code></strong>, a subscription can be <strong><code>UNPAUSED</code></strong> to reinstate the billing. If the subscription is marked <strong><code>ACTIVE</code></strong> in the same billing cycle in which it was marked <strong><code>PAUSED</code></strong> it would not be considered <strong><code>PAUSED</code></strong> at all and the billing cycle will be considered to be used fully.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subscriptionId</td>\n<td>String Validator  <br />Validator: <code>MongoId</code></td>\n<td>Subscription Id of the subscription for which update is needed.</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>ReferenceId</code></td>\n<td>Subscription referenceId that was passed during the creation of the subscription.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> One of the parameter <strong><code>subscriptionId</code></strong> or <strong><code>referenceId</code></strong> is mandatory to pass in the request body.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the updated subscription details.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","unpauseSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"8901bff2-a303-431f-b1a2-483bcfae6890","name":"Update Subscription (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:16:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"3c7-rntoSJUWCkllJIIMEPIU5/j4UT0\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fYYdqdsH2JubiuHwgJR88iByfnv%2BsA46e7fE6Xoe6DYMFtKBHrmcECXRQ0AvRJ3bVzxzlmX%2BnEC5XeUAvZUUYegSvybK9IYsoM3%2BsQThBgPXZ8wddD5F8h%2BHOz1uCkVgPCZ1Qk2YxyF%2BFpgZNLCnTQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec0e159d252dff-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription updated successfully\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\"\n            },\n            \"email\": \"customer@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescription1\",\n                    \"quantity\": 1,\n                    \"amount\": 20\n                }\n            ]\n        },\n        \"_id\": \"651801fb00404fc45711eebe\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"TRIAL\",\n        \"amount\": \"1663.4\",\n        \"quoteAmount\": \"20\",\n        \"quoteAmt\": \"20\",\n        \"totalAmount\": \"1962.81\",\n        \"quoteCurrCode\": \"USD\",\n        \"txIds\": [],\n        \"frequency\": \"MNTH\",\n        \"maxAmount\": \"41585\",\n        \"maxQuoteAmount\": \"500\",\n        \"partialCancel\": true,\n        \"gstInclusive\": false,\n        \"createdDate\": \"2023-09-30T11:09:47.053Z\",\n        \"pendingUpdates\": {\n            \"items\": [\n                {\n                    \"name\": \"SubscriptionName1\",\n                    \"description\": \"SubscriptionDescriptionUpdated1\",\n                    \"amount\": 20,\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"subscriptionId\": \"651801fb00404fc45711eebe\",\n        \"id\": \"651801fb00404fc45711eebe\"\n    }\n}"},{"id":"e74c3847-65e8-4a7d-9224-dc56f68c35f7","name":"Update Subscription (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescriptionUpdated1\",\n            \"amount\": 20,\n            \"quantity\": \"1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/subscription/v1.0/updateSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 11:58:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"a8-7gcq5I5yMG1GaLEsVIkc1H274sI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BUpIfgIw2arVHD%2BcNLScn%2FlxPZquU%2F7nirhtxYAtHxLPk1TvMtmYmYybOlnDFUWPg4WJ770c42mQz25NtAISz56pA3mNosFuFxcb1FzH9RqQ3GaqPVTq1wkrgPL5MuvYXTWHfMhirFGOTZjHnPSptw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ec4b3def9e2e4d-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Quantity should be a string number. \",\n    \"addmsgs\": [\n        \"instance.items[0].quantity is not of a type(s) number\"\n    ]\n}"}],"_postman_id":"3ccbb9e0-c648-42b8-9bd8-de74c38b3743"},{"name":"Single Pay on Subscription","id":"42bc7a92-82c8-4999-b2da-4226e1ff94a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.google.com\",\n    \"subscriptionId\": \"651801fb00404fc45711eebe\",\n    \"mandatePay\": true,\n    \"items\": [\n        {\n            \"name\": \"SubscriptionName1\",\n            \"description\": \"SubscriptionDescription1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        }\n    ],\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\"\n    },\n    \"dayUntillDue\": 3,\n    \"reAttempt\": 2    \n}"},"url":"{{base_url}}/subscription/v1.0/singlePaymentSubscription","description":"<p>This API is used to create a new invoice on an <strong><code>ACTIVE</code></strong> subscription, that can be shared with a customer.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>subscriptionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String Mandatory<br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is transact bridge subscription Id</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>ReferenceId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner-generated ID to map a subscription. Partners can use this to query the subscriptions as well. This cannot be the same for two subscriptions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>mandatePay</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code><br />Default: <code><b>false</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If marked as <code><b>true</b></code> then the invoice will be paid through the current mandate.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>dayUntillDue</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Period of time from the issue date after which <code><b>DUE</b></code> invoice is converted into <code><b>OVERDUE</b></code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>reAttempt</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To configure how the reattempt for failed invoices be processed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>items</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Items the customer wants to buy.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>referenceId</code></td>\n<td>If the product is already created use the refereneId of that product.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code></td>\n<td>Description of the product.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong></p>\n<ol>\n<li><p>Description in the items object allows HTML syntax for customer view. Use so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n</li>\n<li><p>If <code>productReferenceId</code> is passed then <code>name</code> is not mandatory.</p>\n</li>\n</ol>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the subscriptionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> <strong><code>returnUrl</code></strong> will be a <strong>GET</strong> redirection with status, subscriptionId, and referenceId values passed in the query parameters. Partners can then use the Get Subscription API to get the full details of that session.</p>\n","urlObject":{"path":["subscription","v1.0","singlePaymentSubscription"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42bc7a92-82c8-4999-b2da-4226e1ff94a0"}],"id":"b075df15-b1ef-49ab-8871-6eaf2224dfb8","description":"<p>A subscription allows you to make recurring payments for a product. Subscriptions can be prepaid or postpaid. For creating a subscription a lot more information will be needed to configure the recurring and manage the billing cycle for a subscription.</p>\n<p>A subscription link is a shareable URL that will take your customers to a hosted payment page. A subscription link can be shared but needs to be paid before it expires (configured by the partner).</p>\n<p>The subscriptions once subscribed by the customer are reflected instantly in the panel and webhook/callbacks are also pushed to the configured URLs for all the activities done in the subscription.</p>\n<p>Since the payments are browser-based, the partner needs to set redirect URLs to where the customer will be redirected once the payment is done.</p>\n<h3 id=\"subscription-flow\">Subscription Flow</h3>\n<p>Transact Bridge has a very dynamic system that allows different types of billing cycles depending on the demands. Subscriptions can be widely categorized into two types namely <code>PREPAID</code> and <code>POSTPAID</code>.</p>\n<h5 id=\"prepaid-billing-flow\">Prepaid Billing Flow:</h5>\n<p>This type of billing is for those platforms which require the customer to pay the subscription amount in advance, and once the payment is received the services are available to the customer for consumption. This is generally used for those billing cycles that have fixed plans and are independent of resource-based billing. An example of this is Netflix, where the customer pays the subscription amount at the start of using the platform. On the renewal of the subscription, the auto-debit is also done before the access to the services.</p>\n<p>To use this type of billing flow, the Partner needs to pass <strong><code>billAtStart</code></strong>: <strong><code>true</code></strong> when creating the subscription.</p>\n<h5 id=\"postpaid-billing-flow\">Postpaid Billing Flow:</h5>\n<p>This type of billing is for those platforms that require the customer to pay the subscription amount after the services have been used. This is generally used for those billing cycles that have metered billing and are independent of resources used during the billing cycle. An example of this is Amazon Web Services, where the customer pays the subscription amount at the end of the billing cycle of using the platform.</p>\n<p>To use this type of billing flow, the Partner needs to pass <strong><code>billAtStart</code></strong>: <strong><code>false</code></strong> when creating the subscription.</p>\n<h3 id=\"configuring-subscription-efficiently\">Configuring Subscription Efficiently</h3>\n<p>There are various parameters to configure during the creation of a subscription like the payment flow, invoice flow, retry strategy, and various other things so that you can run it efficiently. It is very important to understand the meaning of each parameter and how to use it. Some of the important parameters and how they work in different subscription flows are mentioned below.</p>\n<h5 id=\"maxquoteamount\">maxQuoteAmount:</h5>\n<p>This parameter defines the maximum amount that we can auto-debit using the mandate that we have acquired from the customer.</p>\n<h5 id=\"dayuntilldue\">dayUntillDue:</h5>\n<p>For a billing cycle to work properly, the customer needs time to pay any dues that he/she might have. This parameter defines how many days are the customers allowed to pay before the invoice status changes from <strong><code>DUE</code></strong> to <strong><code>OVERDUE</code></strong>. Once this happens, the count of <strong><code>unpaidInvoices</code></strong> increases.</p>\n<h5 id=\"maxunpaidinvoices\">maxUnpaidInvoices:</h5>\n<p>Once the count of <strong><code>unpaidInvoices</code></strong> is greater than the <strong><code>maxUnpaidInvoices</code></strong> , the subscription will change the status depending on the value of <strong><code>postMaxUnpaidInvoices</code></strong>.</p>\n<h5 id=\"billingdateanchor\">billingDateAnchor:</h5>\n<p>Some types of billing cycles need to be started from a specific date of a month. An example of this is Amazon Web Services, where the invoice will always be raised on the 1st day of the month, even if the customer started using the platform on the 15th of the month.</p>\n<h5 id=\"maxunpausedinvoiceduecount\">maxUnpausedInvoiceDueCount:</h5>\n<p>This count helps to reactivate a subscription if the subscription was <strong><code>PAUSED</code></strong> due to <strong><code>OVERDUE</code></strong> invoices.</p>\n<h5 id=\"discount\">discount:</h5>\n<p>Discount object allows to give discount on a subscription, based on the type that is for life time or for a limited period or for one time only.</p>\n","_postman_id":"b075df15-b1ef-49ab-8871-6eaf2224dfb8"},{"name":"Mandates","item":[{"name":"Get Mandate","id":"c0077ff0-fc02-4197-b9f0-685ed80ae43f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mandateId\": \"66ec42db43f99d0acf5066a6\"\n}"},"url":"{{base_url}}/subscription/v1.0/getMandate","description":"<p>This API is used for getting a specific mandate. The partner can pass the _id as txId or pass the ref_id that was used in the initiation of the payment.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>mandateId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for getting mandate by its _id.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>It will retunr mandate data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","getMandate"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5ba85d62-12f1-430a-b797-dbd799b74022","name":"Get Mandate (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mandateId\": \"66ec42db43f99d0acf5066a6\"\n}"},"url":"{{base_url}}/subscription/v1.0/getMandate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Sep 2024 09:59:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"257-hEDmEtntBYenXa8J2gPpSdTH9Bo\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=%2BcfHR41FZ2cYUjm7iZpALwf3WfcpfB0ZPieoDLnePT808ugtcw4s%2FS8VmTZWbAgkZMt%2FMfqfcVUIiGuix6LWJdJEbuY6l8MvCGRat2ZvYgGDvnVll7vQPAC2EdJgUMncdeDBhurbU1jxnZv%2FNVJSSLA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c60f6700fbc8199-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"paymentDetails\": {\n            \"pspSubscriptionId\": \"1726759643428\",\n            \"upiId\": \"subtbridgesuccess@upi\",\n            \"benName\": \"subtbridgesuccess@upi\",\n            \"upiChannel\": \"COLLECT\"\n        },\n        \"_id\": \"66ec42db43f99d0acf5066a6\",\n        \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\",\n        \"txnId\": \"66ec42db43f99d0acf50669c\",\n        \"txIds\": [\"66ec42db43f99d0acf50669c\", \"66ec42db43f99d0acf50669e\"],\n        \"lastTxnStatus\": \"FAILED\",\n        \"failedAttempt\": 1,\n        \"customerId\": \"6540bdbe2ddaef33e4619973\",\n        \"payMethod\": \"UPI\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"status\": \"SUCCESS\",\n        \"amount\": \"12612\",\n        \"updatedDate\": \"2024-09-19T15:28:29.352Z\",\n        \"createdDate\": \"2024-09-19T15:27:23.436Z\",\n        \"mandateId\": \"66ec42db43f99d0acf5066a6\",\n        \"id\": \"66ec42db43f99d0acf5066a6\"\n    }\n}"}],"_postman_id":"c0077ff0-fc02-4197-b9f0-685ed80ae43f"},{"name":"Get All Mandates","id":"8571117d-d084-4a09-9021-eb3159475bdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filter\": {},\n    \"page\": 1\n}"},"url":"{{base_url}}/subscription/v1.0/getAllMandates","description":"<p>This API is used for getting all mandates.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Please check the filters allowed below</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To pass the number of page.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><code>filter</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MongoId</code></td>\n<td>To filter all the mandates of a particular customer</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code></td>\n<td>To filter all the mandates based on the current status of mandates</td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td>To filter the mandates based on the created date of the mandate.</td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td>To filter the mandates based on the created date of the mandate.</td>\n</tr>\n<tr>\n<td>subscriptionId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MongoId</code></td>\n<td>To filter all the mandates of a particular subscription.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>It will retunr mandate data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","getAllMandates"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3ca0a392-7ac1-4390-97a7-6e2f4a02b6a8","name":"Get All Mandates (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filter\": {},\n    \"page\": 1\n}"},"url":"{{base_url}}/subscription/v1.0/getAllMandates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Sep 2024 07:26:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"465-CjJNux+u2jDEqH0tJHKm24HCxnY\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=d5FTAX6mK9mm7YFRQpxUoYgxEoEogPkGVPEeG4CvlemWS0UVjq0iM0Dp7IMSYK%2BCjo0NgKK7wHEGdvCe%2F61UPIn6j3bW5JqNZZ6%2FAacTZPplZ%2FsFpxp2EICpxb%2BrTFaqUDSGpbdEme8Q7xXFLrih9Qc%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c60167bee8407a4-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"66ec42db43f99d0acf5066a6\",\n            \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\",\n            \"txnId\": \"66ec42db43f99d0acf50669c\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"payMethod\": \"UPI\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"pgCode\": \"TBMDT\",\n            \"pgProvider\": \"TBMD\",\n            \"status\": \"SUCCESS\",\n            \"paymentDetails\": {\n                \"pspSubscriptionId\": \"1726759643428\",\n                \"upiId\": \"subtbridgesuccess@upi\",\n                \"benName\": \"subtbridgesuccess@upi\",\n                \"upiChannel\": \"COLLECT\"\n            },\n            \"updatedDate\": \"2024-09-19T15:28:29.352Z\",\n            \"createdDate\": \"2024-09-19T15:27:23.436Z\",\n            \"amount\": \"12612\"\n        },\n        {\n            \"_id\": \"66ec3d4143f99d0acf5064a2\",\n            \"subscriptionId\": \"66ec3c74fb1ef415554532fc\",\n            \"txnId\": \"66ec3d4143f99d0acf506496\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"payMethod\": \"UPI\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"pgCode\": \"PHPYT\",\n            \"pgProvider\": \"PHPY\",\n            \"status\": \"CREATED\",\n            \"paymentDetails\": {\n                \"pspSubscriptionId\": \"OM2409192033297374196693\",\n                \"upiId\": \"subtbridgesuccess@upi\",\n                \"benName\": \"subtbridgesuccess@upi\",\n                \"upiChannel\": \"COLLECT\"\n            },\n            \"updatedDate\": \"2024-09-19T15:03:29.867Z\",\n            \"createdDate\": \"2024-09-19T15:03:29.867Z\",\n            \"amount\": \"12610.5\"\n        }\n    ],\n    \"hasMore\": false,\n    \"maxPageSize\": 200\n}"}],"_postman_id":"8571117d-d084-4a09-9021-eb3159475bdd"},{"name":"Add Mandate","id":"b7abc54b-bf8a-4569-8f65-46b613600d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\"\n}"},"url":"{{base_url}}/subscription/v1.0/updateSubscriptionMandate","description":"<p>This API is used to update a specific subscription with a new payment method. Only <strong><code>ACTIVE</code></strong> or <strong><code>PAUSED</code></strong> subscriptions can be updated with a new payment method. If a subscription is with <strong><code>cancelAtEnd</code></strong>: <strong><code>true</code></strong> then also it is not possible to call this API. Since subscriptions will be automatically canceled at the end of the cycle, adding a new mandate will be useless.</p>\n<p>For <strong><code>PENDING</code></strong> subscriptions (which have not been activated once) always use <strong><code>payURL</code></strong> provided in the <a href=\"#2390e6f2-dabf-4ff5-b1a5-112ab1eb8a4c\">Get Subscription API</a>.</p>\n<p>For subscriptions that are in terminal states, this API will not work as well.</p>\n<p><strong>Note</strong>: Update Mandate by default only allows adding a new mandate for a running subscription. If the partner wants, it is possible to request a mandate with the last due unpaid invoice amount. This way the partner will have a new mandate for auto-debit and an unpaid invoice will be cleared. This feature can be enabled by requesting the administrative team.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>subscriptionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Subscription which requires mandate to be updated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the mandate is completed.<br /><b>Note</b>: If this is not passed, we take subscriptrion returnUrl and redirect the customer to that url.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pendingUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the mandate is still in pending state the customer will be redirected to this URL.<br /><b>NOTE</b>: If returnUrl is passed, this parameter is not mandatory.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>successUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the mandate is successful state the customer will be redirected to this URL.<br /><b>NOTE</b>: If returnUrl is passed, this parameter is not mandatory.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>failedUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the mandate is in failed state the customer will be redirected to this URL.<br /><b>NOTE</b>: If returnUrl is passed, this parameter is not mandatory</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the mandate id and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["subscription","v1.0","updateSubscriptionMandate"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7558d777-3033-4c62-9568-6f1abf62a20c","name":"Update Mandate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\"\n}"},"url":"{{base_url}}/subscription/v1.0/updateSubscriptionMandate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Sep 2024 14:33:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"f0-kMkrrDqZ3ALUndhZzZr/sTYktac\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=QGcWchdVlQgSb7sash8A9X3DR%2FII0eWL9KtR3voBuCF57HzHKMbJg3cOWt9sgoa4%2FXUE0kkHoXTkL3%2FkFIVBbpP3NmLgdja98mRaV1vDn5ZbNmF2R%2BllyC1iNHliZGLjxxsEaLaj%2B07c68EcMi%2BqRt0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c837df06aa13897-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Subscription update mandate called successfully\",\n    \"data\": {\n        \"mandateId\": \"66f2cdcf55ee551f221409fb\",\n        \"payUrl\": \"https://sandbox.transactbridge.com/customer/mandate?mandateId=66f2cdcf55ee551f221409fb\"\n    }\n}"}],"_postman_id":"b7abc54b-bf8a-4569-8f65-46b613600d47"}],"id":"5c185f8d-1122-4ca3-bca4-50b717ed88d2","description":"<p>Mandates allow us to auto-debit the amount from the customer's bank account. Mandate transactions can be of ₹ 2 value for subscriptions with <strong><code>billAtStart</code></strong> marked as <strong><code>false</code></strong> or the actual amount of subscription value for those with <strong><code>billAtStart</code></strong> marked as <strong><code>true</code></strong>.</p>\n<p>In India, a mandate needs a minimum of 24 hours from the bank to get permission to initiate auto-debit. So, if on the 1st of the month, we post a request to the bank to ask permission for an auto-debit amount from the customer's bank account, the bank will notify the customer about the due amount, and after 24 hours we will give permission to invoke auto-debit on the customer's bank account and after that we will be able to deduct the amount. So on the 2nd of the month, we will try to deduct the money from the customer's bank account.</p>\n<p>A mandate can be canceled by the end-user using his/her banking app. If a customer has cancelled his mandate we push this event to the mandate web-hook configured by the partner. It is a good practice to check periodically if the mandate linked with the subscription is still in <strong><code>ACTIVE</code></strong> state or not. If not the customer should be prompted to add a new mandate to make sure the subscription remains active. The partner can ask for a new mandate using <a href=\"#b7abc54b-bf8a-4569-8f65-46b613600d47\">Update Mandate API</a>.</p>\n","_postman_id":"5c185f8d-1122-4ca3-bca4-50b717ed88d2"},{"name":"Invoices","item":[{"name":"Get Invoice","id":"4f9b7a56-2989-4fd9-b99c-fb5a825c95df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"651ae46300404fc45711f2c2\"\n}"},"url":"{{base_url}}/invoice/v1.0/getInvoice","description":"<p>Invoices are created automatically once the payment is successful for prepaid subscriptions and one-time payments. Created invoices can be fetched using this API. Invoices that are in <code>DRAFT</code> status can also be fetched and can be updated before approving the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Optional</code></td>\n<td>invoice ID</td>\n</tr>\n<tr>\n<td>billingSessionId</td>\n<td>String <code>Optional</code></td>\n<td>Session ID for which invoice has been completely paid.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: invoiceId or billingSessionId one of the parameters is mandatory.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","getInvoice"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"92d4a357-7f81-4c61-9c64-83e390a134c0","name":"Get Invoice (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"651ae46300404fc45711f2c2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/invoice/v1.0/getInvoice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Oct 2023 20:45:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"cfd-ZG5O6X0r44zbHUWes6CwhjVyw0U\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jwPQsqR8ZId%2Ffbf8g7hFVQ67e4K1jZ54PRsWMGaw%2FpS7BOgjEjoeryHppBasVsTcqrbCMwm8zAsPkKAW4SoC1q6zg0wnFI7PZ9qcRUgcklDUuww%2F9V%2FEmus2eQrZfDuLv6%2FwfA0SQZUGSgwbCJ8X1g%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ffca1e3b9a1ffd-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"paymentDetails\": {\n            \"payData\": \"de**sh@ybl\",\n            \"payMethod\": \"UPI\"\n        },\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"line1\": \"Tet\",\n                \"line2\": \"asdf\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"Product Name 1 with very long name\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 2\n                },\n                {\n                    \"name\": \"Product Name 2\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 10\n                }\n            ],\n            \"phoneNo\": \"+91-8923343434\"\n        },\n        \"_id\": \"651ae46300404fc45711f2c2\",\n        \"type\": \"INVOICE\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n        \"subscriptionId\": null,\n        \"billingSessionId\": \"651ae3bfbc2aaa70e5fcc90f\",\n        \"serviceStart\": \"2023-10-02T15:37:35.911Z\",\n        \"serviceEnd\": \"2023-10-02T15:37:35.911Z\",\n        \"issueDate\": \"2023-10-02T15:37:35.911Z\",\n        \"dueDate\": \"2023-10-02T15:40:19.645Z\",\n        \"pfoSrNo\": \"000005\",\n        \"pfoSrPreText\": \"PRO/2023-24\",\n        \"status\": \"PAID\",\n        \"txIds\": [\n            {\n                \"billDetails\": {\n                    \"shipTo\": {\n                        \"name\": \"ABCS\",\n                        \"postalCode\": \"110001\"\n                    },\n                    \"billTo\": {\n                        \"name\": \"XYZ\",\n                        \"city\": \"CENTRAL DELHI\",\n                        \"postalCode\": \"110001\",\n                        \"state\": \"Delhi\",\n                        \"country\": \"INDIA\",\n                        \"line1\": \"Tet\",\n                        \"line2\": \"asdf\"\n                    },\n                    \"email\": \"customer@merchant.com\",\n                    \"name\": \"XYZ\",\n                    \"items\": [\n                        {\n                            \"name\": \"Product Name 1 with very long name\",\n                            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                            \"quantity\": 1,\n                            \"amount\": 2\n                        },\n                        {\n                            \"name\": \"Product Name 2\",\n                            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                            \"quantity\": 1,\n                            \"amount\": 10\n                        }\n                    ],\n                    \"phoneNo\": \"+91-8923343434\"\n                },\n                \"paymentDetails\": {\n                    \"payMethod\": \"UPI\",\n                    \"saveForLater\": true,\n                    \"upiId\": \"devesh@ybl\",\n                    \"pgCode\": \"PHPYT\",\n                    \"pgProvider\": \"PHPY\",\n                    \"paymentId\": \"T2310022109444788429534\",\n                    \"paymentMethodId\": \"651ae46300404fc45711f2b5\"\n                },\n                \"_id\": \"651ae44000404fc45711f282\",\n                \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n                \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n                \"currId\": \"65141792ffb2d664bd9e4dfc\",\n                \"code\": \"INR\",\n                \"status\": \"SUCCESS\",\n                \"type\": \"DEPOSIT\",\n                \"txSubStatus\": \"CAPTURED\",\n                \"quoteAmount\": \"12\",\n                \"quoteAmt\": \"12\",\n                \"quoteCurrCode\": \"USD\",\n                \"isSettled\": false,\n                \"referenceId\": \"651ae3bfbc2aaa70e5fcc90f_0\",\n                \"internalTxIds\": [],\n                \"returnUrl\": \"https://www.transactbridge.com/demo\",\n                \"remark\": null,\n                \"gstInclusive\": false,\n                \"comment\": [],\n                \"createdDate\": \"2023-10-02T15:39:44.050Z\",\n                \"referenceNo\": \"1696261219577\",\n                \"successDate\": \"2023-10-02T15:40:19.601Z\",\n                \"txId\": \"651ae44000404fc45711f282\",\n                \"id\": \"651ae44000404fc45711f282\"\n            }\n        ],\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"quoteCurrCode\": \"USD\",\n        \"gstInclusive\": false,\n        \"notifiedRecurring\": false,\n        \"subStatus\": \"CAPTURED\",\n        \"createdDate\": \"2023-10-02T15:40:19.649Z\",\n        \"paidDate\": \"2023-10-02T15:40:19.661Z\",\n        \"successTxnId\": \"651ae44000404fc45711f282\",\n        \"taxSrNo\": \"000005\",\n        \"taxSrPreText\": \"TAX/2023-24\",\n        \"quoteAmount\": \"12\",\n        \"quoteAmt\": \"12\",\n        \"invoiceId\": \"651ae46300404fc45711f2c2\",\n        \"id\": \"651ae46300404fc45711f2c2\",\n        \"payUrl\": \"https://sandbox.transactbridge.com/customer/product?subscriptionId=651ae46300404fc45711f2c2\"\n    }\n}"},{"id":"347de099-e07b-459f-9524-bdd10030d938","name":"Get Invoice (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"651ae46300404fc45711f2c3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/invoice/v1.0/getInvoice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Oct 2023 20:45:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"47-oDv23qlS5t2BYQu3hu4Cxz6anIU\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Nrdzp1V2EefFapbqmh98senjTocANxqVNYprx%2FylpupWkJ1CjKSFzlK%2B3%2FxUPw0jCQD%2BEHtPmmaVCv9VkkcZLTeuB%2FgCaNByTX5S9ek2VsVAShaSGz4sMeiSRNUNaU7NeRKlFRX5qX5PW2mjN2jeGQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ffca90e9049c24-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Invoice Data is not found.\"\n}"}],"_postman_id":"4f9b7a56-2989-4fd9-b99c-fb5a825c95df"},{"name":"Get All Invoice","id":"46ff3912-41ef-4be8-ac89-ca1ce5da3a82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/invoice/v1.0/getAllInvoice","description":"<p>All the invoices</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Optional</code></td>\n<td>invoice ID</td>\n</tr>\n<tr>\n<td>billingSessionId</td>\n<td>String <code>Optional</code></td>\n<td>Session ID for which invoices need to be filtered completely <code>PAID</code>.</td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>String <code>Optional</code></td>\n<td>Filter invoices for a particular <code>customerId</code>.</td>\n</tr>\n<tr>\n<td>subscriptionId</td>\n<td>String <code>Optional</code></td>\n<td>Subscription ID for which invoices need to be filtered</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>String <code>Optional</code></td>\n<td>Different filters can be applied to query the sessions. You can see the allowed filter parameters after this table.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>Number <code>Optional</code></td>\n<td>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: invoiceId or billingSessionId one of the parameters is mandatory.</p>\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>String <code>Optional</code>  <br />Enums: <strong><code>INVOICE</code></strong>, <strong><code>CREDIT_NOTE</code></strong>, <strong><code>PROFORMA</code></strong></td>\n<td>To filter according to the type of invoice</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enums: <strong><code>DRAFT</code></strong>, <strong><code>DUE</code></strong> , <strong><code>OVERDUE</code></strong>, <strong><code>PAID</code></strong>, <strong><code>UNPAID</code></strong>, <strong><code>CANCELLED</code></strong>, <strong><code>APPROVED</code></strong>, <strong><code>VOID</code></strong></td>\n<td>To filter according to the status of the invoice</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","getAllInvoice"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9879f629-c87e-4c5b-b991-109a396f2ccc","name":"Get All Invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/invoice/v1.0/getAllInvoice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Oct 2023 20:44:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"6e4-+gU2NcsJbUZnTjpqVEj0/E/be00\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=s%2BJY07KURpDZqKhPNNZr57cpVlAQ2%2BvuPMarSej3u4Uz0qV%2BH50DlS0PrdlRLaO2o7z0llo9jKvecLPyxKPSt8KvwrQVh6HcoM1%2BQsqicG1P2dUK44qTp9wVdnPApzwtEO5yivy5HKKHwe9cE8j6Yw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ffc8a29a8657a2-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"651ae46300404fc45711f2c2\",\n            \"type\": \"INVOICE\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n            \"subscriptionId\": null,\n            \"billingSessionId\": \"651ae3bfbc2aaa70e5fcc90f\",\n            \"serviceStart\": \"2023-10-02T15:37:35.911Z\",\n            \"serviceEnd\": \"2023-10-02T15:37:35.911Z\",\n            \"issueDate\": \"2023-10-02T15:37:35.911Z\",\n            \"dueDate\": \"2023-10-02T15:40:19.645Z\",\n            \"pfoSrNo\": \"000005\",\n            \"pfoSrPreText\": \"PRO/2023-24\",\n            \"status\": \"PAID\",\n            \"billDetails\": {\n                \"email\": \"customer@merchant.com\",\n                \"name\": \"XYZ\",\n                \"shipTo\": {\n                    \"name\": \"ABCS\",\n                    \"postalCode\": \"110001\"\n                },\n                \"billTo\": {\n                    \"name\": \"XYZ\",\n                    \"line1\": \"Tet\",\n                    \"line2\": \"asdf\",\n                    \"city\": \"CENTRAL DELHI\",\n                    \"postalCode\": \"110001\",\n                    \"state\": \"Delhi\",\n                    \"country\": \"INDIA\"\n                },\n                \"items\": [\n                    {\n                        \"name\": \"Product Name 1 with very long name\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 2\n                    },\n                    {\n                        \"name\": \"Product Name 2\",\n                        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                        \"quantity\": 1,\n                        \"amount\": 10\n                    }\n                ],\n                \"phoneNo\": \"+91-8923343434\"\n            },\n            \"txIds\": [\n                \"651ae44000404fc45711f282\"\n            ],\n            \"currId\": \"65141792ffb2d664bd9e4dfc\",\n            \"code\": \"INR\",\n            \"quoteCurrCode\": \"USD\",\n            \"gstInclusive\": false,\n            \"notifiedRecurring\": false,\n            \"subStatus\": \"CAPTURED\",\n            \"createdDate\": \"2023-10-02T15:40:19.649Z\",\n            \"paidDate\": \"2023-10-02T15:40:19.661Z\",\n            \"paymentDetails\": {\n                \"payData\": \"de**sh@ybl\",\n                \"payMethod\": \"UPI\"\n            },\n            \"successTxnId\": \"651ae44000404fc45711f282\",\n            \"taxSrNo\": \"000005\",\n            \"taxSrPreText\": \"TAX/2023-24\",\n            \"quoteAmount\": \"12\",\n            \"quoteAmt\": \"12\",\n            \"payUrl\": \"https://sandbox.transactbridge.com/customer/product?invoiceId=651ae46300404fc45711f2c2\"\n        }\n    ],\n    \"maxPageSize\": 200,\n    \"hasMore\": false\n}"}],"_postman_id":"46ff3912-41ef-4be8-ac89-ca1ce5da3a82"},{"name":"Update Draft Invoice","id":"d41f45ed-8581-423a-b96d-af54d339c0bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"409d1e951856f5f9c2a8e325592\",\n    \"items\": [\n        {\n            \"name\": \"ProductName1\",\n            \"description\": \"ProductDescriptoin1\",\n            \"amount\": 20,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"ProductName2\",\n            \"description\": \"ProductDescriptoin2\",\n            \"amount\": 20,\n            \"quantity\": 3\n        }\n    ]\n}"},"url":"{{base_url}}/invoice/v1.0/updateDraftInvoice","description":"<p>Invoices are created automatically once the payment is successful for prepaid subscriptions and session-based payments. No invoice will be created for nonsuccessful session payments.</p>\n<p>For subscriptions, invoices that are in <code>DRAFT</code> status can be updated to change the value of the invoice depending on the resource consumed by the customer. After updating the invoice use <a href=\"https://docs.transactbridge.com/#7acd088e-1eb1-4056-94f3-d3050e69c517\">Approve Draft Invoice</a> to make the invoice available for the customer.</p>\n<p><strong>Note</strong>: This API does not work for session and only work for subscription.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Mandatory</code></td>\n<td>The ID of the invoice for which an update needs to be done.</td>\n</tr>\n<tr>\n<td>items</td>\n<td>Array of Objects <code>Mandatory</code></td>\n<td>Items that need to be updated in the invoice to change the amount of the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code></td>\n<td>Description of the product.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Updated Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","updateDraftInvoice"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d41f45ed-8581-423a-b96d-af54d339c0bf"},{"name":"Approve Draft Invoice","id":"7acd088e-1eb1-4056-94f3-d3050e69c517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"409d1e951856f5f9c2a8e325592\"\n}"},"url":"{{base_url}}/invoice/v1.0/approveInvoice","description":"<p>This API works for subscription-based invoices only. For subscriptions, on the day of subscription renewal, <strong><code>DRAFT</code></strong> invoice is created which needs the approval of the partner to make it available to the customer. Partner will get a webhook event when a new <strong><code>DRAFT</code></strong> invoice is ready for a customer. Partner needs to mark the invoice <strong><code>APPROVED</code></strong> within 24 hours or else it will be auto-marked <strong><code>APPROVED</code></strong> by the system.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Optional</code></td>\n<td>invoice ID</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: invoiceId or billingSessionId one of the parameters is mandatory.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Approved Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","approveInvoice"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7acd088e-1eb1-4056-94f3-d3050e69c517"},{"name":"Refund Invoice","id":"ed7480f6-f60d-43f7-a01d-f99b37bcee05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"\"\n}"},"url":"{{base_url}}/invoice/v1.0/createRefund","description":"<p>This API can be used to raise a refund against a particular invoice. Webhook events will be pushed for any refund status updates. The response of this API is the Refund Transaction created against the invoice. Once the Refund transaction is marked successful, a credit note will be issued. <strong>Get Transaction API</strong> can also be used to check the refund transaction status.</p>\n<p><strong>Note</strong>: For Sandbox Environment, the refund will auto-process in 10 seconds after the request initiation.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Mandatory</code></td>\n<td>invoice ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>Array of Object <code>Optional</code></td>\n<td>Comments for future use</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Optional</code></td>\n<td>Partner's reference ID</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>String <code>Optional</code></td>\n<td>Mode of payment</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Object <code>Optional</code></td>\n<td>To add meta params in the session. They will be passed in the webhook and query API as well.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with a max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with a max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with a max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","createRefund"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"14f03d40-650a-47a0-abf9-a03267a0c09c","name":"Refund Invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"650055a461af4506d7e038e6\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/invoice/v1.0/createRefund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=2628000;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1558"},{"key":"ETag","value":"W/\"616-y+n9l/e3Mtdznpw8wV867GCrqMM\""},{"key":"Date","value":"Tue, 12 Sep 2023 12:19:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Return request created successfully\",\n    \"data\": {\n        \"_id\": \"6500574313a707b47d0f859a\",\n        \"midId\": null,\n        \"merchantId\": \"643cc0b8a338435e92c5290f\",\n        \"subUserId\": null,\n        \"customerId\": \"64eebf46f40680b1ab216d5a\",\n        \"currId\": \"64208f428d2b032c4a113593\",\n        \"code\": \"INR\",\n        \"status\": \"PENDING\",\n        \"type\": \"REFUND\",\n        \"txSubStatus\": \"REFUND_INITIATED\",\n        \"amount\": \"257.97\",\n        \"totalAmount\": \"304.4\",\n        \"settleAmount\": \"304.4\",\n        \"quoteAmount\": \"3\",\n        \"quoteCurrCode\": \"USD\",\n        \"quoteCurrId\": \"643cc0b8a338435e92c52918\",\n        \"fxQuote\": \"85.99\",\n        \"txFee\": \"0\",\n        \"isSettled\": false,\n        \"billingSessionId\": \"650053de409ef7d8b6441643\",\n        \"invoiceId\": \"650055a461af4506d7e038e6\",\n        \"billDetails\": {\n            \"email\": \"newcustomer5@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"phoneNo\": \"+91-9354952104\",\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"line1\": \"32 F Block Sector 51\",\n                \"line2\": \"noida\",\n                \"city\": \"GAUTAM BUDDHA NAGAR\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"items\": [\n                {\n                    \"name\": \"ProductName1\",\n                    \"description\": \"ProductDescriptoin1\",\n                    \"quantity\": 3,\n                    \"amount\": 1\n                }\n            ],\n            \"taxIdentity\": \"GKKPS8444G\"\n        },\n        \"tax\": {\n            \"taxes\": []\n        },\n        \"internalTxId\": \"6500559e61af4506d7e038aa\",\n        \"internalTxIds\": [],\n        \"paymentDetails\": {\n            \"payMethod\": \"UPI\",\n            \"upiId\": \"tbtestsurya@ybl\",\n            \"paymentId\": \"T2309121742152606148498\",\n            \"pgCode\": \"PHPYT\",\n            \"pgProvider\": \"PHPY\"\n        },\n        \"remark\": null,\n        \"systemComment\": [],\n        \"feesExclusive\": false,\n        \"txSubType\": \"ONE-TIME\",\n        \"isMandate\": false,\n        \"deleted\": false,\n        \"charges\": [],\n        \"comment\": [],\n        \"createdDate\": \"2023-09-12T12:19:15.061Z\",\n        \"updatedDate\": \"2023-09-12T12:19:15.061Z\",\n        \"__v\": 0,\n        \"txId\": \"6500574313a707b47d0f859a\",\n        \"id\": \"6500574313a707b47d0f859a\"\n    }\n}"}],"_postman_id":"ed7480f6-f60d-43f7-a01d-f99b37bcee05"},{"name":"Email Invoice","id":"8fcf1aed-340d-44e8-97fe-8006e488154c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"65460940325fddfbb18344f9\"\n}"},"url":"{{base_url}}/invoice/v1.0/sendInvoiceEmail","description":"<p>This API can be used to send an invoice in email to the customer.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Mandatory</code></td>\n<td>invoice ID</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>if the invoice is sent or not</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["invoice","v1.0","sendInvoiceEmail"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"1beb4387-c842-42fd-aae6-3b8941b61f3e","name":"Email Invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"invoiceId\": \"65460940325fddfbb18344f9\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/invoice/v1.0/sendInvoiceEmail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 04 Nov 2023 18:01:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"44-PfpdNdaHGQuJc7ym9LCLP1gqns4\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8MMkap5UZQgUznUh8h50ikFS0TbLXuIh3a7ZRd40cieBhwk%2Fi5IgQobPznJmIu6xTCBV%2B6Ud5y2EGbDwlLzXRUDG5yUtOROuz%2BrEb9lCzOslPhpEXHpkWqPvXbfdRGyBUodde0wJyvpyvoCm92hwlwM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"820ec3a08bab42e0-EWR"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"sent\": true\n    }\n}"}],"_postman_id":"8fcf1aed-340d-44e8-97fe-8006e488154c"}],"id":"302b31ac-1f6a-456d-9155-1fa3fd54014f","description":"<p>Transact Bridge provides full billing management for both one-time and subscription-based invoices.</p>\n<p>For the one-time payments, invoices are generated for the paid transactions. For the subscription-based flow, invoices get created on a pre-defined frequency in the <code>DRAFT</code> status. We send a webhook once the invoice is created in <code>DRAFT</code> status and then the partner approves the invoice using Approve Invoice API which converts that invoice to <code>DUE</code> status.</p>\n","_postman_id":"302b31ac-1f6a-456d-9155-1fa3fd54014f"},{"name":"Transactions","item":[{"name":"Get Transaction","id":"b52481dd-9f32-4317-a881-e2ccce1af38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"txId\": \"651ae44000404fc45711f282\"\n}"},"url":"{{base_url}}/transaction/v1.0/getTransaction","description":"<p>This API is used for getting a specific transaction. The partner can pass the _id as txId or pass the ref_id that was used in the initiation of the payment.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>txId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for getting transactions by its _id.<br />Ex: \"60070893f0112543a139c559\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for getting transactions by its partner reference id.<br />eg: \"60070893f0112543a139c559\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>txHash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Acquirer reference id</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note</strong>: txId or referenceId or txHash one of the param is mandatory both cannot be empty.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>It will retunr txn data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["transaction","v1.0","getTransaction"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4ced2363-b3b0-4cc5-9e9c-2f1aabc4d108","name":"Get Transaction (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"txId\": \"651ae44000404fc45711f282\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/transaction/v1.0/getTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Oct 2023 20:43:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"642-59zGetFL64V2m1+MV94k6uWopIE\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kb17ovYtidwkBYG5Q6XgTIXXFx5sHtWqiGpPEpqZMo9H%2BPmJA4D22CzSgMHJjqdU%2BosaoeVswjSxQN4na7gmq%2BA9%2FfRG52I%2BBFkTC4sGQCalkYe2vZRoCANXXivG9ivJnLEpg2Ga5EUk0xnIce7EGw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ffc6d7ff16082c-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"ABCS\",\n                \"postalCode\": \"110001\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\",\n                \"line1\": \"Tet\",\n                \"line2\": \"asdf\"\n            },\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"name\": \"Product Name 1 with very long name\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 2\n                },\n                {\n                    \"name\": \"Product Name 2\",\n                    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n                    \"quantity\": 1,\n                    \"amount\": 10\n                }\n            ],\n            \"phoneNo\": \"+91-8923343434\"\n        },\n        \"paymentDetails\": {\n            \"payMethod\": \"UPI\",\n            \"saveForLater\": true,\n            \"upiId\": \"devesh@ybl\",\n            \"pgCode\": \"PHPYT\",\n            \"pgProvider\": \"PHPY\",\n            \"paymentId\": \"T2310022109444788429534\",\n            \"paymentMethodId\": \"651ae46300404fc45711f2b5\"\n        },\n        \"_id\": \"651ae44000404fc45711f282\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"SUCCESS\",\n        \"type\": \"DEPOSIT\",\n        \"txSubStatus\": \"CAPTURED\",\n        \"quoteAmount\": \"12\",\n        \"quoteAmt\": \"12\",\n        \"quoteCurrCode\": \"USD\",\n        \"isSettled\": false,\n        \"referenceId\": \"651ae3bfbc2aaa70e5fcc90f_0\",\n        \"internalTxIds\": [],\n        \"returnUrl\": \"https://www.transactbridge.com/demo\",\n        \"remark\": null,\n        \"gstInclusive\": false,\n        \"comment\": [],\n        \"createdDate\": \"2023-10-02T15:39:44.050Z\",\n        \"referenceNo\": \"1696261219577\",\n        \"successDate\": \"2023-10-02T15:40:19.601Z\",\n        \"txId\": \"651ae44000404fc45711f282\",\n        \"id\": \"651ae44000404fc45711f282\"\n    }\n}"},{"id":"ccc71f9b-84c1-48bc-9a2a-e42222f7e499","name":"Get Transaction (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"txId\": \"651ae44000404fc45711f283\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/transaction/v1.0/getTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Oct 2023 20:43:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"42-5O+jEXQfRgU2PUu4RYUVkbe6RtE\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dMOxC8gw%2FRs5CP8aX4q6CEM%2FQQ6VM5gOulw%2BtWFWBUDSscq1NtybPle4bterJknvynOD2lNRuUwJwmiIVc4Ucqo3yfU0vzY0LjV6gA6GDo9KAJ%2FNawQVcVnfpuTQ7lNfekT7aMrF3P0tZFMVP43PKw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80ffc79e4e9e8236-IAD"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Transaction not found\"\n}"}],"_postman_id":"b52481dd-9f32-4317-a881-e2ccce1af38f"},{"name":"Get All Txns","id":"4f577237-24d6-462d-ab77-c35411c4d082","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filter\": {\n        \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\"\n    }\n}"},"url":"{{base_url}}/transaction/v1.0/getDepositTxs","description":"<p>This API is used for getting transactions with filters that can be applied. The data is paginated.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for passing filters.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>For pagination</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note</strong>: txId or referenceId or txHash one of the param is mandatory both cannot be empty.</p>\n<blockquote>\n<p><code>filter</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MongoId</code></td>\n<td>To filter all the mandates of a particular customer</td>\n</tr>\n<tr>\n<td>txSubType</td>\n<td>String <code>Optional</code>  <br />Enum: txSubType</td>\n<td>To filter the transactions on the basis of the <strong><code>txSubType</code></strong>.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enum: txStatus</td>\n<td>To filter all the mandates based on the current status of mandates</td>\n</tr>\n<tr>\n<td>txSubStatus</td>\n<td>String <code>Optional</code>  <br />Enum: txSubStatus</td>\n<td>To filter the transactions on the basis of the <strong><code>txSubStatus</code></strong>.</td>\n</tr>\n<tr>\n<td>isSettled</td>\n<td>Boolean <code>Optional</code></td>\n<td>To filter all the transactions that have been settled through invoice.</td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td>To filter the mandates based on the created date of the mandate.</td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td>To filter the mandates based on the created date of the mandate.</td>\n</tr>\n<tr>\n<td>subscriptionId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MongoId</code></td>\n<td>To filter all the mandates of a particular subscription.</td>\n</tr>\n<tr>\n<td>isMandate</td>\n<td>Boolean <code>Optional</code></td>\n<td>To filter all the transactions that are mandate transactions</td>\n</tr>\n<tr>\n<td>isBillingSession</td>\n<td>Boolean <code>Optional</code></td>\n<td>To filter all the billing session transactions</td>\n</tr>\n<tr>\n<td>isSubscription</td>\n<td>Boolean <code>Optional</code></td>\n<td>To filter all the subscription transactions</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>It will retunr txn data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["transaction","v1.0","getDepositTxs"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7a35ac9b-b906-40cf-9368-10d600d201ec","name":"Get All Transactions (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/transaction/v1.0/getDepositTxs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Jul 2024 11:23:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"c03d-ypyIXLOIJD0sRsUuuE3Xy47bgLU\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=UKHEE9OoxuAV9DOfSBfnX4zptPFQkXj0jeu1VBL3S33Fr27Dwyv1F0ydSXwY29kWL0NHJ5n4uzIdZ8m5Wbi%2FFNMCY9BuO0BSGCgboL3QuMHVOVrblxlEOPuzmKqZ3e7iWF2MQePodf4ANifeV8lEZcE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8a730edd7aff3cc2-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"6697704505a7406725e40665\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"66976fca05a7406725e40544_0\",\n            \"billingSessionId\": \"66976fca05a7406725e40544\",\n            \"paymentDetails\": {\n                \"payMethod\": \"DC\"\n            },\n            \"meta\": {\n                \"param1\": \"tste1123\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-07-17T07:18:29.409Z\",\n            \"referenceNo\": \"1721200769992\",\n            \"invoiceId\": \"669770821c6713536a561345\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": \"0\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"98.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-07-17T07:19:30.078Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"668902befa01e1269290fad6\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6543f66cecf245a7ae833b1c\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6689027afa01e1269290fa5e_0\",\n            \"billingSessionId\": \"6689027afa01e1269290fa5e\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1720255097\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-07-06T08:39:26.726Z\",\n            \"referenceNo\": \"1720255183962\",\n            \"invoiceId\": \"668902d052275516e3c9bb5c\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"196.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-07-06T08:39:43.992Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"669e15e62bb000a6b252de8f\",\n            \"refund_initiatedDate\": \"2024-07-22T08:18:46.990Z\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"PENDING\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6679251355d8401271b04f34\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"FAILED\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"VOID\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"667925075a8fd1e7781a16c8_0\",\n            \"billingSessionId\": \"667925075a8fd1e7781a16c8\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1719215366\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-24T07:49:39.330Z\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"196.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"667153c1a861d99e61e46f2b\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6542ac5416bde8db3c5a6191\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"667152f4a861d99e61e46e19\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-18T09:30:41.016Z\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"98.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6671532aa861d99e61e46e51\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6542ac5416bde8db3c5a6191\",\n            \"status\": \"FAILED\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"VOID\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"667152f4a861d99e61e46e19\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-18T09:28:10.494Z\",\n            \"referenceNo\": \"1718702958943\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"98.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66714e5cd863277a762cf5bb\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6542ac5416bde8db3c5a6191\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"66714df2d863277a762cf583\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-18T09:07:40.330Z\",\n            \"referenceNo\": \"1718701722700\",\n            \"invoiceId\": \"66714e9bf84f560e29d5b158\",\n            \"quoteAmt\": \"101\",\n            \"quoteAmount\": \"101\",\n            \"totalTax\": \"18.19\",\n            \"totalAmount\": \"119.19\",\n            \"txQuoteFee\": \"1.1919\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"99.81\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-06-18T09:08:42.724Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"666c354e322199a00818d13f\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540de1405f2303f7283e772\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"666c3501322199a00818d0c8_0\",\n            \"billingSessionId\": \"666c3501322199a00818d0c8\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1718367489\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-14T12:19:26.599Z\",\n            \"referenceNo\": \"1718367577692\",\n            \"invoiceId\": \"666c3559f84f560e29d5ad28\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"196.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-06-14T12:19:37.715Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"666bf6b48c65cc00500fa9fa\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"1718351540378\",\n            \"subscriptionId\": \"666bd5e28c65cc00500fa73d\",\n            \"invoiceId\": \"666bf4f88c65cc00500fa991\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-14T07:52:20.427Z\",\n            \"referenceNo\": \"1718351557501\",\n            \"quoteAmt\": \"20\",\n            \"quoteAmount\": \"20\",\n            \"totalTax\": \"3.61\",\n            \"totalAmount\": \"23.61\",\n            \"txQuoteFee\": \"0.2361\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"19.77\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-06-14T07:52:37.521Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6667e7fc463e1b4e4f573020\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"6666d103463e1b4e4f572877\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-06-11T06:00:28.748Z\",\n            \"referenceNo\": \"1718085640047\",\n            \"invoiceId\": \"6667e8084ffadfaf308e99d4\",\n            \"quoteAmt\": \"10\",\n            \"quoteAmount\": \"10\",\n            \"totalTax\": \"1.81\",\n            \"totalAmount\": \"11.81\",\n            \"txQuoteFee\": \"0.1181\",\n            \"txCostQuoteFee\": null,\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"9.89\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-06-11T06:00:40.072Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"665878c8e680b781708664e3\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"665876b4409759c357d84445_0\",\n            \"subscriptionId\": \"66587607409759c357d84350\",\n            \"invoiceId\": \"665876b4409759c357d84445\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-30T13:02:00.926Z\",\n            \"referenceNo\": \"1717074722442\",\n            \"quoteAmt\": \"111\",\n            \"quoteAmount\": \"111\",\n            \"totalTax\": \"19.99\",\n            \"totalAmount\": \"130.99\",\n            \"txQuoteFee\": \"1.3099\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"98.3901\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": \"1.3099\",\n            \"successDate\": \"2024-05-30T13:12:02.509Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66587621409759c357d84396\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"66587607409759c357d84350\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-30T12:50:41.521Z\",\n            \"referenceNo\": \"1717073520917\",\n            \"invoiceId\": \"665876713c94a1b7d722bff8\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"88.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-30T12:52:00.980Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66583b04b99d51a3bfdc6c99\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"66583a9de3044ee2bb17dded\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-30T08:38:28.706Z\",\n            \"referenceNo\": \"1717058318747\",\n            \"invoiceId\": \"66583b0f0fcfd6936ecbe9be\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"88.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-30T08:38:38.796Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6656e26629e7fe36e91845f4\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6656e26629e7fe36e91845c6\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6656e24929e7fe36e918456d_0\",\n            \"billingSessionId\": \"6656e24929e7fe36e918456d\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1716970057\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-29T08:08:06.635Z\",\n            \"referenceNo\": \"1716970108084\",\n            \"invoiceId\": \"6656e27cef0979ac9c6f01a0\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-29T08:08:28.111Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6655412f5ee3917d4d14888c\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"665541055ee3917d4d1487e5\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"665540f6d90184b768dc57c2_1\",\n            \"billingSessionId\": \"665540f6d90184b768dc57c2\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1716863222\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-28T02:27:59.213Z\",\n            \"referenceNo\": \"1716863349094\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-28T02:29:09.128Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"665541055ee3917d4d148813\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"665541055ee3917d4d1487e5\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"665540f6d90184b768dc57c2_0\",\n            \"billingSessionId\": \"665540f6d90184b768dc57c2\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1716863222\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-28T02:27:17.906Z\",\n            \"referenceNo\": \"1716863298688\",\n            \"invoiceId\": \"665541432c53733489e6d0fc\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-28T02:28:18.864Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6654928ea1a2e747c41505e0\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6654927eec98a04a239fb05f_0\",\n            \"billingSessionId\": \"6654927eec98a04a239fb05f\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1716818558\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-27T14:02:54.736Z\",\n            \"referenceNo\": \"1716818592605\",\n            \"invoiceId\": \"665492a09608b14558e1a29a\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-27T14:03:12.632Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6654311ea1a2e747c4150401\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"665430c4a1a2e747c41503a1_0\",\n            \"billingSessionId\": \"665430c4a1a2e747c41503a1\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1716793540\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-27T07:07:10.805Z\",\n            \"referenceNo\": \"1716793642561\",\n            \"invoiceId\": \"6654312a9608b14558e1a23d\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-27T07:07:22.588Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66542195a1a2e747c4150317\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"66542195a1a2e747c41502e9\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"66542145ec98a04a239fad7e_0\",\n            \"billingSessionId\": \"66542145ec98a04a239fad7e\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1716789573\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-27T06:00:53.999Z\",\n            \"referenceNo\": \"1716789721614\",\n            \"invoiceId\": \"665421d99608b14558e1a1e0\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.82\",\n            \"totalAmount\": \"234.82\",\n            \"txQuoteFee\": \"2.3482\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-27T06:02:01.655Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66541ea1ec98a04a239facbc\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6543f66cecf245a7ae833b1c\",\n            \"status\": \"PROCESSING\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"INITIATED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"66541e55a1a2e747c4150238\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-27T05:48:17.597Z\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"88.82\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"664ee395a34e99f9952d0787\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"664ee356a34e99f9952d06f9_0\",\n            \"billingSessionId\": \"664ee356a34e99f9952d06f9\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1716446038\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-23T06:35:01.402Z\",\n            \"referenceNo\": \"1716446111660\",\n            \"invoiceId\": \"664ee39fb05dd716782d7122\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-23T06:35:11.685Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"664d8e71a7bf1ac438e40071\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"664d8e03a34e99f9952cfa5a_0\",\n            \"billingSessionId\": \"664d8e03a34e99f9952cfa5a\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1716358659\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-22T06:19:29.621Z\",\n            \"referenceNo\": \"1716358779977\",\n            \"invoiceId\": \"664d8e7cb05dd716782d6e73\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-22T06:19:40.000Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66348546114735de61fd9f8a\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"66348546114735de61fd9f5c\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"663484db029a96842f414fce_0\",\n            \"billingSessionId\": \"663484db029a96842f414fce\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714717915\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-03T06:33:42.209Z\",\n            \"referenceNo\": \"1714718085608\",\n            \"invoiceId\": \"66348585c06cababcb2c3628\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-03T06:34:45.645Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"663309fd3a6397319ddfbece\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CANCELLED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"663309e63a6397319ddfbe66_0\",\n            \"billingSessionId\": \"663309e63a6397319ddfbe66\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714620902\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-02T03:35:25.725Z\",\n            \"invoiceId\": \"663309fefb16467bd051291f\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-02T03:35:25.828Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"663309b13a6397319ddfbd9d\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6633099023f240a9170f8d40_0\",\n            \"billingSessionId\": \"6633099023f240a9170f8d40\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714620815\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-02T03:34:09.800Z\",\n            \"referenceNo\": \"1714620858315\",\n            \"invoiceId\": \"663309bafb16467bd05128c5\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": \"0.59\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"39.41\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-02T03:34:18.341Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"66330c2d3a6397319ddfbfab\",\n            \"refund_initiatedDate\": \"2024-05-02T03:44:45.503Z\",\n            \"refund_successDate\": \"2024-05-02T03:44:57.047Z\",\n            \"refund_status\": \"SUCCESS\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6631cc333a6397319ddfba42\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6631cc273a6397319ddfb9cb_0\",\n            \"billingSessionId\": \"6631cc273a6397319ddfb9cb\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714539559\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-01T04:59:31.832Z\",\n            \"referenceNo\": \"1714539583261\",\n            \"invoiceId\": \"6631cc3ffb16467bd051286b\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-01T04:59:43.287Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6631cbe623f240a9170f8a5d\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6631cbcc23f240a9170f89b2_0\",\n            \"billingSessionId\": \"6631cbcc23f240a9170f89b2\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714539468\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-05-01T04:58:14.647Z\",\n            \"invoiceId\": \"6631cbe7fb16467bd05127ef\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-05-01T04:58:14.803Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"66330d673a6397319ddfc098\",\n            \"refund_initiatedDate\": \"2024-05-02T03:49:59.128Z\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"PROCESSING\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f79023f240a9170f88fe\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f7703a6397319ddfb8c7_0\",\n            \"billingSessionId\": \"6630f7703a6397319ddfb8c7\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1714485104\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:52:16.792Z\",\n            \"referenceNo\": \"1714485198392\",\n            \"invoiceId\": \"6630f7cefb16467bd0512795\",\n            \"quoteAmt\": \"149\",\n            \"quoteAmount\": \"149\",\n            \"totalTax\": \"26.83\",\n            \"totalAmount\": \"175.83\",\n            \"txQuoteFee\": \"1.7583\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"137.25\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:53:18.419Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f6863a6397319ddfb800\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CANCELLED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f66c23f240a9170f87ef_0\",\n            \"billingSessionId\": \"6630f66c23f240a9170f87ef\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714484843\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:47:50.517Z\",\n            \"invoiceId\": \"6630f686fb16467bd0512729\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9.01\",\n            \"totalAmount\": \"59.01\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:47:50.623Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f5fe23f240a9170f86e2\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f5de23f240a9170f8662_0\",\n            \"billingSessionId\": \"6630f5de23f240a9170f8662\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1714484701\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:45:34.206Z\",\n            \"referenceNo\": \"1714484797954\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9.01\",\n            \"totalAmount\": \"59.01\",\n            \"txQuoteFee\": \"0.5901\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"39.41\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:46:38.032Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f4c123f240a9170f8534\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f48e3a6397319ddfb631_0\",\n            \"billingSessionId\": \"6630f48e3a6397319ddfb631\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714484366\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:40:17.408Z\",\n            \"referenceNo\": \"1714484429446\",\n            \"invoiceId\": \"6630f4cdfb16467bd0512684\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:40:29.471Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f46f3a6397319ddfb588\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f46523f240a9170f849c_0\",\n            \"billingSessionId\": \"6630f46523f240a9170f849c\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714484324\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:38:55.706Z\",\n            \"referenceNo\": \"1714484345940\",\n            \"invoiceId\": \"6630f47afb16467bd0512627\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:39:05.969Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f43823f240a9170f83d9\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f4233a6397319ddfb4df_0\",\n            \"billingSessionId\": \"6630f4233a6397319ddfb4df\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714484259\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:38:00.714Z\",\n            \"referenceNo\": \"1714484290857\",\n            \"invoiceId\": \"6630f443fb16467bd05125ca\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:38:10.892Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630f11f23f240a9170f831f\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630f0ea3a6397319ddfb2f2_0\",\n            \"billingSessionId\": \"6630f0ea3a6397319ddfb2f2\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714483433\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:24:47.594Z\",\n            \"invoiceId\": \"6630f120fb16467bd051254e\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9.01\",\n            \"totalAmount\": \"59.01\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:24:47.740Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"663321d823f240a9170f90d1\",\n            \"refund_initiatedDate\": \"2024-05-02T05:17:12.727Z\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"PROCESSING\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630ee18b4d53308ba233eaa\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630ee0ab4d53308ba233e5d_0\",\n            \"billingSessionId\": \"6630ee0ab4d53308ba233e5d\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1714482698\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T13:11:52.451Z\",\n            \"referenceNo\": \"1714482777105\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T13:12:57.187Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630cf1a8c4dc7e36ba1759e\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630cf098c4dc7e36ba17539_0\",\n            \"billingSessionId\": \"6630cf098c4dc7e36ba17539\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714474761\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T10:59:38.592Z\",\n            \"referenceNo\": \"1714474791094\",\n            \"invoiceId\": \"6630cf279e1109790ccbcbef\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T10:59:51.115Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630bf51b4d53308ba233a36\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"IN_TRANSIT\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630bf28b4d53308ba2338fc_0\",\n            \"billingSessionId\": \"6630bf28b4d53308ba2338fc\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714470696\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T09:52:17.921Z\",\n            \"invoiceId\": \"6630bf529e1109790ccbcb07\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T09:52:18.021Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630bf0d8c4dc7e36ba17401\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6630bf0d8c4dc7e36ba173cf\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"IN_TRANSIT\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630be588c4dc7e36ba1730b_0\",\n            \"billingSessionId\": \"6630be588c4dc7e36ba1730b\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714470488\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T09:51:09.512Z\",\n            \"invoiceId\": \"6630bf0d9e1109790ccbcaad\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T09:51:09.611Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"6630bc39b4d53308ba23371e\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"6630ba2fb4d53308ba2335e2_0\",\n            \"billingSessionId\": \"6630ba2fb4d53308ba2335e2\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714469423\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-30T09:39:05.191Z\",\n            \"invoiceId\": \"6630bc399e1109790ccbca2a\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-30T09:39:05.299Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662b694a8c4dc7e36ba106d7\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"662a4f35b4d53308ba22b556\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"IN_TRANSIT\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662b693b8c4dc7e36ba10673_0\",\n            \"billingSessionId\": \"662b693b8c4dc7e36ba10673\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714121018\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-26T08:43:54.190Z\",\n            \"invoiceId\": \"662b694a9e1109790ccb8d27\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-26T08:43:54.300Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662b692c8c4dc7e36ba105e9\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"662a4f35b4d53308ba22b556\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"IN_TRANSIT\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662b68e4b4d53308ba22c13e_0\",\n            \"billingSessionId\": \"662b68e4b4d53308ba22c13e\",\n            \"paymentDetails\": {\n                \"payMethod\": \"COD\"\n            },\n            \"meta\": {\n                \"param1\": \"1714120932\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-26T08:43:24.230Z\",\n            \"invoiceId\": \"662b692c9e1109790ccb8ccd\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9.01\",\n            \"totalAmount\": \"59.01\",\n            \"txQuoteFee\": null,\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"40\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-26T08:43:24.336Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662b68b3b4d53308ba22c097\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"662a4f35b4d53308ba22b556\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662b68a08c4dc7e36ba10421_0\",\n            \"billingSessionId\": \"662b68a08c4dc7e36ba10421\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714120864\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-26T08:41:23.130Z\",\n            \"referenceNo\": \"1714120894584\",\n            \"invoiceId\": \"662b68bf9e1109790ccb8c73\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-26T08:41:34.606Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662b66d18c4dc7e36ba10368\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"651d5fc5224edf1201768ad5\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662b66a28c4dc7e36ba10283_1\",\n            \"billingSessionId\": \"662b66a28c4dc7e36ba10283\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714120354\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-26T08:33:21.831Z\",\n            \"referenceNo\": \"1714120417919\",\n            \"invoiceId\": \"662b66e39e1109790ccb8c16\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-26T08:33:37.943Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662b66c68c4dc7e36ba102fa\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"651d5fc5224edf1201768ad5\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662b66a28c4dc7e36ba10283_0\",\n            \"billingSessionId\": \"662b66a28c4dc7e36ba10283\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1714120354\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-26T08:33:10.828Z\",\n            \"referenceNo\": \"1714120466037\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-26T08:34:26.069Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"662a50a48c4dc7e36ba0fb94\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"662a4f35b4d53308ba22b556\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"662a507db4d53308ba22b606_0\",\n            \"billingSessionId\": \"662a507db4d53308ba22b606\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"1714049149\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-25T12:46:29.006Z\",\n            \"referenceNo\": \"1714049255975\",\n            \"invoiceId\": \"662a50e89e1109790ccb8a18\",\n            \"quoteAmt\": \"50\",\n            \"quoteAmount\": \"50\",\n            \"totalTax\": \"9\",\n            \"totalAmount\": \"59\",\n            \"txQuoteFee\": \"0.59\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"39.41\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-25T12:47:36.004Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"66211ab6944aaa9f0fa95309\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"661772c50102155f9e234827\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"66211a18944aaa9f0fa952c5_0\",\n            \"billingSessionId\": \"66211a18944aaa9f0fa952c5\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1713445400\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-18T13:05:58.596Z\",\n            \"referenceNo\": \"1713445626172\",\n            \"invoiceId\": \"66211afacbafcea1e5e8f075\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-18T13:07:06.255Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"661772c50102155f9e234851\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"661772c50102155f9e234827\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"661770140102155f9e23465e_0\",\n            \"billingSessionId\": \"661770140102155f9e23465e\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1712812051\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-11T05:19:01.542Z\",\n            \"referenceNo\": \"1712812803926\",\n            \"invoiceId\": \"661773041639d26a095eab65\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.83\",\n            \"totalAmount\": \"234.83\",\n            \"txQuoteFee\": \"2.3483\",\n            \"txCostQuoteFee\": \"10\",\n            \"rrQuoteFee\": null,\n            \"settleQuoteAmount\": \"186.66\",\n            \"mandateRegQuoteFee\": null,\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-04-11T05:20:03.954Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"660a9d12afe4bfd4b92b323d\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"651d5fc5224edf1201768ad5\",\n            \"status\": \"FAILED\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"VOID\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"660a9b21afe4bfd4b92b3117\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-01T11:40:02.835Z\",\n            \"quoteAmt\": \"20\",\n            \"quoteAmount\": \"20\",\n            \"totalTax\": \"3.59\",\n            \"totalAmount\": \"23.59\",\n            \"txQuoteFee\": \"0.23\",\n            \"txCostQuoteFee\": \"0.11\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"19.64\",\n            \"mandateRegQuoteFee\": \"0\",\n            \"mandateExcQuoteFee\": \"0\",\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"660a9d09afe4bfd4b92b31f0\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"651d5fc5224edf1201768ad5\",\n            \"status\": \"FAILED\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"VOID\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"660a9b21afe4bfd4b92b3117\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-01T11:39:53.520Z\",\n            \"quoteAmt\": \"20\",\n            \"quoteAmount\": \"20\",\n            \"totalTax\": \"3.59\",\n            \"totalAmount\": \"23.59\",\n            \"txQuoteFee\": \"0.23\",\n            \"txCostQuoteFee\": \"0.11\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"19.64\",\n            \"mandateRegQuoteFee\": \"0\",\n            \"mandateExcQuoteFee\": \"0\",\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"660a9d00afe4bfd4b92b31a3\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"651d5fc5224edf1201768ad5\",\n            \"status\": \"FAILED\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"VOID\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"660a9b21afe4bfd4b92b3117\",\n            \"paymentDetails\": {\n                \"payMethod\": \"NB\"\n            },\n            \"meta\": {\n                \"param1\": \"\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-04-01T11:39:44.927Z\",\n            \"quoteAmt\": \"20\",\n            \"quoteAmount\": \"20\",\n            \"totalTax\": \"3.59\",\n            \"totalAmount\": \"23.59\",\n            \"txQuoteFee\": \"0.23\",\n            \"txCostQuoteFee\": \"0.11\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"19.64\",\n            \"mandateRegQuoteFee\": \"0\",\n            \"mandateExcQuoteFee\": \"0\",\n            \"successDate\": \"\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        },\n        {\n            \"_id\": \"65d8b163e2b166aa35f54473\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"referenceId\": \"65d8b0a912a449e4fa2f559a_0\",\n            \"billingSessionId\": \"65d8b0a912a449e4fa2f559a\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\"\n            },\n            \"meta\": {\n                \"param1\": \"1708699816\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"createdDate\": \"2024-02-23T14:53:24.009Z\",\n            \"referenceNo\": \"1708700069433\",\n            \"invoiceId\": \"65d8b1a509b8c410c74b62d0\",\n            \"quoteAmt\": \"199\",\n            \"quoteAmount\": \"199\",\n            \"totalTax\": \"35.81\",\n            \"totalAmount\": \"234.81\",\n            \"txQuoteFee\": \"4.69\",\n            \"txCostQuoteFee\": \"0.12\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"194.18\",\n            \"mandateRegQuoteFee\": \"0\",\n            \"mandateExcQuoteFee\": \"0\",\n            \"successDate\": \"2024-02-23T14:54:29.507Z\",\n            \"failedDate\": \"\",\n            \"refund_txnId\": \"65d8b20312a449e4fa2f55f8\",\n            \"refund_initiatedDate\": \"2024-02-23T14:56:03.529Z\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"FAILED\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\"\n        }\n    ],\n    \"maxPageSize\": 50,\n    \"hasMore\": true\n}"},{"id":"7e8da852-e24c-493e-9a95-90d9e70b8dc9","name":"Get All Subscription Transactoins","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"filter\": {\n        \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\"\n    }\n}"},"url":"{{base_url}}/transaction/v1.0/getDepositTxs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Sep 2024 11:44:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"492-wPxrDKI/b/lA+B4j5t3ckKU8ag8\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=X3km35XwaJFbm55ki%2BAoxMZHZQQZ1evU1vqPqwCOgC2uUwYjr086w298eVkoob3IFXcAC%2BTLIqy%2F%2FOJS7I7iJkN%2FVl5%2FZQdAfH63jqCaT5fGYFBb1U8gwFlc38fAgVprLEUcoFdyGSi3aL0BHhvnZFw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8c828548f92b22b5-CDG"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"66ec42db43f99d0acf50669c\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"customerId\": \"6540bdbe2ddaef33e4619973\",\n            \"status\": \"SUCCESS\",\n            \"type\": \"DEPOSIT\",\n            \"txSubStatus\": \"CAPTURED\",\n            \"quoteCurrCode\": \"USD\",\n            \"isSettled\": false,\n            \"subscriptionId\": \"66ec1d4c43f99d0acf505f16\",\n            \"paymentDetails\": {\n                \"payMethod\": \"UPI\",\n                \"upiChannel\": \"COLLECT\"\n            },\n            \"meta\": {\n                \"param1\": \"1726750028\",\n                \"param2\": \"\",\n                \"param3\": \"\"\n            },\n            \"gstInclusive\": false,\n            \"isMandate\": false,\n            \"isBanned\": false,\n            \"createdDate\": \"2024-09-19T15:27:23.348Z\",\n            \"referenceNo\": \"1726759709271\",\n            \"invoiceId\": \"66ec431d7d46d8cefae40410\",\n            \"clientReferenceId\": \"\",\n            \"quoteAmt\": \"100\",\n            \"quoteAmount\": \"100\",\n            \"totalTax\": \"18\",\n            \"totalAmount\": \"118\",\n            \"txQuoteFee\": \"1.18\",\n            \"txCostQuoteFee\": \"0\",\n            \"rrQuoteFee\": \"0\",\n            \"settleQuoteAmount\": \"116.5\",\n            \"mandateRegQuoteFee\": \"1.5\",\n            \"mandateExcQuoteFee\": null,\n            \"successDate\": \"2024-09-19T15:28:29.309Z\",\n            \"failedDate\": \"\",\n            \"discount\": null,\n            \"refund_txnId\": \"\",\n            \"refund_initiatedDate\": \"\",\n            \"refund_successDate\": \"\",\n            \"refund_status\": \"\",\n            \"chargeback_txnId\": \"\",\n            \"chargeback_initiatedDate\": \"\",\n            \"chargeback_successDate\": \"\",\n            \"chargeback_status\": \"\",\n            \"banDate\": \"\",\n            \"email\": \"devagg19@gmail.com\"\n        }\n    ],\n    \"maxPageSize\": 50,\n    \"hasMore\": false\n}"}],"_postman_id":"4f577237-24d6-462d-ab77-c35411c4d082"},{"name":"Create Refund Txn","id":"100afe4c-435f-4af5-82e9-07f347e44c16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"txId\": \"6697704505a7406725e40665\",\n    \"referenceId\": \"refund_reference_id_101\",\n    \"comment\": [\n        {\n            \"type\": \"TEXT\",\n            \"value\": \"comment\"\n        }\n    ]\n}"},"url":"{{base_url}}/transaction/v1.0/createRefund","description":"<p>This API can be used to raise a refund against a particular invoice. Webhook events will be pushed for any refund status updates. <strong>Get Transaction API</strong> can also be used to check the refund status.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invoiceId</td>\n<td>String <code>Mandatory</code></td>\n<td>invoice ID</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>Array of Object <code>Optional</code></td>\n<td>Comments for future use</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Optional</code></td>\n<td>Partner's reference ID</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>String <code>Optional</code></td>\n<td>Mode of payment</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["transaction","v1.0","createRefund"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6d574b51-9631-450a-bca9-6b169da44a49","name":"Create Refund (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"txId\": \"6697704505a7406725e40665\",\n    \"referenceId\": \"refund_reference_id_101\",\n    \"comment\": [\n        {\n            \"type\": \"TEXT\",\n            \"value\": \"comment\"\n        }\n    ]\n}"},"url":"{{base_url}}/transaction/v1.0/createRefund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Jul 2024 11:26:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=31536000;"},{"key":"x-frame-options","value":"Deny"},{"key":"content-security-policy","value":"default-src \"self\""},{"key":"etag","value":"W/\"736-yNuzThkXJuV/b2ahaCitSzdpJPc\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=9tCwUOWsHg3rG1jmfPqGXMTymR06l0nNyXkqPzQdURcwwnlzSgFflyBqzFVt4Rugij1U1zSddaLcoD2VroOgTEE4ECJTy%2FNDTKeqZZpJjmMux1wTcNY3qfdFkiJtCYOQYsy%2BQja35wcga%2BWHQJoHYrM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8a7312bed8653cc2-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Return request created successfully\",\n    \"data\": {\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"Devesh Aggrawal\",\n                \"line1\": \"132, purana pith bazar\",\n                \"line2\": \"kota\",\n                \"city\": \"saharanpur\",\n                \"postalCode\": \"247551\",\n                \"state\": \"Uttar Pradesh\",\n                \"country\": \"INDIA\"\n            },\n            \"billTo\": {\n                \"name\": \"JOHN DOE PRIVATE LIMITED\",\n                \"line1\": \"132, purana pith bazar\",\n                \"line2\": \"kota\",\n                \"city\": \"AHMEDABAD\",\n                \"postalCode\": \"380015\",\n                \"state\": \"Gujarat\",\n                \"country\": \"INDIA\"\n            },\n            \"email\": \"devagg19@gmail.com\",\n            \"name\": \"Devesh\",\n            \"phoneNo\": \"+91-8923040473\",\n            \"items\": [\n                {\n                    \"shippable\": false,\n                    \"name\": \"test\",\n                    \"description\": \"test\",\n                    \"quantity\": 1,\n                    \"amount\": 100,\n                    \"images\": [],\n                    \"taxes\": [],\n                    \"id\": null\n                }\n            ],\n            \"taxIdentity\": \"BHGYT2132O\",\n            \"gstIdentity\": \"24AAACJ3770E2ZV\"\n        },\n        \"paymentDetails\": {\n            \"payMethod\": \"DC\",\n            \"cardBin\": \"462294\",\n            \"cardEndingNumber\": \"************6407\",\n            \"cardBeneficiary\": \"Devesh Aggrawl\",\n            \"cardNetwork\": \"VISA\",\n            \"cardNetworkCode\": 101,\n            \"paymentId\": \"T2407171248296084464811\",\n            \"pgCode\": \"PHPYT\",\n            \"pgProvider\": \"PHPY\",\n            \"source\": \"CRAWLER\",\n            \"sourceDevice\": \"WEB\",\n            \"sourceOS\": \"MAC\",\n            \"sourcePlatform\": \"CHROME\"\n        },\n        \"meta\": {\n            \"param1\": \"\",\n            \"param2\": \"\",\n            \"param3\": \"\"\n        },\n        \"_id\": \"669e41c73edd3a571583933e\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"customerId\": \"6540bdbe2ddaef33e4619973\",\n        \"status\": \"PENDING\",\n        \"type\": \"REFUND\",\n        \"txSubStatus\": \"CAPTURED\",\n        \"code\": \"INR\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"quoteCurrCode\": \"USD\",\n        \"quoteAmt\": \"100\",\n        \"quoteAmount\": \"100\",\n        \"totalQuoteAmount\": \"118\",\n        \"settleQuoteAmount\": \"102\",\n        \"txQuoteFee\": \"2\",\n        \"isSettled\": false,\n        \"referenceId\": \"refund_reference_id_101\",\n        \"internalTxId\": \"6697704505a7406725e40665\",\n        \"internalTxIds\": [],\n        \"remark\": null,\n        \"comment\": [\n            {\n                \"role\": \"MERCHANT\",\n                \"userId\": \"6517dbc413eb44ed8c817c52\",\n                \"date\": \"2024-07-22T11:25:59.941Z\",\n                \"type\": \"TEXT\",\n                \"value\": \"comment\",\n                \"id\": null\n            }\n        ],\n        \"gstInclusive\": false,\n        \"tspModule\": false,\n        \"createdDate\": \"2024-07-22T11:26:00.004Z\",\n        \"txId\": \"669e41c73edd3a571583933e\",\n        \"id\": \"669e41c73edd3a571583933e\"\n    }\n}"}],"_postman_id":"100afe4c-435f-4af5-82e9-07f347e44c16"}],"id":"838a7dec-3ab8-4feb-9533-8ef63f213b5b","description":"<p>Transactions can be of three types DEPOSITS (credits), REFUND (debits), CHARGEBACK (debits).</p>\n<p>Each payment attempt by the customer in a billing session, subscription, and invoice creates a new transaction. All the transactions created for a billing session, subscription, and invoice are linked and can be fetched individually as well. Each payment attempt can be created using a different payment method.</p>\n","_postman_id":"838a7dec-3ab8-4feb-9533-8ef63f213b5b"},{"name":"Settlements","item":[{"name":"Get Settlement","id":"6c69b730-8985-46fc-955a-0d9a052f185b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"settleId\": \"658ea50306523e5c068a737b\"\n}"},"url":"{{base_url}}/settlement/v1.0/getSettlement","description":"<p>This API is used for getting a specific settlement. The partner can pass the _id as the settleId.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>settleId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Settlement ID can be passed to get the settlement.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Settlement Object</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["settlement","v1.0","getSettlement"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"702d824c-cb7d-4dd3-bc50-273f0c6e7c0c","name":"Get Settlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"settleId\": \"658ea50306523e5c068a737b\"\n}"},"url":"{{base_url}}/settlement/v1.0/getSettlement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"673"},{"key":"ETag","value":"W/\"2a1-o9rkzv6vJnWo4pMkxA67cEZv+JE\""},{"key":"Date","value":"Thu, 19 Jun 2025 09:13:06 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"bankSettlementDetails\": {},\n        \"_id\": \"658ea50306523e5c068a737b\",\n        \"merchantId\": \"642596c8592b1d6880035084\",\n        \"status\": \"PENDING\",\n        \"quoteCurrCode\": \"INR\",\n        \"quoteCurrId\": \"64197efbc9346d2f4a2c3adc\",\n        \"depositSettleQuoteAmount\": \"100\",\n        \"chargebackSettleQuoteAmount\": \"0\",\n        \"refundSettleQuoteAmount\": \"0\",\n        \"revertSettleQuoteAmount\": \"0\",\n        \"settleQuoteAmount\": \"100\",\n        \"txQuoteFee\": \"13.65\",\n        \"txQuoteCost\": \"9\",\n        \"settleFinalQuoteAmount\": \"77.35\",\n        \"internalTxIds\": [\n            \"6583ff7f1de5644594287a77\",\n            \"65801bf81bf211e7cc2ec690\",\n            \"65802448f1c2b0384ad6d7f3\"\n        ],\n        \"createdDate\": \"2023-12-29T10:52:51.614Z\",\n        \"settleId\": \"658ea50306523e5c068a737b\",\n        \"id\": \"658ea50306523e5c068a737b\"\n    }\n}"}],"_postman_id":"6c69b730-8985-46fc-955a-0d9a052f185b"},{"name":"Get All Settlements","id":"e8295587-fe5e-40b4-b3d8-f63d5484bc4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/settlement/v1.0/getAllSettlements","description":"<p>This API can be used to get all the settlements of the partner.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the settlements. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enums: <strong><code>PROCESSING</code></strong> , <strong><code>PENDING</code></strong>, <strong><code>CANCELLED</code></strong> , <strong><code>SUCCESS</code></strong></td>\n<td>To filter according to the status of the settlement</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the settlements</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["settlement","v1.0","getAllSettlements"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d9de439c-c2bf-4033-8184-ec2d77b32759","name":"Get All Settlements","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/settlement/v1.0/getAllSettlements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"617"},{"key":"ETag","value":"W/\"269-iN6aGzQKFgPp6qQiS98qVGT+wo8\""},{"key":"Date","value":"Thu, 19 Jun 2025 09:12:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"658ea50306523e5c068a737b\",\n            \"merchantId\": \"642596c8592b1d6880035084\",\n            \"status\": \"PENDING\",\n            \"quoteCurrCode\": \"INR\",\n            \"quoteCurrId\": \"64197efbc9346d2f4a2c3adc\",\n            \"internalTxIds\": [\n                \"6583ff7f1de5644594287a77\",\n                \"65801bf81bf211e7cc2ec690\",\n                \"65802448f1c2b0384ad6d7f3\"\n            ],\n            \"createdDate\": \"2023-12-29T10:52:51.614Z\",\n            \"depositSettleQuoteAmount\": \"100.0000\",\n            \"chargebackSettleQuoteAmount\": \"0\",\n            \"refundSettleQuoteAmount\": \"0\",\n            \"revertSettleQuoteAmount\": \"0\",\n            \"settleQuoteAmount\": \"100\",\n            \"txQuoteFee\": \"13.65\",\n            \"txQuoteCost\": \"9\",\n            \"settleFinalQuoteAmount\": \"77.35\"\n        }\n    ],\n    \"maxPageSize\": 200,\n    \"hasMore\": false\n}"}],"_postman_id":"e8295587-fe5e-40b4-b3d8-f63d5484bc4f"},{"name":"Get Unsettled Balance","id":"ead97c5c-b540-42d2-ad61-9886192f59a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/settlement/v1.0/getUnsettledBalance","description":"<p>This API can be used to get the unsettled balance of the partner in real-time.</p>\n<p>NOTE: Since this API is a high processing API, there is a limit in place for 5 APIs per hour. Please make sure not to overutilize it.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>It will return the unsettled data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["settlement","v1.0","getUnsettledBalance"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"72bf6819-ed95-409f-ba4c-6d68e0c4560c","name":"Get Settlement Summary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/settlement/v1.0/getUnsettledBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"359"},{"key":"ETag","value":"W/\"167-dooHCvankZtHM9NaxRl6Lqh9fZo\""},{"key":"Date","value":"Thu, 19 Jun 2025 09:10:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"totalUnsettledAmount\": \"74276.36\",\n        \"depositAmount\": \"76051\",\n        \"refundAmount\": \"114\",\n        \"chargebackAmount\": \"205\",\n        \"revertAmount\": \"0\",\n        \"refundTxFee\": \"1.14\",\n        \"chargebackTxFee\": \"6\",\n        \"depositTxFee\": \"1153.3\",\n        \"revertFee\": \"0\",\n        \"quoteCurrCode\": \"INR\",\n        \"fromDate\": \"2024-07-10T09:28:00.825Z\",\n        \"endDate\": \"2025-06-19T09:10:37.485Z\"\n    }\n}"},{"id":"78b033c4-257e-4c2d-a672-ee6a2f158b5b","name":"Get Partner's Unsettled Balance (Aggregator)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"**Mandatory** (Optional only if Extended Signature Verification is enabled)","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"**Optional** (Mandatory only if Extended Signature Verification is enabled)","type":"text","disabled":true},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/settlement/v1.0/getUnsettledBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jan 2026 06:51:36 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"364"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"16c-27gnE8AINTOUJF6nwnjFu4WcCYE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"totalUnsettledAmount\": \"28853.65\",\n        \"depositAmount\": \"30042.26\",\n        \"refundAmount\": \"523.42\",\n        \"chargebackAmount\": \"0\",\n        \"revertAmount\": \"0\",\n        \"refundTxFee\": \"10.47\",\n        \"chargebackTxFee\": \"0\",\n        \"depositTxFee\": \"364.76\",\n        \"revertFee\": \"0\",\n        \"quoteCurrCode\": \"USD\",\n        \"fromDate\": \"2023-09-30T08:26:44.131Z\",\n        \"endDate\": \"2026-01-26T06:51:36.480Z\"\n    }\n}"}],"_postman_id":"ead97c5c-b540-42d2-ad61-9886192f59a0"}],"id":"095d59b9-d0e3-4605-b72f-94174aab38c9","description":"<p>Partner can you use these APIs to fetch the settlements in real-time.</p>\n","_postman_id":"095d59b9-d0e3-4605-b72f-94174aab38c9"},{"name":"Customers","item":[{"name":"Create Customer","id":"4a55d5b3-7c95-4b7e-acc5-8452ec10a091","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"XYZ\",\n    \"email\": \"1221123Ajay4@gmail.com\",\n    \"phoneNo\": \"91-1234567890\",\n    \"shipTo\": {\n        \"name\": \"ajag\",\n        \"postalCode\": \"201301\"\n    },\n    \"billTo\": {\n        \"name\": \"ajag77777\",\n        \"postalCode\": \"201301\"\n    }\n}"},"url":"{{base_url}}/customer/v1.0/addCustomer","description":"<p>This API is used to create a customer with unique email. Multiple customers cannot have the same <strong><code>email</code></strong>. After creating customer <strong><code>customerId</code></strong> can be used in the subsequent calls for creating billing session and subscriptions, and also to filter the data in different APIs.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String <code>Mandatory</code></td>\n<td>Customer's email. Require this to send an invoice.</td>\n</tr>\n<tr>\n<td>phoneNo</td>\n<td>String <code>Optional</code></td>\n<td>The customer's Indian phone number in the format of  <br />+91-XXXXXXXX</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer.</td>\n</tr>\n<tr>\n<td>taxIdentity</td>\n<td>String <code>Optional</code></td>\n<td>PAN number of the customer</td>\n</tr>\n<tr>\n<td>gstIdentity</td>\n<td>String <code>Optional</code></td>\n<td>If the customer is business type then GST can be used so that the business can get input credits.</td>\n</tr>\n<tr>\n<td>shipTo</td>\n<td>Object <code>Optional</code></td>\n<td>Shipping Details of the customer</td>\n</tr>\n<tr>\n<td>billTo</td>\n<td>Object <code>Optional</code></td>\n<td>Billing Details of the customer</td>\n</tr>\n<tr>\n<td>sameAsBilling</td>\n<td>Boolean <code>Optional</code></td>\n<td>To make shipping address same as billing address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> If <code>sameAsBilling</code> the parameter value is set as <code>true</code> then <code>shipTo</code> is not mandatory and the invoice will have the same shipping and billing address.</p>\n<blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer. Will be used in the invoice.</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the customer data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["customer","v1.0","addCustomer"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d5face56-8ea4-4bcb-a91a-f3ea0695272c","name":"Create Customer (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"XYZ\",\n    \"email\": \"1221123Ajay4@gmail.com\",\n    \"phoneNo\": \"91-1234567890\",\n    \"shipTo\": {\n        \"name\": \"ajag\",\n        \"postalCode\": \"201301\"\n    },\n    \"billTo\": {\n        \"name\": \"ajag77777\",\n        \"postalCode\": \"201301\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/customer/v1.0/addCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 09:35:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"228-D9B5KjCbhEBbNe7eDmqUY7S+uIk\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FI%2FJy0bI0InQ5LkLsy5LPoUwn2CWuXg9FuKcxxleG%2BNTrjmIHPRth7tDWT%2BHrhvLac2pUnEDMlfmEowmh%2Fu7Jntu0s1eHlIOSr%2BpuVoDcWDN2GQBmBpZK%2FRkGGIgxh%2Fkys1dSutuDpg8WTsqg%2BvLtw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8114ac4259b83b15-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Customer added successfully\",\n    \"data\": {\n        \"_id\": \"651e834daa623557cd583dbd\",\n        \"email\": \"1221123Ajay4@gmail.com\",\n        \"name\": \"XYZ\",\n        \"phoneNo\": \"91-1234567890\",\n        \"jwt_nonce\": 1,\n        \"isTaxIdentityMandatory\": false,\n        \"shipTo\": {\n            \"name\": \"ajag\",\n            \"postalCode\": \"201301\"\n        },\n        \"billTo\": {\n            \"name\": \"ajag77777\",\n            \"postalCode\": \"201301\",\n            \"state\": \"Uttar Pradesh\"\n        },\n        \"suspended\": false,\n        \"deleted\": false,\n        \"createdDate\": \"2023-10-05T09:35:09.252Z\",\n        \"updatedDate\": \"2023-10-05T09:35:09.252Z\",\n        \"__v\": 0,\n        \"customerId\": \"651e834daa623557cd583dbd\",\n        \"id\": \"651e834daa623557cd583dbd\"\n    }\n}"},{"id":"777577c7-68b0-4c3b-bbee-27189affffe6","name":"Create Customer (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"XYZ\",\n    \"email\": \"1221123Ajay4\",\n    \"phoneNo\": \"91-1234567890\",\n    \"shipTo\": {\n        \"name\": \"ajag\",\n        \"postalCode\": \"201301\"\n    },\n    \"billTo\": {\n        \"name\": \"ajag77777\",\n        \"postalCode\": \"201301\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/customer/v1.0/addCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 09:36:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"aa-qeO7HXCBRPW7Yk0Xnex3RK9N+5U\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I49hI9ApTYwzWu52pcaIm4aaWz1IJMKhm7CoDoMDX6EzHmisSuxYL3LyJK4C0NjDMDSjZRltCDqsgPipsZjedi%2B%2BSqO1zpPqA6eSzY4MvFFSpz20EJVKszu7Ru9gMIXQHzgLvJU56ZrLqKHO%2BmhPAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8114adf17a553b15-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Entered email is not a valid email. \",\n    \"addmsgs\": [\n        \"instance.email does not conform to the \\\"email\\\" format\"\n    ]\n}"}],"_postman_id":"4a55d5b3-7c95-4b7e-acc5-8452ec10a091"},{"name":"Update Customer","id":"1fd34fd1-4053-4ad1-a7f5-497a30299c66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customerId\": \"651e834daa623557cd583dbd\",\n    \"name\": \"XYZ\",\n    \"phoneNo\": \"91-1134567890\",\n    \"shipTo\": {\n        \"name\": \"1ajag\"\n    },\n    \"billTo\": {\n        \"name\": \"1ajag77777\",\n        \"postalCode\": \"201301\"\n    }\n    \n}"},"url":"{{base_url}}/customer/v1.0/updateCustomer","description":"<p>This API is used to update a customer with using <strong><code>customerId</code></strong>.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>String <code>Mandatory</code></td>\n<td>Customer Id provided when the customer was originally created.</td>\n</tr>\n<tr>\n<td></td>\n<td>String <code>Optional</code></td>\n<td>Customer's email. Require this to send an invoice.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer.</td>\n</tr>\n<tr>\n<td>phoneNo</td>\n<td>String <code>Optional</code></td>\n<td>The customer's Indian phone number in the format of  <br />+91-XXXXXXXX</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer.</td>\n</tr>\n<tr>\n<td>taxIdentity</td>\n<td>String <code>Optional</code></td>\n<td>PAN number of the customer</td>\n</tr>\n<tr>\n<td>gstIdentity</td>\n<td>String <code>Optional</code></td>\n<td>If the customer is business type then GST can be used so that the business can get input credits.</td>\n</tr>\n<tr>\n<td>shipTo</td>\n<td>Object <code>Optional</code></td>\n<td>Shipping Details of the customer</td>\n</tr>\n<tr>\n<td>billTo</td>\n<td>Object <code>Optional</code></td>\n<td>Billing Details of the customer</td>\n</tr>\n<tr>\n<td>sameAsBilling</td>\n<td>Boolean <code>Optional</code></td>\n<td>To make shipping address same as billing address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> If <code>sameAsBilling</code> the parameter value is set as <code>true</code> then <code>shipTo</code> is not mandatory and the invoice will have the same shipping and billing address.</p>\n<blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>Name of the customer. Will be used in the invoice.</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the customer data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["customer","v1.0","updateCustomer"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"510ab58d-2357-4392-972b-5d87ea3028c0","name":"Update Customer (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customerId\": \"651e834daa623557cd583dbd\",\n    \"name\": \"XYZ\",\n    \"phoneNo\": \"91-1134567890\",\n    \"shipTo\": {\n        \"name\": \"1ajag\"\n    },\n    \"billTo\": {\n        \"name\": \"1ajag77777\",\n        \"postalCode\": \"201301\"\n    }\n    \n}"},"url":"{{base_url}}/customer/v1.0/updateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jul 2024 12:38:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"18e-G61Kg8dtQ00BVEBKhKL/7XlurRU\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Runxs1N2bzs9X3h1%2FphLAqBxMnV67hVAno4PdmZb%2BNhr4iGOwQ7Su%2FOPs723X7%2BrYujnK70KeMpVgtS1wdBx%2B7ObM8Wlq4Qbc92waDy%2Fp9LY%2FgR8HvTeDhIZOrhufhTDzzK3by%2BTF2ahjaVJmQ1ruCY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8a52882ae81f2179-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Customer updated successfully\",\n    \"data\": {\n        \"shipTo\": {\n            \"name\": \"1ajag\"\n        },\n        \"billTo\": {\n            \"name\": \"1ajag77777\",\n            \"postalCode\": \"201301\"\n        },\n        \"_id\": \"651e834daa623557cd583dbd\",\n        \"email\": \"1221123Ajay4@gmail.com\",\n        \"name\": \"XYZ\",\n        \"phoneNo\": \"91-1134567890\",\n        \"deleted\": false,\n        \"createdDate\": \"2023-10-05T09:35:09.252Z\",\n        \"customerId\": \"651e834daa623557cd583dbd\",\n        \"id\": \"651e834daa623557cd583dbd\"\n    }\n}"}],"_postman_id":"1fd34fd1-4053-4ad1-a7f5-497a30299c66"},{"name":"Get Customer","id":"c1283647-2171-4715-9220-9b0c31e46622","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"customerId\": \"651e834daa623557cd583dbd\"\n}"},"url":"{{base_url}}/customer/v1.0/getCustomer","description":"<p>To get a created customer</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Paramter</th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerId</td>\n<td>String <code>Optional</code></td>\n<td>Customer ID</td>\n</tr>\n<tr>\n<td>clientReferenceId</td>\n<td>String <code>Optional</code></td>\n<td>Reference Id used by the partner.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note</strong>: One of the two parameters are required to get the customer.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["customer","v1.0","getCustomer"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ac1b3853-e61f-41ef-bc0e-f0ee31fd83dc","name":"Get Customer (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customerId\": \"651e834daa623557cd583dbd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/customer/v1.0/getCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 09:36:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"1eb-ZWl20UXKDLXPOXg9e7oOhcx1/04\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r6ahZHiJ14y1x2X1seQBfanvuRSG4cLXfWxpAetQz1LDZk0Ydip5MwwFZnotxd55BFkfpEDJgkpewTrZPqUt%2BSzdyir1YejP%2BFfs%2BhDmrQcX7as0M2vfCx0Y0crm6Fa0akjJB746FsX39r8vys7Czg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8114aea5ff843b15-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"shipTo\": {\n            \"name\": \"ajag\",\n            \"postalCode\": \"201301\"\n        },\n        \"billTo\": {\n            \"name\": \"ajag77777\",\n            \"postalCode\": \"201301\",\n            \"state\": \"Uttar Pradesh\"\n        },\n        \"_id\": \"651e834daa623557cd583dbd\",\n        \"email\": \"1221123Ajay4@gmail.com\",\n        \"name\": \"XYZ\",\n        \"phoneNo\": \"91-1234567890\",\n        \"deleted\": false,\n        \"createdDate\": \"2023-10-05T09:35:09.252Z\",\n        \"customerId\": \"651e834daa623557cd583dbd\",\n        \"id\": \"651e834daa623557cd583dbd\",\n        \"clientId\": \"651e834daa623557cd583dbf\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\"\n    }\n}"}],"_postman_id":"c1283647-2171-4715-9220-9b0c31e46622"},{"name":"Get All Customer","id":"10b845d9-35a6-4c97-8ea2-71f37af284e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/customer/v1.0/getAllCustomer","description":"<p>This API can be used to get all the customers created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the customers. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td>Filter customers according to the creation date</td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td>Filter customers according to the creation date</td>\n</tr>\n<tr>\n<td>clientReferenceId</td>\n<td>String <code>Optional</code></td>\n<td>Partner's reference ID</td>\n</tr>\n<tr>\n<td>kycRequired</td>\n<td>Boolean <code>Optional</code></td>\n<td>Filter those customers whose KYC is required</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Boolean <code>Optional</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the customers</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["customer","v1.0","getAllCustomer"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"99041724-24b7-45b5-89c9-49b76a46db65","name":"Get All Customer (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/customer/v1.0/getAllCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 09:37:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"455-LireBoyjFW/5pJ0PInQ0i2xDvXA\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2aVRWZJYortJq1Tb%2F9fEwwYXTyAJw%2Btt2BHqCp9dptuWIL8uLWnOJPpG0ZD9yVcjGL6zJSneCNEGUBkvbSF%2FQCAHSyTuKKQytbEGAN9gmbeg6uQDhdjf1Uq1yst%2Bijrvrw0Ac%2FDlQSqCIuXWsn%2FodA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8114afc90f953b15-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"6517ff7bbc2aaa70e5fcc5cd\",\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"country\": \"INDIA\",\n            \"deleted\": false,\n            \"createdDate\": \"2023-09-30T10:59:07.212Z\",\n            \"clients\": {\n                \"_id\": \"6517ff7bbc2aaa70e5fcc5cf\",\n                \"merchantId\": \"6517dbc413eb44ed8c817c52\"\n            }\n        },\n        {\n            \"_id\": \"651d5fc5224edf1201768ad5\",\n            \"email\": \"customer@mailinator.com\",\n            \"name\": \"XYZ\",\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\"\n            },\n            \"country\": \"INDIA\",\n            \"deleted\": false,\n            \"createdDate\": \"2023-10-04T12:51:17.556Z\",\n            \"clients\": {\n                \"_id\": \"651d5fc5224edf1201768ad7\",\n                \"merchantId\": \"6517dbc413eb44ed8c817c52\"\n            }\n        },\n        {\n            \"_id\": \"651e834daa623557cd583dbd\",\n            \"email\": \"1221123Ajay4@gmail.com\",\n            \"name\": \"XYZ\",\n            \"phoneNo\": \"91-1234567890\",\n            \"shipTo\": {\n                \"name\": \"ajag\",\n                \"postalCode\": \"201301\"\n            },\n            \"billTo\": {\n                \"name\": \"ajag77777\",\n                \"postalCode\": \"201301\",\n                \"state\": \"Uttar Pradesh\"\n            },\n            \"deleted\": false,\n            \"createdDate\": \"2023-10-05T09:35:09.252Z\",\n            \"clients\": {\n                \"_id\": \"651e834daa623557cd583dbf\",\n                \"merchantId\": \"6517dbc413eb44ed8c817c52\"\n            }\n        }\n    ],\n    \"maxPageSize\": 200,\n    \"hasMore\": false\n}"}],"_postman_id":"10b845d9-35a6-4c97-8ea2-71f37af284e3"},{"name":"Search Customer","id":"3cf50b07-5ba2-4dd1-ac6d-1aa031c7baed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"t\"\n}"},"url":"{{base_url}}/customer/v1.0/searchCustomer","description":"<p>This API can be used to search a customer using email. Partial email can also be used to find a customer.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Partial or full email to be searched.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the customers</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["customer","v1.0","searchCustomer"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"85506b94-8e83-4aeb-b03a-920bae7879ec","name":"Search Customer (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"t\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/customer/v1.0/searchCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Oct 2023 09:39:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"176-roinBMN4QKJzSoHhuQClxzryrNg\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OCNXmzgxWHBc28Wd1WscqagFgjilw7FwuG7Gm5%2BC5XSvYDbipLktmhbj9B7Fh906k3QwtoX67hRO8zqlzAins4k1CRMhTW5Ok2c0d3uaYQosw1vqD6kL3ae2%2BEKDFHhEnXg5ivQhVXKm5YjMOYVe7g%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8114b2de2c903b15-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"6517ff7bbc2aaa70e5fcc5cd\",\n            \"email\": \"customer@merchant.com\",\n            \"docType\": \"CUST\",\n            \"userId\": \"6517dbc413eb44ed8c817c52\",\n            \"clientId\": \"6517ff7bbc2aaa70e5fcc5cf\"\n        },\n        {\n            \"_id\": \"651d5fc5224edf1201768ad5\",\n            \"email\": \"customer@mailinator.com\",\n            \"docType\": \"CUST\",\n            \"userId\": \"6517dbc413eb44ed8c817c52\",\n            \"clientId\": \"651d5fc5224edf1201768ad7\"\n        }\n    ]\n}"}],"_postman_id":"3cf50b07-5ba2-4dd1-ac6d-1aa031c7baed"}],"id":"90042280-6681-4d86-9d18-de572af8a95f","description":"<p>Customers can be created and used to get and manage different biling sessions and subscriptions. It is not neccessary to create a customer before creating a billing session or subscription for a customer. We create a customer with the email passed in the body of request. If you have created the customer then send the <strong><code>customerId</code></strong> in the body of the request for creating billing session and subscriptioin and don't pass email.</p>\n<p>Get All requests for billing session, subscriptions and invoices take customerId to provide the filtered data for that particular customer only.</p>\n","_postman_id":"90042280-6681-4d86-9d18-de572af8a95f"},{"name":"Products","item":[{"name":"Create Product","id":"fcc2ab75-4bae-41eb-baba-1f2da1e68675","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Product Name 1 with very long name\",\n    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n    \"referenceId\": \"merchantRefIdParam1\",\n    \"meta\": {\n        \"param1\": \"metaValue\"\n    }\n}"},"url":"{{base_url}}/product/v1.0/createProduct","description":"<p>This API is used to create a product for both physical goods, digital goods and subscription based services.</p>\n<p>A Product object accommodates all the compliance data for calculating indirect taxes as well for physical products.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the product.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>description</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Product description.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Validator: referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Partner's reference id using which partner can get the product again. It should always be unique for different products.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>URL of the product on the Partner's website.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>countryOfOrigin</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>INDIA</b></code>, <code><b>USA</b></code>, etc</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is already created, use <code>customerId</code> and then <code>email</code> will be optional</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shippable</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is physical then this should be <code>true</code> or else it should be <code>false</code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>images</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>On the checkout page, if the merchant wants to show the images of the product, image URLs can be passed in this param.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shippableData</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This param is only available for physical products only.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the merchant wants to store additional values for the product, it can be saved in this object.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>hsnCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>As the name defines this is Harmonized System of Nomenclature code that allows</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li>If <code>shippable</code> the parameter value is set as <code>false</code> then <code>hsnCode</code> is not mandatory</li>\n</ol>\n<blockquote>\n<p><strong><code>shippableData</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>partNumber</td>\n<td>String <code>Optional</code></td>\n<td>Part Number of the physical product</td>\n</tr>\n<tr>\n<td>eccn</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Export Control Classification Number of the physical product</td>\n</tr>\n<tr>\n<td>weight</td>\n<td>String <code>Optional</code></td>\n<td>Weight of the product</td>\n</tr>\n<tr>\n<td>weightUnit</td>\n<td>String <code>Optional</code>  <br />Enum: <code>oz</code>, <code>lb</code>, <code>g</code>, <code>kg</code></td>\n<td>Unit of the weight used.</td>\n</tr>\n<tr>\n<td>length</td>\n<td>String <code>Optional</code>  <br />Enum: <code>State</code></td>\n<td>Length of the product</td>\n</tr>\n<tr>\n<td>width</td>\n<td>String <code>Optional</code></td>\n<td>Width of the product</td>\n</tr>\n<tr>\n<td>height</td>\n<td>String <code>Optional</code></td>\n<td>Height of the product</td>\n</tr>\n<tr>\n<td>dimensionUnit</td>\n<td>String <code>Optional</code>  <br />Enum: <code>cm</code>, <code>m</code>, <code>in</code>, <code>mm</code></td>\n<td>Unit of the dimensions used.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the product object created.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["product","v1.0","createProduct"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d3426d4a-c632-4728-97bd-aec022644a5c","name":"Create Physical Product (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Product Name 1 with very long name\",\n    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n    \"referenceId\": \"merchantRefIdParam\",\n    \"countryOfOrigin\": \"USA\",\n    \"shippable\": true,\n    \"hsnCode\": \"610701\",\n    \"shippableData\": {\n        \"weight\": \"1\",\n        \"weightUnit\": \"g\"\n    },\n    \"meta\": {\n        \"param1\": \"metaValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/createProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:28:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"35a-H834tttx7iHN6g2sNfUVgxdl1+8\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=YByiGoZa7V48U7EAJw4HqyV6UKYp7hg%2BHKW9nBEksRk2oWgVB2Cjom%2BNnRSTAaQQ%2BI7KC6Ihn8tvGk5CPPTZtPqmITFMx%2BlPdu7YbXw9qPovK2aPMkOMV1tzBW6I6k5b320cgh%2BzaDlE%2BKQ6oA%2F1rLw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765aead0c090773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Product added successfully\",\n    \"data\": {\n        \"_id\": \"66213c02812a38dab14c5c0c\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"referenceId\": \"merchantRefIdParam\",\n        \"name\": \"Product Name 1 with very long name\",\n        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n        \"images\": [],\n        \"countryOfOrigin\": \"USA\",\n        \"shippable\": true,\n        \"shippableData\": {\n            \"weight\": 1,\n            \"weightUnit\": \"g\"\n        },\n        \"meta\": {\n            \"param1\": \"metaValue\"\n        },\n        \"userTaxId\": \"66213bf6812a38dab14c5bea\",\n        \"hsnCode\": \"610701\",\n        \"banned\": false,\n        \"active\": true,\n        \"status\": \"CREATED\",\n        \"deleted\": false,\n        \"source\": \"USER\",\n        \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n        \"createdDate\": \"2024-04-18T15:28:02.453Z\",\n        \"updatedDate\": \"2024-04-18T15:28:02.453Z\",\n        \"__v\": 0,\n        \"productId\": \"66213c02812a38dab14c5c0c\",\n        \"id\": \"66213c02812a38dab14c5c0c\"\n    }\n}"},{"id":"a3ba6dca-a1d2-4224-920a-f37968f80682","name":"Create Physical Product (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Product Name 1 with very long name\",\n    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n    \"referenceId\": \"merchantRefIdParam\",\n    \"countryOfOrigin\": \"USA\",\n    \"shippable\": true,\n    \"hsnCode\": \"610510\",\n    \"shippableData\": {\n        \"weight\": \"1\",\n        \"weightUnit\": \"g\"\n    },\n    \"meta\": {\n        \"param1\": \"metaValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/createProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:25:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"44-OqE+ymEB3QoU3LwLVH8pv50RivQ\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=TxXtNr1EFtBnQFRM5rUK%2F54rCXGiyOX9mTusUSRyegI%2BZ8adB%2FjMnrSDpPJDZTMgiH9kI9ZEmN6rG9LQ0ELHarfXdtKDS4ly3nvgdlg4oS%2BS9I4lBlzv2wzvykL826HQKU%2Fd5kPM1ZKa4SFE8geyGGg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765aaf399b90773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Tax category not found.\"\n}"},{"id":"2d45c360-d092-4399-92ea-4ad425de5e6a","name":"Create Product (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n    \"referenceId\": \"merchantRefIdParam1\",\n    \"meta\": {\n        \"param1\": \"metaValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/createProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:29:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"83-2T9+sJGk8pNEtTdy9gtjWek/TqM\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=OW%2B6JUHnitSEXrDRxjYnywS51AjBXPUckDWVpBPh19LZK6RTiUh314JYcBA2TU6ufoGjJmYfIM9BAUl7I8L7B42mH0gR6HXi3LT01OKSnuCQKhN7IE3G5YR2WwK%2F3puP6wtcgN3fuM6y%2BwewidUFZEw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765b0d188ee0773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"Name is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.name is required\"\n    ]\n}"},{"id":"0ba86bb0-c3e8-4da1-945d-aae1c83ae0cd","name":"Create Product (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Product Name 1 with very long name\",\n    \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n    \"referenceId\": \"merchantRefIdParam1\",\n    \"meta\": {\n        \"param1\": \"metaValue\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/createProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:29:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"2dc-2VS4CZ8azrI/VYIHuxCdYGUBkcM\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=KLbO3nnicvnvQcuLZQqZbjfZ8yquGcjkIsiR3oHl0Ra4KklBPGuKil6m5uYnaFzpFX7MNAXZaoQ9RRCNUqoyN3nkr8i4o%2FR4mYv%2ByhPlIXIotMTAIBupZPxVio%2Bx5chFY9RPyqLhRHCrsBjG0mEdrpw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765b1182e640773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Product added successfully\",\n    \"data\": {\n        \"_id\": \"66213c65944aaa9f0fa95588\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"referenceId\": \"merchantRefIdParam1\",\n        \"name\": \"Product Name 1 with very long name\",\n        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n        \"images\": [],\n        \"shippable\": false,\n        \"meta\": {\n            \"param1\": \"metaValue\"\n        },\n        \"banned\": false,\n        \"active\": true,\n        \"status\": \"CREATED\",\n        \"deleted\": false,\n        \"source\": \"USER\",\n        \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n        \"createdDate\": \"2024-04-18T15:29:41.254Z\",\n        \"updatedDate\": \"2024-04-18T15:29:41.254Z\",\n        \"__v\": 0,\n        \"productId\": \"66213c65944aaa9f0fa95588\",\n        \"id\": \"66213c65944aaa9f0fa95588\"\n    }\n}"}],"_postman_id":"fcc2ab75-4bae-41eb-baba-1f2da1e68675"},{"name":"Get Product","id":"64c86b57-310e-4570-8fbd-972a239a74c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"66213c65944aaa9f0fa95588\"\n}"},"url":"{{base_url}}/product/v1.0/getProduct","description":"<p>This API can be used to get the product created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>productId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Product Id created by the system when creating the product.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Reference Id passed by the partner when creating the product.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Product Data</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["product","v1.0","getProduct"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"a9c7ebe0-0869-4b1a-b485-285989324ec5","name":"Get Product (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"66213c65944aaa9f0fa95588\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/getProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:34:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"2c2-7fQ2rkiARICdJ/nR7Zu/IGl7mrQ\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=zTOe8IhRqTYvPHjKCGLi67bIaASY4Q7firVDzwnTbhH8UHlOBb1VibY%2FrdBRHnZuoaCKTiGqrgEQ7JG5g4m2v8dqN%2BAF4pfBrkIoEtD7xjF18DHvw6YFshAJSxtd9g8%2BYC7iBhGkTGHaWmvEA625%2Fww%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765b8abbb340773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"_id\": \"66213c65944aaa9f0fa95588\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"referenceId\": \"merchantRefIdParam1\",\n        \"name\": \"Product Name 1 with very long name\",\n        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n        \"images\": [],\n        \"shippable\": false,\n        \"meta\": {\n            \"param1\": \"metaValue\"\n        },\n        \"banned\": false,\n        \"active\": true,\n        \"status\": \"CREATED\",\n        \"deleted\": false,\n        \"source\": \"USER\",\n        \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n        \"createdDate\": \"2024-04-18T15:29:41.254Z\",\n        \"updatedDate\": \"2024-04-18T15:29:41.254Z\",\n        \"__v\": 0,\n        \"productId\": \"66213c65944aaa9f0fa95588\",\n        \"id\": \"66213c65944aaa9f0fa95588\"\n    }\n}"}],"_postman_id":"64c86b57-310e-4570-8fbd-972a239a74c1"},{"name":"Get All Products","id":"ae3f0911-2d29-4f0d-9c79-ccaaaca20adb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/product/v1.0/getAllProduct","description":"<p>This API can be used to get all the products created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the sessions. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>String <code>Optional</code>  <br />Enums: <strong><code>CREATED</code></strong> , <strong><code>STARTED</code></strong> , <strong><code>CLOSED</code></strong></td>\n<td>To filter according to the status of the session</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean <code>Optional</code></td>\n<td>To get the active and non active products.</td>\n</tr>\n<tr>\n<td>hsnCode</td>\n<td>String <code>Optional</code></td>\n<td>To get the products with same HSN codes</td>\n</tr>\n<tr>\n<td>shippable</td>\n<td>Boolean <code>Optional</code></td>\n<td>To get the physical products</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the products</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["product","v1.0","getAllProduct"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"96dfb4aa-4fa2-438e-ac5c-695c01fb3b0e","name":"Get All Products (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/product/v1.0/getAllProduct"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 29 Oct 2025 09:26:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3558"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"de6-SS+WYUSGv3/St0mLSU4H+cgrrrM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"shippableData\": {},\n            \"attributes\": {\n                \"schema\": []\n            },\n            \"storeDiscount\": {},\n            \"seoData\": {\n                \"schema\": []\n            },\n            \"singleCategoryBased\": false,\n            \"unique\": true,\n            \"_id\": \"67dd2e0d4dda697af68051b6\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"referenceId\": \"testing011232\",\n            \"name\": \"Zeta Product - 2\",\n            \"description\": \"Somthing new\",\n            \"images\": [\n                \"https://static.driffle.com/fit-in/720x512/media-gallery/production/a05d06a0-f6f8-4f18-ba8e-40f165f93724_assassins-creed-shadows.jpg\"\n            ],\n            \"url\": \"https://www.transactbridge.com\",\n            \"countryOfOrigin\": \"INDIA\",\n            \"shippable\": false,\n            \"banned\": false,\n            \"active\": true,\n            \"status\": \"VERIFIED\",\n            \"deleted\": false,\n            \"source\": \"USER\",\n            \"currCode\": \"USD\",\n            \"price\": \"15\",\n            \"reqUserId\": \"6517b25be95094c34882fe4c\",\n            \"createdDate\": \"2025-03-21T09:14:53.303Z\",\n            \"updatedDate\": \"2025-03-21T09:14:53.303Z\",\n            \"__v\": 0,\n            \"slug\": \"zeta-product-2_67dd2e0d4dda697af68051b6\",\n            \"thumbnail\": \"https://static.driffle.com/fit-in/720x512/media-gallery/production/a05d06a0-f6f8-4f18-ba8e-40f165f93724_assassins-creed-shadows.jpg\",\n            \"quoteCurrCode\": \"USD\",\n            \"quotePrice\": \"15\",\n            \"lastPriceUpdate\": \"2025-10-29T09:26:42.105Z\",\n            \"productId\": \"67dd2e0d4dda697af68051b6\",\n            \"id\": \"67dd2e0d4dda697af68051b6\"\n        },\n        {\n            \"shippableData\": {},\n            \"attributes\": {\n                \"schema\": []\n            },\n            \"storeDiscount\": {},\n            \"seoData\": {\n                \"schema\": []\n            },\n            \"singleCategoryBased\": false,\n            \"unique\": true,\n            \"_id\": \"66213c65944aaa9f0fa95588\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"referenceId\": \"merchantRefIdParam1\",\n            \"name\": \"Product Name 1 with Short Name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"images\": [\n                \"https://static.driffle.com/fit-in/720x512/media-gallery/production/a05d06a0-f6f8-4f18-ba8e-40f165f93724_assassins-creed-shadows.jpg\"\n            ],\n            \"shippable\": false,\n            \"meta\": {\n                \"param1\": \"metaValue\"\n            },\n            \"banned\": false,\n            \"active\": true,\n            \"status\": \"VERIFIED\",\n            \"deleted\": false,\n            \"source\": \"USER\",\n            \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n            \"createdDate\": \"2024-04-18T15:29:41.254Z\",\n            \"updatedDate\": \"2024-04-18T15:29:41.254Z\",\n            \"__v\": 0,\n            \"price\": \"10\",\n            \"slug\": \"product-name-1-with-short-name_66213c65944aaa9f0fa95588\",\n            \"thumbnail\": \"https://static.driffle.com/fit-in/720x512/media-gallery/production/a05d06a0-f6f8-4f18-ba8e-40f165f93724_assassins-creed-shadows.jpg\",\n            \"quotePrice\": \"10\",\n            \"lastPriceUpdate\": \"2025-10-29T09:26:42.105Z\",\n            \"productId\": \"66213c65944aaa9f0fa95588\",\n            \"id\": \"66213c65944aaa9f0fa95588\"\n        },\n        {\n            \"shippableData\": {\n                \"weight\": 1,\n                \"weightUnit\": \"g\"\n            },\n            \"attributes\": {\n                \"schema\": []\n            },\n            \"storeDiscount\": {},\n            \"seoData\": {\n                \"schema\": []\n            },\n            \"singleCategoryBased\": false,\n            \"unique\": true,\n            \"_id\": \"66213c02812a38dab14c5c0c\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"referenceId\": \"merchantRefIdParam\",\n            \"name\": \"Product 2 Updated name - Long name product\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"images\": [\n                \"https://static.driffle.com/fit-in/720x512/media-gallery/prod/170108736158631500_image_12_1701087368.webp\"\n            ],\n            \"countryOfOrigin\": \"USA\",\n            \"shippable\": true,\n            \"meta\": {\n                \"param1\": \"metaValue\"\n            },\n            \"userTaxId\": \"66213bf6812a38dab14c5bea\",\n            \"hsnCode\": \"610701\",\n            \"banned\": false,\n            \"active\": true,\n            \"status\": \"VERIFIED\",\n            \"deleted\": false,\n            \"source\": \"USER\",\n            \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n            \"createdDate\": \"2024-04-18T15:28:02.453Z\",\n            \"updatedDate\": \"2024-04-18T15:28:02.453Z\",\n            \"__v\": 0,\n            \"price\": \"100\",\n            \"slug\": \"product-2-updated-name-long-name-product_66213c02812a38dab14c5c0c\",\n            \"quotePrice\": \"100\",\n            \"lastPriceUpdate\": \"2025-10-29T09:26:42.106Z\",\n            \"productId\": \"66213c02812a38dab14c5c0c\",\n            \"id\": \"66213c02812a38dab14c5c0c\"\n        }\n    ],\n    \"maxPageSize\": 200,\n    \"hasMore\": false\n}"}],"_postman_id":"ae3f0911-2d29-4f0d-9c79-ccaaaca20adb"},{"name":"Update Product","id":"1dbe2d6f-5be0-4fea-8ceb-7ee806f620b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"},{"key":"x-signature","type":"text","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"66213c65944aaa9f0fa95588\",\n    \"name\": \"Product Name 1 with short name\"\n}"},"url":"{{base_url}}/product/v1.0/updateProduct","description":"<p>This API is used to create a unique payment link with a specific amount, that can be shared with a customer. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same session.</p>\n<p>A session can accommodate multiple transactions. Each transaction is considered an attempt to make payments with valid credentials. A customer can try to make a payment using different payment methods in different payment attempts. Using the <a href=\"https://\"><b>Get Session API</b></a>, all the transactions created during a session can also be found and each transaction status can be found using <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>taxIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>PAN number of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>gstIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is business type then GST can be used so that the business can get input credits.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: MongoId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is already created, use <code>customerId</code> and then <code>email</code> will be optional</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: <code><b>USD</b></code>, <code><b>EURO</b></code>, <code><b>INR</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Fiat currency for which request needs to be initiated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pendingUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CREATED</code> or <code>STARTED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>failedUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>EXPIRED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>successUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CLOSED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userTaxId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>TaxId created by the partner. This allows us to tax the product correctly. For example: Partners can have two different <code>userTaxId</code> one for 18% GST and the other for 5% GST.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shipTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Shipping Details of the Customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Billing Details of the customer for the invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sameAsBilling</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To make the shipping address the same as the billing address</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>redirectionType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>SAME_PAGE</b></code>, <code><b>NEW_PAGE</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Depending on the redirection type value, the user will either be redirected to a new page for payment or to the same window of the product page. Default value is <code><b>NEW_PAGE</b></code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>items</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Items the customer wants to buy.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>expiryDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The UTC date at which the session link will expire. If this is not passed by the partner, then the link will expire after 24 hours. This is the expiry of the link if a customer attempts the payment at the last minute, then the link will not expire until all the payment attempts transactions are not in the terminal state.<br />Note: Minimum 10 minutes in the future will be accepted as a valid <code>expiryDate</code> from the time of session creation.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>invoice</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice configuration for the product sold in this billing session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceEnd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li>If <code>sameAsBilling</code> the parameter value is set as <code>true</code> then the invoice will have the same shipping and billing address.</li>\n<li><code>pendingUrl</code> , <code>successUrl</code> , <code>failedUrl</code> are all mandatory if <code>returnUrl</code> is not passed.</li>\n</ol>\n<blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code>  <br />Enum: <code>State</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>String <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>String <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MultiLineDescription</code></td>\n<td>Description of the product.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>invoice</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>issueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Issue date of the invoice</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Due date of the invoice</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Description in the items object allows HTML syntax for customer view so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> <strong><code>returnUrl</code></strong> will be a <strong>GET</strong> redirection with status, billingSessionId, and referenceId values passed in the query params. Partner can then use <a href=\"https://docs.transactbridge.com/#49db9313-bb0c-4732-a59d-b9ce0fec6217\">Get Session API</a> to get the full details of that session.</p>\n","urlObject":{"path":["product","v1.0","updateProduct"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"eba3d8e6-676e-474c-946d-798f205c4607","name":"Update Product (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productId\": \"66213c65944aaa9f0fa95588\",\n    \"name\": \"Product Name 1 with short name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/product/v1.0/updateProduct"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2024 15:43:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"x-frame-options","value":"Deny"},{"key":"etag","value":"W/\"2da-8D82ooX2djdRnxCIMH9sNDj9vnI\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=U%2B%2FJRiP1DVrB8j9PbcIRJ84nmQE7nB%2Fh7FHqokzTEUew9wYgJRUYbY3W8BqogBdbAGsOqw5%2B3Dcg6HHw0MO7FRyDBxhXpGDgYEl19CaBqe8hpJQ5t2pyxeBKT8VLvPkXlB5kKvSLkYMhDWRd0gwvV98%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"8765c5be9ff20773-MRS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Product updated successfully\",\n    \"data\": {\n        \"_id\": \"66213c65944aaa9f0fa95588\",\n        \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n        \"referenceId\": \"merchantRefIdParam1\",\n        \"name\": \"Product Name 1 with short name\",\n        \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n        \"images\": [],\n        \"shippable\": false,\n        \"meta\": {\n            \"param1\": \"metaValue\"\n        },\n        \"banned\": false,\n        \"active\": true,\n        \"status\": \"CREATED\",\n        \"deleted\": false,\n        \"source\": \"USER\",\n        \"reqUserId\": \"6517dbc413eb44ed8c817c52\",\n        \"createdDate\": \"2024-04-18T15:29:41.254Z\",\n        \"updatedDate\": \"2024-04-18T15:29:41.254Z\",\n        \"__v\": 0,\n        \"productId\": \"66213c65944aaa9f0fa95588\",\n        \"id\": \"66213c65944aaa9f0fa95588\"\n    }\n}"}],"_postman_id":"1dbe2d6f-5be0-4fea-8ceb-7ee806f620b6"}],"id":"78dac285-914e-44d6-a07b-322d36a61a3c","description":"<p>Products define the specific goods or services the partner is offering to its customers. Products can be physical goods, digital goods, SaaS subscriptions, etc. The products also have compliance data embedded within them, which allows proper tax calculations per item based.</p>\n<p>Products are not mandatory for any kind of partner, but using products to create a catalogue and then using those product objects to create sessions and subscriptions allows efficient operations.</p>\n","_postman_id":"78dac285-914e-44d6-a07b-322d36a61a3c"},{"name":"Distribution","item":[{"name":"Validate Product","id":"02e1086b-1133-4270-ae34-300449a55ee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productReferenceId\": \"coda.upi.73\",\n    \"userId\": \"1029384\"\n}"},"url":"{{base_url}}/webstore/v1.0/validateProductTopupDetails","description":"<p>To ensure that the top-up is sent to the correct and valid user, this API is used to verify the end user’s account before processing the transaction. It checks whether the user exists on the merchant’s platform and can receive the selected top-up (SKU).</p>\n<p><strong>Note</strong>: If the validation is successful, the API returns an orderId (generated by CODA). This orderId must be included in the next step — the Request for Payment API — to proceed with the purchase.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>productReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Product Reference ID of the SKU</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>UserId of the customer, which checks if it exists on the merchant’s platform, and can receive the selected top-up (SKU)</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the orderId and clientId to be used to create a payment session.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["webstore","v1.0","validateProductTopupDetails"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2efe70fc-0ccb-4435-94b7-607c0c4559ae","name":"Validate Product (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productReferenceId\": \"coda.upi.73\",\n    \"userId\": \"1029384\"\n}"},"url":"{{base_url}}/webstore/v1.0/validateProductTopupDetails"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 16:22:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"132"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"84-QbaJEuEwrdxfhitBlo0u6u4j+Z4\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"orderId\": \"1619dc96-835a-4006-82af-c5e932e89d2a\",\n        \"clientId\": \"1762359769636\"\n    }\n}"},{"id":"cf78138e-8fd1-4412-8287-31749be9b139","name":"Validate Product (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"productReferenceId\": \"coda.upi.73\",\n    \"userId\": \"102938\"\n}"},"url":"{{base_url}}/webstore/v1.0/validateProductTopupDetails"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 16:25:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"49-mmj+8CwsrvJ4hBOMCuiIdIKAJ44\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"sub_status\": null,\n    \"msg\": \"Top up Details are incorrect\"\n}"}],"_postman_id":"02e1086b-1133-4270-ae34-300449a55ee1"},{"name":"Create Payment Session","id":"e459bdae-e8f9-49c9-8784-c9dec305cd58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"INR\",\n    \"items\": [\n        {\n            \"productReferenceId\": \"coda.upi.73\",\n            \"amount\": 2,\n            \"quantity\": 1,\n            \"attributes\": {\n                \"orderId\": \"d1e3e389-9ab1-4156-908c-5a4d95438b73\",\n                \"userId\": \"Y_LjnijezGxj4Av2xb-PPw\",\n                \"clientId\": \"1762440655271\"\n            }\n        }\n    ],\n    \"email\": \"customer@merchant.com\"\n}"},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession","description":"<p>This API is used to create a unique payment link with a specific amount, that can be shared with a customer. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same session.</p>\n<p>A session can accommodate multiple transactions. Each transaction is considered an attempt to make payments with valid credentials. A customer can try to make a payment using different payment methods in different payment attempts. Using the <a href=\"https://\"><b>Get Session API</b></a>, all the transactions created during a session can also be found and each transaction status can be found using <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's email. Require this to send an invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clientReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer's reference id that the partner can pass to map it to the customer on Transact Bridge panel. If <code><b>email</b></code> is not passed in the request body, the customer must enter the email on the product checkout page.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>phoneNo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The customer's Indian phone number in the format of<br />+91-XXXXXXXX</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>theme</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>LIGHT</b></code>, <code><b>DARK</b></code>, <code><b>AUTO</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Checkout renders accordingly to choosen theme.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>taxIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>PAN number of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>gstIdentity</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is business type then GST can be used so that the business can get input credits.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>MongoId</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the customer is already created, use <code>customerId</code> and then <code>email</code> will be optional</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: <code>AllowedString</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>quoteCurrCode</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code><br />Enum: <code><b>USD</b></code>, <code><b>EURO</b></code>, <code><b>INR</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Fiat currency for which request needs to be initiated.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is completed. The end customer will be redirected to this URL with the status of the session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pendingUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CREATED</code> or <code>STARTED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>failedUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>EXPIRED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>successUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This URL is needed to redirect the user after the session is in <code>CLOSED</code> status</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Validator: ReferenceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a partner ID to map a billing session with their generated ID. This cannot be the same for two sessions.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userTaxId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>TaxId created by the partner. This allows us to tax the product correctly. For example: Partners can have two different <code>userTaxId</code> one for 18% GST and the other for 5% GST.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shipTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Shipping Details of the Customer</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billTo</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Billing Details of the customer for the invoice.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sameAsBilling</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To make the shipping address the same as the billing address</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>payMethod</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of String <code>Optional</code><br />Enum: <code><b>UPI</b></code>, <code><b>NB</b></code>, <code><b>CC</b></code>, <code><b>DC</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the payMethod parameter is sent by the partner then on the payment page for the customer only that payment method will be visible to the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>redirectionType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code><br />Enum: <code><b>SAME_PAGE</b></code>, <code><b>NEW_PAGE</b></code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Depending on the redirection type value, the user will either be redirected to a new page for payment or to the same window of the product page. Default value is <code><b>NEW_PAGE</b></code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>items</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Items the customer wants to buy.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>discount</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This parameter can be used to reduce the total cart pay amount.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>expiryDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The UTC date at which the session link will expire. If this is not passed by the partner, then the link will expire after 24 hours. This is the expiry of the link if a customer attempts the payment at the last minute, then the link will not expire until all the payment attempts transactions are not in the terminal state.<br />Note: Minimum 10 minutes in the future will be accepted as a valid <code>expiryDate</code> from the time of session creation.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>invoice</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invoice configuration for the product sold in this billing session.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceEnd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If the product is for a specific period, then the invoice created for the customer will have this parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>meta</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add meta params in the session. They will be passed in the webhook and query API as well.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>referrerUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To add the checkout original URL from which customer got redirected to Transact Bridge checkout page</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>enableMandatoryPopup</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is set to be <code><b>true</b></code> then the customer on the checkout page will be first shown to add remaining mandatory inputs like name etc.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>If <code>sameAsBilling</code> the parameter value is set as <code>true</code> then the invoice will have the same shipping and billing address.</p>\n</li>\n<li><p><code>pendingUrl</code> , <code>successUrl</code> , <code>failedUrl</code> are all mandatory if <code>returnUrl</code> is not passed.</p>\n</li>\n<li><p>One of <code>email</code> or <code>clientReferenceId</code> is a mandatory parameter.</p>\n</li>\n</ol>\n<blockquote>\n<p><strong><code>billTo</code></strong> &amp; <strong><code>shipTo</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the customer</td>\n</tr>\n<tr>\n<td>line1</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 1 of the customer</td>\n</tr>\n<tr>\n<td>line2</td>\n<td>String <code>Optional</code>  <br />Validator: <code>Address</code></td>\n<td>Address Line 2 of the customer</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String <code>Optional</code>  <br />Validator: <code>AllowedString</code></td>\n<td>City of the customer</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>String <code>Optional</code></td>\n<td>Pin code of the customer. Only Indian codes are accepted.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String <code>Optional</code>  <br />Enum: <code>State</code></td>\n<td>State of the customer address</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String <code>Optional</code>  <br />Enum: <strong><code>INDIA</code></strong></td>\n<td>Country of the customer. Only India is accepted right now.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>items</code></strong> Array of Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productReferenceId</td>\n<td>String <code>Optional</code>  <br />Validator: <code>referenceId</code></td>\n<td>If the product is already created use the refereneId of that product.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String <code>Mandatory</code>  <br />Validator: <code>AllowedString</code></td>\n<td>Name of the product the customer wants to buy.</td>\n</tr>\n<tr>\n<td>attribiutes</td>\n<td>Array of Object <code>Mandatory</code></td>\n<td>To send top-up details</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Number <code>Mandatory</code></td>\n<td>Number of products the customer wants to buy.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Number <code>Mandatory</code></td>\n<td>Price of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String <code>Optional</code>  <br />Validator: <code>MultiLineDescription</code></td>\n<td>Description of the product.</td>\n</tr>\n<tr>\n<td>hsnCode</td>\n<td>String <code>Optional</code></td>\n<td>If the product is physical then HSN code is mandatory</td>\n</tr>\n<tr>\n<td>shippable</td>\n<td>Boolean <code>Optional</code>  <br />Default: <code>false</code></td>\n<td>If the product is physical pass this param as <code>true</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong></p>\n<ol>\n<li><p>Description in the items object allows HTML syntax for the customer view. Use so that the description on the product page is better from a UI perspective. We break and show the description like unlisted items.</p>\n</li>\n<li><p>If <code>productReferenceId</code> is passed then name <code>hsnCode</code> and <code>shippable</code> is not mandatory.</p>\n</li>\n</ol>\n<blockquote>\n<p><code>attribtes</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>String <code>Mandatory</code></td>\n<td>The validation API returns the orderId, which needs to be used here.</td>\n</tr>\n<tr>\n<td>userId</td>\n<td>String <code>Mandatory</code></td>\n<td>The customer's ID on the merchant's platform where the top-up needs to be credited.</td>\n</tr>\n<tr>\n<td>clientId</td>\n<td>String <code>Mandatory</code></td>\n<td>The validation API returns the clientId, which needs to be used here.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><code>meta</code> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>param1</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param2</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n<tr>\n<td>param3</td>\n<td>String <code>Optional</code></td>\n<td>String with max length of 256 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>invoice</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>issueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Issue date of the invoice</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>Date <code>Optional</code></td>\n<td>Due date of the invoice</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong><code>discount</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameters</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String <code>Optional</code></td>\n<td>This will be shown on the checkout page as the description of the discount being applied.</td>\n</tr>\n<tr>\n<td>quoteAmountOff</td>\n<td>Number <code>Mandatory</code></td>\n<td>Discount value that is being applied on the cart value.</td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Note:</strong> <strong><code>returnUrl</code></strong> will be a <strong>GET</strong> redirection with status, billingSessionId, and referenceId values passed in the query params. Partner can then use <a href=\"https://docs.transactbridge.com/#49db9313-bb0c-4732-a59d-b9ce0fec6217\">Get Session API</a> to get the full details of that session.</p>\n","urlObject":{"path":["billingSession","v1.0","generateBillingSession"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7a35beec-4fcc-4a72-b176-6461a39402cc","name":"Create Session (Succes)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"INR\",\n    \"items\": [\n        {\n            \"productReferenceId\": \"coda.upi.73\",\n            \"amount\": 2,\n            \"quantity\": 1,\n            \"attributes\": {\n                \"orderId\": \"d1e3e389-9ab1-4156-908c-5a4d95438b73\",\n                \"userId\": \"Y_LjnijezGxj4Av2xb-PPw\",\n                \"clientId\": \"1762440655271\"\n            }\n        }\n    ],\n    \"email\": \"customer@merchant.com\"\n}"},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 06 Nov 2025 14:53:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1945"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"799-1+nfbC6xxG/s2Ke3y8oRrEaHHd0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"Session is successfully created for billing details\",\n    \"data\": {\n        \"paymentDetails\": {\n            \"supplierPayMethods\": []\n        },\n        \"billDetails\": {\n            \"shipTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"billTo\": {\n                \"name\": \"XYZ\",\n                \"city\": \"CENTRAL DELHI\",\n                \"postalCode\": \"110001\",\n                \"state\": \"Delhi\",\n                \"country\": \"INDIA\"\n            },\n            \"purchaseLocation\": {},\n            \"email\": \"customer@merchant.com\",\n            \"name\": \"XYZ\",\n            \"items\": [\n                {\n                    \"meta\": {},\n                    \"attributes\": {\n                        \"server\": {},\n                        \"userId\": \"Y_LjnijezGxj4Av2xb-PPw\",\n                        \"orderId\": \"d1e3e389-9ab1-4156-908c-5a4d95438b73\",\n                        \"clientId\": \"1762440655271\"\n                    },\n                    \"productId\": \"6904ab6acc416a9ff4b0e273\",\n                    \"productReferenceId\": \"coda.upi.73\",\n                    \"hsnCode\": \"997331\",\n                    \"shippable\": false,\n                    \"name\": \"37 Diamonds\",\n                    \"description\": \"13800 Diamonds\",\n                    \"quantity\": 1,\n                    \"amount\": 59,\n                    \"images\": [],\n                    \"taxes\": [\n                        {\n                            \"taxName\": \"IGST\",\n                            \"taxAmt\": \"9\",\n                            \"taxPcnt\": 18\n                        }\n                    ],\n                    \"totalTax\": \"9\",\n                    \"totalTaxQuote\": \"9\",\n                    \"deliveredQty\": 0,\n                    \"orderPlaceQty\": 0,\n                    \"delivered\": false,\n                    \"type\": \"TOPUP\",\n                    \"routeVendor\": \"CODA\",\n                    \"orderVendor\": \"CODA\",\n                    \"id\": null\n                }\n            ]\n        },\n        \"meta\": {\n            \"param1\": \"\",\n            \"param2\": \"\",\n            \"param3\": \"\"\n        },\n        \"discount\": {},\n        \"_id\": \"690cb671b974b1465960c04c\",\n        \"orgName\": \"HelloYo\",\n        \"merchantId\": \"6904a1c0cc416a9ff4b0e07f\",\n        \"partnerId\": null,\n        \"customerId\": \"6517ff7bbc2aaa70e5fcc5cd\",\n        \"currId\": \"65141792ffb2d664bd9e4dfc\",\n        \"code\": \"INR\",\n        \"status\": \"CREATED\",\n        \"amount\": \"50\",\n        \"totalAmount\": \"59\",\n        \"quoteAmount\": \"50\",\n        \"quoteAmt\": \"59\",\n        \"quoteCurrCode\": \"INR\",\n        \"fxQuote\": \"1\",\n        \"returnUrl\": \"https://www.transactbridge.com/demo\",\n        \"txIds\": [],\n        \"gstInclusive\": true,\n        \"webstoreOrder\": true,\n        \"webstoreOrderDelivered\": false,\n        \"createdDate\": \"2025-11-06T14:53:37.759Z\",\n        \"billingSessionId\": \"690cb671b974b1465960c04c\",\n        \"id\": \"690cb671b974b1465960c04c\",\n        \"singlePageFlow\": true,\n        \"sessionId\": \"690cb671b974b1465960c04c\",\n        \"redirectUrl\": \"https://sandboxpay.transactbridge.com/customer/singlePage/product?billingSessionId=690cb671b974b1465960c04c\",\n        \"payUrl\": \"https://sandboxpay.transactbridge.com/customer/singlePage/product?billingSessionId=690cb671b974b1465960c04c\"\n    }\n}"},{"id":"373c6c10-cdfe-4d14-8bbe-1b9ca0cf1d51","name":"Create Session (Error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"returnUrl\": \"https://www.transactbridge.com/demo\",\n    \"quoteCurrCode\": \"USD\",\n    \"shipTo\": {\n        \"name\": \"ABCS\",\n        \"postalCode\": \"110001\"\n    },\n    \"billTo\": {\n        \"name\": \"XYZ\",\n        \"postalCode\": \"110001\",\n        \"state\": \"Delhi\",\n        \"city\": \"CENTRAL DELHI\",\n        \"country\": \"INDIA\"\n    },\n    \"items\": [\n        {\n            \"name\": \"Product Name 1 with very long name\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 2,\n            \"quantity\": 1\n        },\n        {\n            \"name\": \"Product Name 2\",\n            \"description\": \"Product Descriptoin with a very long desc <br> here is new line for this desc <br/> this is another line for testing puspose hope this works\",\n            \"amount\": 10,\n            \"quantity\": 1\n        }\n    ],\n    \"name\": \"XYZ\",\n    \"email\": \"customer@merchant.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/billingSession/v1.0/generateBillingSession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 Sep 2023 10:00:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"strict-transport-security","value":"max-age=2628000;"},{"key":"etag","value":"W/\"95-1fF/WndZgbJ4/DNvOH9urUWsL+w\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5Mo5ceUTamVaX5HfHj6cAnRLgpFklLgrELVzKIAykR8zwLddaI%2FDfuZO3%2F%2FS8uzTtEVluZBlCRrBe9e1JG8WHkR2ELQ%2FRSHnJTOfjso7qcmXTNnGHX%2BURZnsCqCHVWclmC5oFUyC67evHAHRvXtIkA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"80eb9e7b7db33212-BOM"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"error_code\": \"422\",\n    \"sub_status\": null,\n    \"msg\": \"QuoteCurrCode is a mandatory field. \",\n    \"addmsgs\": [\n        \"instance.quoteCurrCode is required\"\n    ]\n}"}],"_postman_id":"e459bdae-e8f9-49c9-8784-c9dec305cd58"},{"name":"Get Order Details","id":"18ce78a9-f552-4e54-ae77-54c38ea9e9d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"billingSessionId\": \"690b7a9a9f581b04799b5a58\"\n}"},"url":"{{base_url}}/billingSession/v1.0/getOrderDetails","description":"<p>This API retrieves the latest status from the top-up server and returns the updated information in its response. The providerOrderDetails field contains the most recent data fetched directly from the top-up server.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b></b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>billingSessionId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Billing Session Id</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the sessionId and URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["billingSession","v1.0","getOrderDetails"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"a41ab130-9d93-4c83-ba25-5c2756bf6efd","name":"Get Order Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"billingSessionId\": \"690b7a9a9f581b04799b5a58\"\n}"},"url":"{{base_url}}/billingSession/v1.0/getOrderDetails"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 16:26:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"399"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src \"self\""},{"key":"ETag","value":"W/\"18f-2bDFS/Lom+5E+HUtCi7oi4xIkEE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"sessionId\": \"690b7a9a9f581b04799b5a58\",\n        \"status\": \"CREATED\",\n        \"createdDate\": \"2025-11-05T16:26:02.850Z\",\n        \"items\": [\n            {\n                \"productId\": \"6880d399e1066f594dbb3a6f\",\n                \"productReferenceId\": \"TB_Chamet_49000\",\n                \"quantity\": 1,\n                \"delivered\": false,\n                \"deliveredQty\": \"0\",\n                \"type\": \"TOPUP\",\n                \"providerOrderDetails\": {\n                    \"orderId\": \"213eda6f-d3d8-4070-b057-9b0655033cba\",\n                    \"status\": \"NEW\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"18ce78a9-f552-4e54-ae77-54c38ea9e9d8"}],"id":"10a08c26-4186-4d15-a1cf-0af18cd7f962","description":"<p>This document outlines the APIs, workflow, and integration guidelines for foreign partners offering wallet-based top-ups (e.g., credits, diamonds, or tokens) to customers in India via Transact Bridge’s reseller/distribution infrastructure.</p>\n<p>Transact Bridge acts as the reseller and fulfillment partner for international digital goods providers. This integration enables instant digital delivery of top-ups to Indian users using an automatic delivery system, automatic payment routing through Indian MOR, reconciliation, and transparent invoicing.</p>\n","_postman_id":"10a08c26-4186-4d15-a1cf-0af18cd7f962"},{"name":"KYC","item":[{"name":"Create KYC","id":"b429ab9b-3fa9-4bec-a43f-184b660eb6d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customerId\": \"68fb0e3597c7e26b6acb6158\",\n    \"returnUrl\": \"https://www.google.com\"\n}"},"url":"{{base_url}}/kyc/v1.0/generateKycSession","description":"<p>This API is used to create a unique payment link with a specific amount, that can be shared with a customer. Once the user pays the requested amount through the selected payment channel, the partner gets a webhook call for a successful credit of the same session.</p>\n<p>A session can accommodate multiple transactions. Each transaction is considered an attempt to make payments with valid credentials. A customer can try to make a payment using different payment methods in different payment attempts. Using the <a href=\"https://\"><b>Get Session API</b></a>, all the transactions created during a session can also be found and each transaction status can be found using <a href=\"https://\"><b>Get Transaction API</b></a>.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customerId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Customer ID for which KYC needs to be initiated</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>returnUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Once the KYC is completed the customer will be redirected back to this URL.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the URL to which the customer needs to be redirected, and the customer will do the KYC on that link</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["kyc","v1.0","generateKycSession"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b429ab9b-3fa9-4bec-a43f-184b660eb6d7"},{"name":"Get All KYC","id":"14983bbe-ae84-49c3-b4e2-0f47486387bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{base_url}}/kyc/v1.0/getAllKyc","description":"<p>This API can be used to get all the KYC sessions created.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>filter</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Different filters can be applied to query the sessions. You can see the allowed <code>filter</code> parameters after this table.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>page</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Number <code>Optional</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>To use for pagination. The default value is 1 and the accepted value is only greater than or equal to 1.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<blockquote>\n<p><strong><code>filter</code></strong> Object Parameters </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fromDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>kycId</td>\n<td>String <code>Optional</code></td>\n<td>To filter according to the <strong><code>kycId</code></strong></td>\n</tr>\n<tr>\n<td>billingSessionId</td>\n<td>String <code>Optional</code>  <br />Enums: billingSessionStatus</td>\n<td>To filter according to the <strong><code>billingSessionId</code></strong>, this filter applied to those KYC sessions which were created during the checkout process.</td>\n</tr>\n<tr>\n<td>verificationStatus</td>\n<td>String <code>Optional</code></td>\n<td></td>\n</tr>\n<tr>\n<td>customerId</td>\n<td>String <code>Optional</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the sessions</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["kyc","v1.0","getAllKyc"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"14983bbe-ae84-49c3-b4e2-0f47486387bf"},{"name":"Get KYC","id":"45fdee6b-add1-4b3c-b6cd-4ad604179784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"kycId\": \"6517fee9bc2aaa70e5fcc5a2\"\n}"},"url":"{{base_url}}/kyc/v1.0/getKyc","description":"<p>This API is used to get the created session and fetch the status.</p>\n<h4>Request Parameters</h4>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String <code>Mandatory</code></td>\n<td>Created session Id</td>\n</tr>\n<tr>\n<td>referenceId</td>\n<td>String <code>Mandatory</code></td>\n<td>Reference ID that was passed by the partner during the generation of the session.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: Only one of the parameters needs to be passed. Both of them are not mandatory.</p>\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The response from the API</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Full session object with all the information.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["kyc","v1.0","getKyc"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45fdee6b-add1-4b3c-b6cd-4ad604179784"}],"id":"e6681c96-fc6c-4ffb-a097-e76e2b208657","description":"<p>The KYC module is not available for all the partners. If you want this to be activated, please contact <a href=\"https://mailto:info@transactbridge.com\">info@transactbridge.com</a>.</p>\n<p>Partner's account can be configured in two ways to allow initiation of the KYC process for a specific customer, where the customer's identity with a live selfie is captured to validate the KYC. Another way is to take the KYC after the payment is done from the checkout process directly.</p>\n","_postman_id":"e6681c96-fc6c-4ffb-a097-e76e2b208657"},{"name":"Coupons","item":[{"name":"Coupon Verify","id":"b9d75ad2-d7ad-42b9-9aa1-79272fae869e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"subscriptionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This API endpoint is used to verify whether a coupon is allowed and how to apply it. When a customer enters a coupon code on the checkout page, this API endpoint will be used to validate the coupon code. Coupons are of three types: <strong><code>LIMITED_PERIOD</code></strong>, <strong><code>ONETIME</code></strong>, and <strong><code>FOREVER</code></strong>. They can be used to give a discount based on a percentage or a fixed amount. Please check examples for the same.</p>\n<p>For percentage-based <strong><code>discountPcnt</code></strong> is required, for fixed amount-based <strong><code>discountQuoteAmount</code></strong> is required. Also for the limited period-based coupons, <strong><code>period</code></strong> and <strong><code>periodUnit</code></strong> both are required.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"6a8f9b65-2907-4a87-bbeb-b8be032cbe1c","name":"Coupon Verify (Failed)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"subscriptionId\": \"6703acfd8d08e7f77be1b369\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"applicable\": false\n}"},{"id":"02da9d70-a71f-4f11-8995-c1e2e8d1e951","name":"Coupon Verify (Limited Time)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"subscriptionId\": \"6703acfd8d08e7f77be1b369\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"applicable\": true,\n    \"discountType\": \"PCNT\",\n    \"discountPcnt\": \"10\",\n    \"durationType\": \"LIMITED_PERIOD\",\n    \"periodUnit\": \"MNTH\",\n    \"period\": 2\n}"},{"id":"0eefcdd5-f9e2-4189-8fb7-b10d562cef6b","name":"Coupon Verify (Forever)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"subscriptionId\": \"6703acfd8d08e7f77be1b369\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"applicable\": true,\n    \"discountType\": \"FIX\",\n    \"discountQuoteAmount\": \"10\",\n    \"durationType\": \"FOREVER\"\n}"},{"id":"828716f4-f44a-4ee1-aa54-7af76a560edf","name":"Coupon Verify (One Time)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"subscriptionId\": \"6703acfd8d08e7f77be1b369\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"coupon\": \"TESTCOUPON\",\n    \"applicable\": true,\n    \"discountType\": \"FIX\",\n    \"discountQuoteAmount\": \"10\",\n    \"durationType\": \"ONETIME\"\n}"}],"_postman_id":"b9d75ad2-d7ad-42b9-9aa1-79272fae869e"}],"id":"e794037e-c3be-4250-a54a-470852f07a37","description":"<p>The coupon system allows the partner the flexibility to use their coupon store and let their customer apply coupon codes at the Transact Bridge checkout page. When a customer applies a coupon, we call the <a href=\"#b9d75ad2-d7ad-42b9-9aa1-79272fae869e\">Coupon Verify API </a> configured by the partner. Partner can evaluate the coupon code at their end and check if the. coupon code is valid and respond accordingly. Partners can allow coupons with limited period applicability for both percentage-based or fixed amount-based. The response excepted from the partner is mentioned in the example of the Coupon Verify API</p>\n<p>To configure the Coupon Verify API endpoint, the partner can log in to their account go to the <strong>Account Settings page</strong>, and configure the endpoint there.</p>\n","_postman_id":"e794037e-c3be-4250-a54a-470852f07a37"},{"name":"Webhooks","item":[{"name":"Session","id":"5ff84b04-3f5d-4e85-a7c8-2c07e1e65536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"BILLINGSESSION\",\n    \"status\": \"\",\n    \"referenceId\": \"\",\n    \"tbId\": \"\",\n    \"quoteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"attempt\": 1,\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\"\n}"},"url":"{{callbackURL}}","description":"<p>This webhook event is sent to the configured partner URL when the session has a status change. Session status can be <strong><code>CREATED</code></strong> , <strong><code>STARTED</code></strong>, <strong><code>CLOSED</code></strong>, <strong><code>EXPIRED</code></strong>, <strong><code>FAILED</code></strong>.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"ad5593ba-5fa7-4372-9a9a-46ffa349adc4","name":"Session (Started)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"BILLINGSESSION\",\n    \"status\": \"STARTED\",\n    \"referenceId\": \"1708001715\",\n    \"tbId\": \"65ce09b363f60144efcfbed1\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T12:55:29.391Z\",\n    \"param1\": \"paramValue1\",\n    \"param2\": \"paramValue2\",\n    \"param3\": \"paramValue3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fe3ee51b-5f6b-4c14-9487-c885e7aa44ad","name":"Session (Rejected)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"BILLINGSESSION\",\n    \"status\": \"REJECTED\",\n    \"referenceId\": \"1708001715\",\n    \"tbId\": \"65ce09b363f60144efcfbed1\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T12:55:29.391Z\",\n    \"param1\": \"paramValue1\",\n    \"param2\": \"paramValue2\",\n    \"param3\": \"paramValue3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1c20f5e1-fee3-433e-bc38-f8aae39d936c","name":"Session (Closed)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"BILLINGSESSION\",\n    \"status\": \"CLOSED\",\n    \"referenceId\": \"1708001715\",\n    \"tbId\": \"65ce09b363f60144efcfbed1\",\n    \"payMethod\": \"NB\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T12:56:08.810Z\",\n    \"totalTax\": \"35.81\",\n    \"network\": \"State bank of India\",\n    \"code\": 1033,\n    \"param1\": \"paramValue1\",\n    \"param2\": \"paramValue2\",\n    \"param3\": \"paramValue3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5ff84b04-3f5d-4e85-a7c8-2c07e1e65536"},{"name":"Transaction","id":"154ef1ef-26da-4ed8-80b6-aed6ef6ea595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"DEPOSIT\",\n    \"status\": \"\",\n    \"referenceId\": \"\",\n    \"tbId\": \"\",\n    \"payMethod\": \"\",\n    \"quoteAmount\": \"\",\n    \"settleQuoteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\",\n    \"rrn\": \"\"\n}"},"url":"{{callbackURL}}","description":"<p>This webhook event is sent to the configured partner URL when the transaction has a status change. Session status can be <strong><code>PENDING</code></strong>, <strong><code>PROCESSING</code></strong>, <strong><code>SUCCESS</code></strong>, <strong><code>FAILED</code></strong>.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"45813871-6fa7-4b13-a1c2-82a09b06d7ab","name":"Transaction (Failed)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"DEPOSIT\",\n    \"status\": \"FAILED\",\n    \"referenceId\": \"test-tsp-0047\",\n    \"tbId\": \"68cc61b6b8814a093b6dfe19\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\",\n    \"settleQuoteAmount\": \"98\",\n    \"timestamp\": \"2025-09-18T19:48:46.741Z\",\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\",\n    \"rrn\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a9472922-3b40-49b4-a54b-8b31fa9a8c77","name":"Transaction (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"DEPOSIT\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0047\",\n    \"tbId\": \"68cc61b6b8814a093b6dfe19\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\",\n    \"settleQuoteAmount\": \"98\",\n    \"timestamp\": \"2025-09-18T19:48:46.741Z\",\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\",\n    \"rrn\": \"1758224926335\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"154ef1ef-26da-4ed8-80b6-aed6ef6ea595"},{"name":"Subscription","id":"9d2ada6b-d973-4ec6-8552-bc3da0a5cef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"SUBSCRIPTION\",\n    \"status\": \"\",\n    \"quoteAmount\": \"\",\n    \"tbId\": \"\",\n    \"timestamp\": \"\",\n    \"currentPeriodStart\": \"\",\n    \"currentPeriodEnd\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook event is sent to the configured partner URL when the subscription has a status change. Subscription status can be <strong><code>PENDING</code></strong>, <strong><code>PENDING_EXPIRED</code></strong>, <strong><code>TRIAL</code></strong>, <strong><code>ACTIVE</code></strong>, <strong><code>PAUSED</code></strong>, <strong><code>EXPIRED</code></strong>, <strong><code>CANCELLED</code></strong>, <strong><code>FAILED</code></strong>.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"a49b4f0a-89cc-4336-bc77-a790c960d57b","name":"Active Subscription","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"SUBSCRIPTION\",\n    \"status\": \"ACTIVE\",\n    \"quoteAmount\": \"48\",\n    \"tbId\": \"667946642f968332ee9a68e5\",\n    \"timestamp\": \"2024-08-01T18:57:34.872Z\",\n    \"currentPeriodStart\": \"2024-08-01T13:00:00.000Z\",\n    \"currentPeriodEnd\": \"2024-08-02T13:00:00.000Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7c25e12f-ab5e-429f-b38e-c5dcd90a3e01","name":"Subscription Paused","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"SUBSCRIPTION\",\n    \"status\": \"PAUSED\",\n    \"quoteAmount\": \"10\",\n    \"tbId\": \"66e968ff5262d1053ac78d31\",\n    \"timestamp\": \"2024-09-17T11:44:23.396Z\",\n    \"currentPeriodStart\": \"2024-09-16T13:00:00.000Z\",\n    \"currentPeriodEnd\": \"2024-09-23T13:00:00.000Z\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"457286fa-7007-4e82-81c7-373e81594fec","name":"Subscription Cancelled","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"SUBSCRIPTION\",\n    \"status\": \"CANCELLED\",\n    \"quoteAmount\": \"10\",\n    \"tbId\": \"66e96fcb5262d1053ac79365\",\n    \"timestamp\": \"2024-09-17T12:05:30.480Z\",\n    \"currentPeriodStart\": \"2024-09-16T13:00:00.000Z\",\n    \"currentPeriodEnd\": \"2024-09-23T13:00:00.000Z\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1be686c8-9911-4080-9126-a588cc5dc743","name":"Subscription Started in Trial","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"SUBSCRIPTION\",\n    \"status\": \"TRIAL\",\n    \"quoteAmount\": \"10\",\n    \"tbId\": \"66eacaac977dc04da094e7a5\",\n    \"timestamp\": \"2024-09-18T12:43:17.571Z\",\n    \"currentPeriodStart\": \"2024-09-23T13:00:00.000Z\",\n    \"currentPeriodEnd\": \"2024-09-30T13:00:00.000Z\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9d2ada6b-d973-4ec6-8552-bc3da0a5cef7"},{"name":"Invoice","id":"b688f88f-8d91-4890-85c7-1b0db62458df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"\",\n    \"tbId\": \"\",\n    \"quoteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"issueDate\": \"\",\n    \"dueDate\": \"\",\n    \"serviceStart\": \"\",\n    \"serviceEnd\": \"\",\n    \"totalTax\": \"\",\n    \"billingSessionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when an invoice is created or the status is changed. Invoice status can be <strong><code>DRAFT</code></strong> <strong><code>APPROVED</code></strong> <strong><code>DUE</code></strong> <strong><code>OVERDUE</code></strong> <strong><code>PAID</code></strong> <strong><code>UNPAID</code></strong> <strong><code>CANCELLED</code></strong> <strong><code>VOID</code></strong></p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"528f75f9-82d6-413a-ba49-c1ca5776ab1a","name":"Invoice Billing Session Paid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"PAID\",\n    \"tbId\": \"65ce09e93e6577476e6dd00a\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T12:56:09.801Z\",\n    \"issueDate\": \"2024-02-15T12:55:15.616Z\",\n    \"dueDate\": \"2024-02-15T12:56:09.734Z\",\n    \"serviceStart\": \"2024-02-15T12:55:15.616Z\",\n    \"serviceEnd\": \"2024-02-15T12:55:15.616Z\",\n    \"totalTax\": \"35.81\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c99c960e-bb71-4789-ba9d-cb8c6d8149b4","name":"Invoice Subscription Draft","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"DRAFT\",\n    \"tbId\": \"66e9698399b06f8e3cbb937d\",\n    \"quoteAmount\": \"10\",\n    \"timestamp\": \"2024-09-17T11:35:31.336Z\",\n    \"issueDate\": \"2024-09-17T11:35:30.847Z\",\n    \"dueDate\": \"2024-09-20T11:35:30.847Z\",\n    \"serviceStart\": \"2024-09-16T13:00:00.000Z\",\n    \"serviceEnd\": \"2024-09-23T13:00:00.000Z\",\n    \"totalTax\": \"1.8001\",\n    \"items\": [\n        {\n            \"shippable\": false,\n            \"name\": \"Test\",\n            \"description\": \"Discover how will help you earn more money and make a seamless customer experience<br>Discover how will help you earn more money and make a seamless customer experience<br>Discover how will help you earn more money and make a seamless customer experience<br>\",\n            \"quantity\": 1,\n            \"amount\": 10,\n            \"images\": [],\n            \"taxes\": [],\n            \"id\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a9359e92-0080-4f64-a78c-9420bacc34e0","name":"Invoice Subscription Due","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"DUE\",\n    \"tbId\": \"66e6e158276467a619e77439\",\n    \"quoteAmount\": \"10\",\n    \"timestamp\": \"2024-09-17T11:38:33.572Z\",\n    \"issueDate\": \"2024-09-15T13:30:00.244Z\",\n    \"dueDate\": \"2024-09-18T13:30:00.244Z\",\n    \"serviceStart\": \"2024-09-03T18:30:00.000Z\",\n    \"serviceEnd\": \"2024-09-03T18:30:00.000Z\",\n    \"totalTax\": \"1.8001\",\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\",\n    \"subscriptionId\": \"66d6f2be1b1a8ecc351d8e59\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cbdeb6f6-295a-41d8-9e81-fb782db11598","name":"Invoice Subscription Overdue","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"OVERDUE\",\n    \"tbId\": \"66e573b8276467a619e760f9\",\n    \"quoteAmount\": \"10\",\n    \"timestamp\": \"2024-09-17T11:38:55.411Z\",\n    \"issueDate\": \"2024-09-14T11:30:00.172Z\",\n    \"dueDate\": \"2024-09-17T11:30:00.172Z\",\n    \"serviceStart\": \"2024-09-03T18:30:00.000Z\",\n    \"serviceEnd\": \"2024-09-03T18:30:00.000Z\",\n    \"totalTax\": \"1.8001\",\n    \"param1\": \"\",\n    \"param2\": \"\",\n    \"param3\": \"\",\n    \"subscriptionId\": \"66d6f2be1b1a8ecc351d8e59\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"13763cd7-7194-48d9-9231-4264d046153b","name":"Invoice Subscription Paid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"\",\n    \"tbId\": \"\",\n    \"quoteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"issueDate\": \"\",\n    \"dueDate\": \"\",\n    \"serviceStart\": \"\",\n    \"serviceEnd\": \"\",\n    \"totalTax\": \"\",\n    \"billingSessionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b688f88f-8d91-4890-85c7-1b0db62458df"},{"name":"Credit Note","id":"f509c46c-ac33-4109-a069-3da628dfa158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"{{x-api-key}}"},{"key":"x-signature","value":"{{x-signature}}"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"CREDITNOTE\",\n    \"status\": \"\",\n    \"tbId\": \"\",\n    \"quoteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"issueDate\": \"\",\n    \"dueDate\": \"\",\n    \"serviceStart\": \"\",\n    \"serviceEnd\": \"\",\n    \"totalTax\": \"\",\n    \"billingSessionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a credit note is created. Credit Note status can only be <strong><code>APPROVED</code></strong></p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"d1cc266c-fa51-41df-a026-9b46150f9e55","name":"Invoice PAID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"INVOICE\",\n    \"status\": \"PAID\",\n    \"tbId\": \"65ce09e93e6577476e6dd00a\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T12:56:09.801Z\",\n    \"issueDate\": \"2024-02-15T12:55:15.616Z\",\n    \"dueDate\": \"2024-02-15T12:56:09.734Z\",\n    \"serviceStart\": \"2024-02-15T12:55:15.616Z\",\n    \"serviceEnd\": \"2024-02-15T12:55:15.616Z\",\n    \"totalTax\": \"35.81\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f509c46c-ac33-4109-a069-3da628dfa158"},{"name":"Refund","id":"d44cc0c3-e7a8-4c6a-a6c5-72f7190ea0a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"REFUND\",\n    \"type\": \"REFUND\",\n    \"status\": \"\",\n    \"tbId\": \"\",\n    \"qouteAmount\": \"\",\n    \"timestamp\": \"\",\n    \"invoiceId\": \"\",\n    \"subscriptionId\": \"\",\n    \"billingSessionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a refund is initiated or the status is changed.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"84852ef4-882c-4f54-9b57-339f4337c982","name":"Refund PROCESSING","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"REFUND\",\n    \"type\": \"REFUND\",\n    \"status\": \"PROCESSING\",\n    \"tbId\": \"65ce0ade570326c36220728d\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T13:00:57.710Z\",\n    \"invoiceId\": \"65ce09e93e6577476e6dd00a\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f5644c48-c399-4a64-9c8e-f469810ea2d0","name":"Refund SUCCESS","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"REFUND\",\n    \"type\": \"REFUND\",\n    \"status\": \"SUCCESS\",\n    \"tbId\": \"65ce0ade570326c36220728d\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T13:00:58.813Z\",\n    \"invoiceId\": \"65ce09e93e6577476e6dd00a\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c7693262-95f3-455b-ae17-33ee7384113c","name":"Refund FAILED","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"REFUND\",\n    \"type\": \"REFUND\",\n    \"status\": \"FAILED\",\n    \"tbId\": \"65ce0ade570326c36220728d\",\n    \"quoteAmount\": \"199\",\n    \"timestamp\": \"2024-02-15T13:00:57.710Z\",\n    \"invoiceId\": \"65ce09e93e6577476e6dd00a\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d44cc0c3-e7a8-4c6a-a6c5-72f7190ea0a0"},{"name":"File Download","id":"c3ea9dc0-3a87-4e9a-8bd5-d249be0a10b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"FILE\",\n    \"type\": \"\",\n    \"tbId\": \"\",\n    \"timestamp\": \"\",\n    \"downloadLink\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a refund is initiated or the status is changed.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"6f39aeb8-0b6b-4c05-950e-837a984403a1","name":"File Download INVOICE","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"FILE\",\n    \"type\": \"INVOICE\",\n    \"tbId\": \"65ce09e93e6577476e6dd00a\",\n    \"billingSessionId\": \"65ce09b363f60144efcfbed1\",\n    \"timestamp\": \"2024-02-15T12:56:10.737Z\",\n    \"downloadLink\": \"https://{{base_url}}/download/v1.0/invoiceDownload?U2FsdGVkX1+ZIEKXZhctSgYSD6cXGjbh+3BUr2B2nQ00SrHvthhvl4jGC7fZ39Uc66xNXR/+G3eD0/wUaB8aoQ==\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c3ea9dc0-3a87-4e9a-8bd5-d249be0a10b0"},{"name":"Chargeback","id":"7eebeb17-ace4-4ef9-90c8-26ba4a7a824b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"CHARGEBACK\",\n    \"type\": \"CHARGEBACK\",\n    \"status\": \"PENDING\",\n    \"tbId\": \"\",\n    \"qouteAmount\": \"100\",\n    \"timestamp\": \"\",\n    \"invoiceId\": \"\",\n    \"subscriptionId\": \"\",\n    \"billingSessionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a chargeback is initiated or the status is changed.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7eebeb17-ace4-4ef9-90c8-26ba4a7a824b"},{"name":"Mandate","id":"785764d3-b378-4da1-9151-c29c6a82d9eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"MANDATE\",\n    \"status\": \"CREATED\",\n    \"tbId\": \"\",\n    \"qouteAmount\": \"100\",\n    \"timestamp\": \"\",\n    \"subscriptionId\": \"\",\n    \"payMethod\": \"UPI\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a mandate status is changed.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"60445d3d-fa73-4329-bba7-310d8670015f","name":"Mandate (Created)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"MANDATE\",\n    \"status\": \"CREATED\",\n    \"tbId\": \"66ebde6d11107c5eb4a29699\",\n    \"subscriptionId\": \"66ebde4911107c5eb4a29653\",\n    \"timestamp\": \"2024-09-19T08:18:53.900Z\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eae6ec54-2238-404f-9e42-2473f8df934c","name":"Mandate (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"MANDATE\",\n    \"status\": \"SUCCESS\",\n    \"tbId\": \"66ebe29a11107c5eb4a29ac5\",\n    \"subscriptionId\": \"66ebe25711107c5eb4a29a0e\",\n    \"timestamp\": \"2024-09-19T08:36:51.511Z\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0b485933-abbf-47b9-bcc1-3c9b8f6f8200","name":"Mandate Cancelled By Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"MANDATE\",\n    \"status\": \"CANCELLED\",\n    \"tbId\": \"66ebde6d11107c5eb4a29699\",\n    \"subscriptionId\": \"66ebde4911107c5eb4a29653\",\n    \"timestamp\": \"2024-09-19T08:39:43.294Z\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4149ae16-dcef-48ae-96b9-747b3e91f217","name":"Mandate Capture Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"MANDATE\",\n    \"status\": \"FAILED\",\n    \"tbId\": \"66ec03b44115ed3a42fe7735\",\n    \"subscriptionId\": \"66ec038b4115ed3a42fe76fa\",\n    \"timestamp\": \"2024-09-19T10:58:05.634Z\",\n    \"payMethod\": \"UPI\",\n    \"quoteAmount\": \"100\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"785764d3-b378-4da1-9151-c29c6a82d9eb"},{"name":"Recurring Dep","id":"86350aad-f174-4524-b91d-b7d0c6e946bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"RECURRING\",\n    \"status\": \"SUCCESS\",\n    \"tbId\": \"\",\n    \"invoiceId\": \"\",\n    \"mandateId\": \"\",\n    \"qouteAmount\": \"100\",\n    \"timestamp\": \"\",\n    \"subscriptionId\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a transaction created for the auto-debit to pay a due invoice has moved to a terminal state from the bank.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"5bb3cf9e-2b20-4667-b0e1-700cd5573032","name":"Recurring Dep (Success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"callbackType\": \"RECURRING\",\n  \"status\": \"SUCCESS\",\n  \"tbId\": \"670cc62659a2220d071aaee7\",\n  \"mandateId\": \"6703adff8d08e7f77be1b5ab\",\n  \"subscriptionId\": \"6703acfd8d08e7f77be1b369\",\n  \"invoiceId\": \"670cc5ad45bf6282a021ccc1\",\n  \"timestamp\": \"2024-10-14T08:05:05.269Z\",\n  \"quoteAmount\": \"10\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"ab3fbf6e-758b-4b85-84bc-244a83e25ecf","name":"Recurring Dep (Failed)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"callbackType\": \"RECURRING\",\n  \"status\": \"FAILED\",\n  \"tbId\": \"670cc62659a2220d071aaee7\",\n  \"mandateId\": \"6703adff8d08e7f77be1b5ab\",\n  \"subscriptionId\": \"6703acfd8d08e7f77be1b369\",\n  \"invoiceId\": \"670cc5ad45bf6282a021ccc1\",\n  \"timestamp\": \"2024-10-14T08:05:05.269Z\",\n  \"quoteAmount\": \"10\"\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"}],"_postman_id":"86350aad-f174-4524-b91d-b7d0c6e946bc"},{"name":"PACB Verification","id":"54011101-5d7b-4481-9b22-e8eef82babd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"\",\n    \"referenceId\": \"\",\n    \"tbId\": \"\",\n    \"timestamp\": \"\",\n    \"paymentVerificationStatus\": \"\",\n    \"paymentVerificationExpiry\": null,\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"\",\n            \"docType\": \"\",\n            \"docStatus\": \"\"\n        }  \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a transaction created for the auto-debit to pay a due invoice has moved to a terminal state from the bank.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"07d32b17-6142-4021-bdf9-7938a04a82a1","name":"Verification Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"ACTION_REQUIRED\",\n    \"paymentVerificationExpiry\": \"2025-09-25T23:59:59+05:30\",\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"ACTION_REQUIRED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"ccb127cd-a1bf-45c1-9b90-de3528505774","name":"Verification In Review","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"IN_REVIEW\",\n    \"paymentVerificationExpiry\": null,\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"01bb3b21-76bb-456f-a303-e3f747389696","name":"Verification Expired","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"EXPIRED\",\n    \"paymentVerificationExpiry\": \"2025-09-25T23:59:59+05:30\",\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"a7650254-cd0b-4073-ac9d-d6633c12d95e","name":"Verification Completed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"callbackType\": \"PAYMENT_VERIFICATION\",\n  \"status\": \"SUCCESS\",\n  \"referenceId\": \"test-tsp-0028\",\n  \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n  \"timestamp\": \"2025-09-05T18:56:41.667Z\",\n  \"paymentVerificationStatus\": \"VERIFIED\",\n  \"paymentVerificationExpiry\": null,\n  \"requiredDetails\": [\n    {\n      \"remarks\": null,\n      \"docName\": \"importer_address\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"country_of_origin\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"invoice_file\",\n      \"docType\": \"DOCUMENT\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"invoice_number\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"ecommerce_order_serial_number\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"goods_description\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"importer_name\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"}],"_postman_id":"54011101-5d7b-4481-9b22-e8eef82babd3"},{"name":"KYC Verification","id":"bf51b658-c7e8-461a-9a81-874736981ca7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"\",\n    \"referenceId\": \"\",\n    \"tbId\": \"\",\n    \"timestamp\": \"\",\n    \"paymentVerificationStatus\": \"\",\n    \"paymentVerificationExpiry\": null,\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"\",\n            \"docType\": \"\",\n            \"docStatus\": \"\"\n        }  \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}","description":"<p>This webhook is sent to the configured partner URL when a transaction created for the auto-debit to pay a due invoice has moved to a terminal state from the bank.</p>\n","urlObject":{"host":["{{callbackURL}}"],"query":[],"variable":[]}},"response":[{"id":"6a4fb0f3-82a4-4ddf-a229-40f4b9017bb4","name":"Verification Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"ACTION_REQUIRED\",\n    \"paymentVerificationExpiry\": \"2025-09-25T23:59:59+05:30\",\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"ACTION_REQUIRED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"36cef1a9-7202-469c-a863-21a2780f0b20","name":"Verification In Review","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"IN_REVIEW\",\n    \"paymentVerificationExpiry\": null,\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"a1a56be5-cc80-414c-80d8-cda22dd2df9c","name":"Verification Expired","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callbackType\": \"PAYMENT_VERIFICATION\",\n    \"status\": \"SUCCESS\",\n    \"referenceId\": \"test-tsp-0028\",\n    \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n    \"timestamp\": \"2025-09-05T18:54:22.485Z\",\n    \"paymentVerificationStatus\": \"EXPIRED\",\n    \"paymentVerificationExpiry\": \"2025-09-25T23:59:59+05:30\",\n    \"requiredDetails\": [\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_address\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"country_of_origin\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_file\",\n            \"docType\": \"DOCUMENT\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"invoice_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"ecommerce_order_serial_number\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"IN_REVIEW\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"goods_description\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        },\n        {\n            \"remarks\": null,\n            \"docName\": \"importer_name\",\n            \"docType\": \"VALUE\",\n            \"docStatus\": \"VERIFIED\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"},{"id":"45d733d4-932d-4e15-bf54-9e18260f6968","name":"Verification Completed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"callbackType\": \"PAYMENT_VERIFICATION\",\n  \"status\": \"SUCCESS\",\n  \"referenceId\": \"test-tsp-0028\",\n  \"tbId\": \"68bb1b3dc00c41e2ddbd40ef\",\n  \"timestamp\": \"2025-09-05T18:56:41.667Z\",\n  \"paymentVerificationStatus\": \"VERIFIED\",\n  \"paymentVerificationExpiry\": null,\n  \"requiredDetails\": [\n    {\n      \"remarks\": null,\n      \"docName\": \"importer_address\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"country_of_origin\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"invoice_file\",\n      \"docType\": \"DOCUMENT\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"invoice_number\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"ecommerce_order_serial_number\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"goods_description\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    },\n    {\n      \"remarks\": null,\n      \"docName\": \"importer_name\",\n      \"docType\": \"VALUE\",\n      \"docStatus\": \"VERIFIED\"\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{callbackURL}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"ack\": true\n}"}],"_postman_id":"bf51b658-c7e8-461a-9a81-874736981ca7"}],"id":"6adeb352-8959-4cff-913c-91e11edb25c5","description":"<p>Partner will receive events on their configured server URL. These webhooks are POST requests originating from our server. Authorization headers will also be sent so the partner can authenticate that the request was created by the original web server only.</p>\n<p>Merchants will configure this URL in the panel to start receiving webhook events.</p>\n<p>For documentation and reading purposes, <a href=\"https://\">https://configuredURLFromBroker.com</a> URL is used. But, in the production environment, the configured URL of the partner will be used.</p>\n<h4>Callback Response</h4>\n\n<p>Partners should respond to the callback with a JSON response <code>{\"ack\": true}</code> and an HTTP status code <code>200</code>. No other response body or HTTP status code will be treated as the acknowledgement of the callback.<br />If the merchant fails to send the response, we will send the callback again. The maximum number of attempts by us will be 3. If the partner fails to acknowledge the callback in three attempts, then there will be no subsequent callback. The partner can resend the callback from the partner dashboard as well.</p>\n<h4>Signature Verification</h4>\n\n<p>We use the same method to create the signature that is used in the authorization headers.</p>\n","_postman_id":"6adeb352-8959-4cff-913c-91e11edb25c5"},{"name":"Other","item":[{"name":"Get Team Members","id":"3b0adee7-35c8-4c1b-b446-230525bb908b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"<p><strong>Mandatory</strong> (Optional only if Extended Signature Verification is enabled)</p>\n","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"<p><strong>Optional</strong> (Mandatory only if Extended Signature Verification is enabled)</p>\n","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/user/v1.0/getAllUsers","description":"<p>This API is to get the sub merchants for aggregators or the team members for merchants.</p>\n<h4>Request Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object <code>Mandatory</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h4>Response Parameters</h4>\n\n<table><tbody><tr><td><div><b>Parameter</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Description</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Status response</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sub_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used for internal purposes only</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of Objects</div><div><div><div><div></div></div></div><div></div></div></td><td><div>All the users</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["user","v1.0","getAllUsers"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"0fbe0da6-01da-42ce-bbc5-c1063e8e0331","name":"Get Team Members","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/user/v1.0/getAllUsers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jan 2026 06:20:44 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"2971"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"b9b-niDG2WgJmqa2hRvU6B6YSn7P1Fo\""}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"697360f1fb7fa81aeea03505\",\n            \"masterMerchantIds\": [\n                \"6517dbc413eb44ed8c817c52\"\n            ],\n            \"subMerchants\": false,\n            \"email\": \"zeta_supervisor@mailinator.com\",\n            \"name\": \"Zeta Supervisor\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"SUPERVISOR\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"wallet\": {\n                    \"enabled\": false,\n                    \"currency\": [],\n                    \"minPayin\": 1,\n                    \"maxPayin\": 1000000,\n                    \"payoutEnabled\": false,\n                    \"minPayout\": 1,\n                    \"maxPayout\": 1000000,\n                    \"pgOptions\": []\n                },\n                \"whitelistedHosts\": [],\n                \"iframeAllowedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": true,\n                \"checkoutTaxDetails\": true,\n                \"isCustomerReject\": true,\n                \"showProductItemImage\": true,\n                \"invoiceMerchantLogo\": false,\n                \"amtDecimalAllowed\": false,\n                \"dynamicProductListing\": false,\n                \"mandatoryProductListing\": false,\n                \"tspModule\": false,\n                \"enableMandatoryPopup\": false,\n                \"enableCustomerUpiLimit\": false,\n                \"enableUpiVerifyLimit\": false,\n                \"enableB2bBilling\": true,\n                \"mandatePayLastInvoice\": true,\n                \"secondAlternatePsp\": false,\n                \"couponOnSubscription\": false,\n                \"enableMobileOtpVerify\": false,\n                \"isMobileMandatory\": false,\n                \"iframeAllowed\": false,\n                \"allowOnlyWhitelistedUrls\": false,\n                \"isMobileToUpi\": false,\n                \"expressMobileCheckout\": false,\n                \"isSendTxnSms\": false,\n                \"isUndeliveredEmailEdit\": false,\n                \"isWebstoreEnabled\": false,\n                \"isOrderVendorDetails\": false,\n                \"pacbModule\": false,\n                \"customerIpCheck\": true,\n                \"s2sEnabled\": false,\n                \"isCheckoutNameMandatory\": true,\n                \"createVirtualAccount\": false,\n                \"isPrepaid\": false,\n                \"kycEnabled\": false,\n                \"sendKycEmail\": false,\n                \"pacbInvoiceUploadFlow\": false,\n                \"isDropInEnabled\": false,\n                \"isMultipleCheckout\": false,\n                \"whitelistedUrls\": [],\n                \"pgOptions\": [],\n                \"subPgOptions\": [],\n                \"pgNetworkOptions\": [],\n                \"subPgNetworkOptions\": [],\n                \"checkoutAppConfig\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2026-01-23T11:52:17.916Z\"\n            },\n            \"lastLogin\": \"2026-01-23T12:00:19.740Z\",\n            \"createdDate\": \"2026-01-23T11:52:17.916Z\"\n        },\n        {\n            \"_id\": \"65d82fdd43bcc08f7a6358fe\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"masterMerchantIds\": [],\n            \"subMerchants\": false,\n            \"email\": \"agent@zeta.com\",\n            \"name\": \"Zeta Agent\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"AGENT\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"whitelistedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"showUpiIntent\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": false,\n                \"checkoutTaxDetails\": true,\n                \"pgOptions\": [],\n                \"subPgOptions\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2024-02-23T05:40:45.975Z\"\n            },\n            \"lastLogin\": \"2024-02-23T05:40:45.975Z\",\n            \"createdDate\": \"2024-02-23T05:40:45.975Z\"\n        }\n    ],\n    \"maxPageSize\": 50,\n    \"hasMore\": false\n}"},{"id":"cf6c7972-e0f4-4549-aa22-9188b8a138f4","name":"Get Partners (Aggregator)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","type":"text"},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"697360f1fb7fa81aeea03505\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/user/v1.0/getAllUsers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jan 2026 06:21:54 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"2971"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"b9b-niDG2WgJmqa2hRvU6B6YSn7P1Fo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"697360f1fb7fa81aeea03505\",\n            \"masterMerchantIds\": [\n                \"6517dbc413eb44ed8c817c52\"\n            ],\n            \"subMerchants\": false,\n            \"email\": \"zeta_supervisor@mailinator.com\",\n            \"name\": \"Zeta Supervisor\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"SUPERVISOR\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"wallet\": {\n                    \"enabled\": false,\n                    \"currency\": [],\n                    \"minPayin\": 1,\n                    \"maxPayin\": 1000000,\n                    \"payoutEnabled\": false,\n                    \"minPayout\": 1,\n                    \"maxPayout\": 1000000,\n                    \"pgOptions\": []\n                },\n                \"whitelistedHosts\": [],\n                \"iframeAllowedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": true,\n                \"checkoutTaxDetails\": true,\n                \"isCustomerReject\": true,\n                \"showProductItemImage\": true,\n                \"invoiceMerchantLogo\": false,\n                \"amtDecimalAllowed\": false,\n                \"dynamicProductListing\": false,\n                \"mandatoryProductListing\": false,\n                \"tspModule\": false,\n                \"enableMandatoryPopup\": false,\n                \"enableCustomerUpiLimit\": false,\n                \"enableUpiVerifyLimit\": false,\n                \"enableB2bBilling\": true,\n                \"mandatePayLastInvoice\": true,\n                \"secondAlternatePsp\": false,\n                \"couponOnSubscription\": false,\n                \"enableMobileOtpVerify\": false,\n                \"isMobileMandatory\": false,\n                \"iframeAllowed\": false,\n                \"allowOnlyWhitelistedUrls\": false,\n                \"isMobileToUpi\": false,\n                \"expressMobileCheckout\": false,\n                \"isSendTxnSms\": false,\n                \"isUndeliveredEmailEdit\": false,\n                \"isWebstoreEnabled\": false,\n                \"isOrderVendorDetails\": false,\n                \"pacbModule\": false,\n                \"customerIpCheck\": true,\n                \"s2sEnabled\": false,\n                \"isCheckoutNameMandatory\": true,\n                \"createVirtualAccount\": false,\n                \"isPrepaid\": false,\n                \"kycEnabled\": false,\n                \"sendKycEmail\": false,\n                \"pacbInvoiceUploadFlow\": false,\n                \"isDropInEnabled\": false,\n                \"isMultipleCheckout\": false,\n                \"whitelistedUrls\": [],\n                \"pgOptions\": [],\n                \"subPgOptions\": [],\n                \"pgNetworkOptions\": [],\n                \"subPgNetworkOptions\": [],\n                \"checkoutAppConfig\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2026-01-23T11:52:17.916Z\"\n            },\n            \"lastLogin\": \"2026-01-23T12:00:19.740Z\",\n            \"createdDate\": \"2026-01-23T11:52:17.916Z\"\n        },\n        {\n            \"_id\": \"65d82fdd43bcc08f7a6358fe\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"masterMerchantIds\": [],\n            \"subMerchants\": false,\n            \"email\": \"agent@zeta.com\",\n            \"name\": \"Zeta Agent\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"AGENT\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"whitelistedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"showUpiIntent\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": false,\n                \"checkoutTaxDetails\": true,\n                \"pgOptions\": [],\n                \"subPgOptions\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2024-02-23T05:40:45.975Z\"\n            },\n            \"lastLogin\": \"2024-02-23T05:40:45.975Z\",\n            \"createdDate\": \"2024-02-23T05:40:45.975Z\"\n        }\n    ],\n    \"maxPageSize\": 50,\n    \"hasMore\": false\n}"},{"id":"87df2224-4222-4e7b-b4cd-573386e90de3","name":"Get Partner's Team (Aggregator)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-signature","value":"{{x-signature}}","description":"**Mandatory** (Optional only if Extended Signature Verification is enabled)","type":"text"},{"key":"x-signature-extended","value":"{{x-signature-extended}}","description":"**Optional** (Mandatory only if Extended Signature Verification is enabled)","type":"text","disabled":true},{"key":"x-partner-merchant-id","value":"{{x-partner-merchant-id}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/user/v1.0/getAllUsers"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 26 Jan 2026 06:46:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2971"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"b9b-niDG2WgJmqa2hRvU6B6YSn7P1Fo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": [\n        {\n            \"_id\": \"697360f1fb7fa81aeea03505\",\n            \"masterMerchantIds\": [\n                \"6517dbc413eb44ed8c817c52\"\n            ],\n            \"subMerchants\": false,\n            \"email\": \"zeta_supervisor@mailinator.com\",\n            \"name\": \"Zeta Supervisor\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"SUPERVISOR\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"wallet\": {\n                    \"enabled\": false,\n                    \"currency\": [],\n                    \"minPayin\": 1,\n                    \"maxPayin\": 1000000,\n                    \"payoutEnabled\": false,\n                    \"minPayout\": 1,\n                    \"maxPayout\": 1000000,\n                    \"pgOptions\": []\n                },\n                \"whitelistedHosts\": [],\n                \"iframeAllowedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": true,\n                \"checkoutTaxDetails\": true,\n                \"isCustomerReject\": true,\n                \"showProductItemImage\": true,\n                \"invoiceMerchantLogo\": false,\n                \"amtDecimalAllowed\": false,\n                \"dynamicProductListing\": false,\n                \"mandatoryProductListing\": false,\n                \"tspModule\": false,\n                \"enableMandatoryPopup\": false,\n                \"enableCustomerUpiLimit\": false,\n                \"enableUpiVerifyLimit\": false,\n                \"enableB2bBilling\": true,\n                \"mandatePayLastInvoice\": true,\n                \"secondAlternatePsp\": false,\n                \"couponOnSubscription\": false,\n                \"enableMobileOtpVerify\": false,\n                \"isMobileMandatory\": false,\n                \"iframeAllowed\": false,\n                \"allowOnlyWhitelistedUrls\": false,\n                \"isMobileToUpi\": false,\n                \"expressMobileCheckout\": false,\n                \"isSendTxnSms\": false,\n                \"isUndeliveredEmailEdit\": false,\n                \"isWebstoreEnabled\": false,\n                \"isOrderVendorDetails\": false,\n                \"pacbModule\": false,\n                \"customerIpCheck\": true,\n                \"s2sEnabled\": false,\n                \"isCheckoutNameMandatory\": true,\n                \"createVirtualAccount\": false,\n                \"isPrepaid\": false,\n                \"kycEnabled\": false,\n                \"sendKycEmail\": false,\n                \"pacbInvoiceUploadFlow\": false,\n                \"isDropInEnabled\": false,\n                \"isMultipleCheckout\": false,\n                \"whitelistedUrls\": [],\n                \"pgOptions\": [],\n                \"subPgOptions\": [],\n                \"pgNetworkOptions\": [],\n                \"subPgNetworkOptions\": [],\n                \"checkoutAppConfig\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2026-01-23T11:52:17.916Z\"\n            },\n            \"lastLogin\": \"2026-01-23T12:00:19.740Z\",\n            \"createdDate\": \"2026-01-23T11:52:17.916Z\"\n        },\n        {\n            \"_id\": \"65d82fdd43bcc08f7a6358fe\",\n            \"merchantId\": \"6517dbc413eb44ed8c817c52\",\n            \"masterMerchantIds\": [],\n            \"subMerchants\": false,\n            \"email\": \"agent@zeta.com\",\n            \"name\": \"Zeta Agent\",\n            \"verified_mobile\": false,\n            \"verified_email\": true,\n            \"verified_kyc\": true,\n            \"verified_bank\": false,\n            \"tfa_enabled\": false,\n            \"role\": \"AGENT\",\n            \"permissions\": [],\n            \"deleted\": false,\n            \"suspended\": false,\n            \"country\": \"USA\",\n            \"riskCategory\": \"0\",\n            \"metaInfo\": {\n                \"preferredCurrency\": \"INR\",\n                \"theme\": \"LIGHT\",\n                \"viewVersion\": \"OLD\"\n            },\n            \"config\": {\n                \"whitelistedHosts\": [],\n                \"showPan\": true,\n                \"showPayPieChart\": false,\n                \"showUpiIntent\": false,\n                \"allowSupervisor\": false,\n                \"allowRefLogo\": false,\n                \"singlePageFlow\": true,\n                \"sendCustomerEmail\": true,\n                \"checkoutInvoice\": false,\n                \"checkoutTaxDetails\": true,\n                \"pgOptions\": [],\n                \"subPgOptions\": []\n            },\n            \"settlement\": {\n                \"lastSettlementDate\": \"2024-02-23T05:40:45.975Z\"\n            },\n            \"lastLogin\": \"2024-02-23T05:40:45.975Z\",\n            \"createdDate\": \"2024-02-23T05:40:45.975Z\"\n        }\n    ],\n    \"maxPageSize\": 50,\n    \"hasMore\": false\n}"}],"_postman_id":"3b0adee7-35c8-4c1b-b446-230525bb908b"},{"name":"Get Pincode","id":"7396ca56-b6b8-4b40-be81-26dffe34a8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/getPincode?pincode=247001","urlObject":{"path":["getPincode"],"host":["{{base_url}}"],"query":[{"key":"pincode","value":"247001"}],"variable":[]}},"response":[{"id":"1dc23194-ed17-4360-8643-64a84ff2c422","name":"Get Pincode","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/getPincode?pincode=247001","host":["{{base_url}}"],"path":["getPincode"],"query":[{"key":"pincode","value":"247001"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 26 Jan 2026 06:49:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"116"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, HEAD"},{"key":"Strict-Transport-Security","value":"max-age=31536000;"},{"key":"X-Frame-Options","value":"Deny"},{"key":"Content-Security-Policy","value":"default-src 'self' https://cdn.transactbridge.com"},{"key":"ETag","value":"W/\"74-YnIHikokzL4uyUeggqYKbg3wJLs\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"sub_status\": null,\n    \"msg\": \"\",\n    \"data\": {\n        \"code\": \"247001\",\n        \"state\": \"Uttar Pradesh\",\n        \"city\": \"SAHARANPUR\"\n    }\n}"}],"_postman_id":"7396ca56-b6b8-4b40-be81-26dffe34a8d6"}],"id":"b6aa4bd4-60bb-4d2a-b021-a8ba881b45fb","_postman_id":"b6aa4bd4-60bb-4d2a-b021-a8ba881b45fb","description":""}],"event":[{"listen":"prerequest","script":{"id":"92c06ca1-2055-40e8-b1ef-2628d3e23669","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"722f6da3-588f-435f-8d51-c700ebe34d50","type":"text/javascript","exec":[""]}}]}