{"info":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p><a href=\"https://inxy.io\">INXY.io</a> is a fintech platform that combines on-chain and off-chain solutions to simplify payments in cryptocurrency.</p>\n<p><strong>INXY Paygate API</strong> is a robust pay-in interface that lets you accept cryptocurrency payments directly inside your application or website.<br>The entire flow is friction-free: the user never leaves your app—no pop-ups, iFrames, or redirects.<br>As soon as the customer’s crypto transaction is accepted and verified, the funds are credited to your INXY balance.</p>\n<p>To start accepting crypto with the Paygate API, follow these steps:</p>\n<ol>\n<li><p><strong>Create a Session</strong><br> Call POST /sessions with the basic order details—customer info, expected amount, currency, and network.</p>\n</li>\n<li><p><strong>Show Session Info to the Customer</strong><br> Retrieve the session (GET /sessions/{id}) and display the wallet address, currency, network, and amount so the user can make the payment.</p>\n</li>\n<li><p><strong>Listen for Webhooks</strong><br> Subscribe to payments.received (and other relevant events) to unlock or deliver the product once the payment is confirmed.</p>\n</li>\n<li><p><strong>Handle Exceptions</strong><br> If the customer never starts the payment or sends an incorrect amount, Paygate fires specific webhook events (payments.received, payments.expired, etc.).<br> Decide how your app should respond—e.g., prompt the user to try again, or automatically create a new session.</p>\n</li>\n</ol>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>To get started with INXY Paygate, follow these steps to make your first crypto transaction in the INXY Sandbox:</p>\n<ul>\n<li><p>Note: The flow discussed below will require you to make a crypto transaction via Testnet. If you’re new to crypto, install the TRONLink browser extension and switch to the TRON Nile Testnet (the network we use in our Sandbox). To top up your test balance, visit the official TRON Nile faucet: <a href=\"https://nileex.io/join/getJoinPage\">https://nileex.io/join/getJoinPage</a></p>\n</li>\n<li><p>Sign up at <a href=\"https://app.sandbox-inxy.io\">https://app.sandbox-inxy.io</a>.</p>\n</li>\n<li><p>Go to the Merchant Settings tab in your dashboard and click Generate API Key to create your API credentials.</p>\n</li>\n<li><p>To create a new pay-in session, send a POST request to /sessions using the INXY Paygate API.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X POST \"https://api.sandbox-inxy.io/paygate/v1/sessions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer ${YOUR_TOKEN}\" \\\n  -H \"Cache-Control: no-cache\" \\\n  -H \"Accept-Encoding: gzip, deflate, br\" \\\n  --data '{\n    \"fiat_amount\": 5,\n    \"fiat_currency\": \"EUR\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"lifetime_minutes\": 30,\n    \"amount_deviation_percentage\": 1.00,\n    \"cryptocurrency\": {\n      \"code\": \"USDT\",\n      \"blockchain\": \"tron\",\n      \"coin_type\": \"trc20\"\n    },\n    \"customer\": {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john.doe@example.cc\"\n    }\n  }'\\\n  -o -\n\n</code></pre>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_LVo6JpWzm8a4N8n\",\n            \"object\": \"session\",\n            \"status\": \"active\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"5\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1750099304\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_W4Z3vaqJ4npDAng\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 5.791145,\n            \"fiat_amount\": 5,\n            \"paid_amount\": 0,\n            \"paid_fiat_amount\": 0,\n            \"exchange_rate\": \"0.86338716\",\n            \"status\": \"waiting_payment\",\n            \"created_date\": 1750099305,\n            \"issued_wallet\": \"TNzF9UYidjfARv3182qDqpGiA3bp6HiueT\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": \"TNzF9UYidjfARv3182qDqpGiA3bp6HiueT\",\n                \"reserved_until\": 1750101105\n            }\n        }\n    }\n}\n\n</code></pre>\n<ul>\n<li>Complete your crypto transfer on the testnet using your preferred wallet or service.</li>\n</ul>\n<p>Make sure you choose the correct network, currency, and amount, and complete the transaction within the allotted session-lifetime window (30 minutes in this example). You’ll find all the necessary transaction details right here:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>payment_intent.issued_wallet_details.address</code></td>\n<td>Destination wallet address</td>\n</tr>\n<tr>\n<td><code>payment_intent.currency.blockchain</code></td>\n<td>Blockchain</td>\n</tr>\n<tr>\n<td><code>payment_intent.currency.code</code></td>\n<td>Crypto currency</td>\n</tr>\n<tr>\n<td><code>payment_intent.amount</code></td>\n<td>Crypto amount</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Just wait a minute or two, then check your session again.</li>\n</ul>\n<p>When INXY receives your transaction, the status of the underlying <strong><code>payment_intent</code></strong> will change to <code>waiting_confirmation</code>.</p>\n<p>If you see this status, sit back and relax—your transaction is simply waiting for blockchain confirmations, which can take a while. If the status hasn’t switched to waiting_confirmation within about 15 minutes on the major test networks, double-check the details you sent and try again; you may have submitted the request too quickly or with incorrect parameters.</p>\n<p>Example request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -sS -X GET \"https://api.sandbox-inxy.io/paygate/v1/sessions/ses_LVo6JpWzm8a4N8n\" \\   \n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer ${YOUR_TOKEN}\" \\\n  -H \"Cache-Control: no-cache\" \\\n  -H \"Accept-Encoding: gzip, deflate, br\" \\\n  -o -\n\n</code></pre>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_LVo6JpWzm8a4N8n\",\n            \"object\": \"session\",\n            \"status\": \"active\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"5\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1750099304\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_W4Z3vaqJ4npDAng\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 5.791145,\n            \"fiat_amount\": 5,\n            \"paid_amount\": 0,\n            \"paid_fiat_amount\": 0,\n            \"exchange_rate\": \"0.86338716\",\n            \"status\": \"waiting_confirmation\",\n            \"created_date\": 1750099305,\n            \"issued_wallet\": null,\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [\n                {\n                    \"id\": \"pay_Y3Gz0pzdLNXEQqj\",\n                    \"object\": \"payment\",\n                    \"status\": \"pending\",\n                    \"sub_status\": \"pending\",\n                    \"currency_code\": \"USDT\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"amount\": 5.791145,\n                    \"fiat_amount\": 5,\n                    \"fiat_currency_code\": \"EUR\",\n                    \"created_date\": 1750099591,\n                    \"confirmed_date\": null\n                }\n            ],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": \"TNzF9UYidjfARv3182qDqpGiA3bp6HiueT\",\n                \"reserved_until\": null\n            }\n        }\n    }\n}\n\n</code></pre>\n<ul>\n<li>After 5 minutes, check your session again.</li>\n</ul>\n<p>By then it should be confirmed: the session status will be finished, and the associated payment_intent will show paid. Keep in mind, that on Production it could take up to 30 minutes.</p>\n<p>Example request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -sS -X GET \"https://api.sandbox-inxy.io/paygate/v1/sessions/ses_LVo6JpWzm8a4N8n\" \\   \n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer ${YOUR_TOKEN}\" \\\n  -H \"Cache-Control: no-cache\" \\\n  -H \"Accept-Encoding: gzip, deflate, br\" \\\n  -o -\n\n</code></pre>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_LVo6JpWzm8a4N8n\",\n            \"object\": \"session\",\n            \"status\": \"finished\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"5\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1750099304\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_W4Z3vaqJ4npDAng\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 5.791145,\n            \"fiat_amount\": 5,\n            \"paid_amount\": 5.791145,\n            \"paid_fiat_amount\": 5,\n            \"exchange_rate\": \"0.86338716\",\n            \"status\": \"paid\",\n            \"created_date\": 1750099305,\n            \"issued_wallet\": null,\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [\n                {\n                    \"id\": \"pay_Y3Gz0pzdLNXEQqj\",\n                    \"object\": \"payment\",\n                    \"status\": \"finished\",\n                    \"sub_status\": \"finished\",\n                    \"currency_code\": \"USDT\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"amount\": 5.791145,\n                    \"fiat_amount\": 5,\n                    \"fiat_currency_code\": \"EUR\",\n                    \"created_date\": 1750099591,\n                    \"confirmed_date\": 1750099685\n                }\n            ],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0.057912\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": null,\n                \"reserved_until\": null\n            }\n        }\n    }\n}\n\n</code></pre>\n<ul>\n<li>Now the only thing left is to log into your INXY account on Sandbox and check that the funds have been credited to your balance.</li>\n</ul>\n<p>Congrats! You know the drill—let’s dive into INXY’s advanced topics.</p>\n<h1 id=\"environments\">Environments</h1>\n<p>INXY Paygate API provides two separate environments—Sandbox for testing and Production for live transactions. Each environment has its own base URL and requires its own API key.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Base URL</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sandbox</td>\n<td><code>https://api.sandbox-inxy.io/paygate/v1</code></td>\n<td>Free testnet coins accepted.</td>\n</tr>\n<tr>\n<td>Production</td>\n<td><code>https://api.inxy.io/paygate/v1</code></td>\n<td>Main‑net only; real settlement</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following network are supported in Sandbox as substitutes for Production main networks.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Network</th>\n<th><strong>Production/ Mainnet</strong></th>\n<th>Sandbox/Testnet</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Tron</td>\n<td><code>TRC-20</code></td>\n<td>TRON Nile</td>\n</tr>\n<tr>\n<td>Ethereum</td>\n<td><code>ERC-20</code></td>\n<td>Sepolia</td>\n</tr>\n<tr>\n<td>Polygon</td>\n<td><code>POLY</code></td>\n<td>Amoy</td>\n</tr>\n<tr>\n<td>Bitcoin</td>\n<td><code>BCS</code></td>\n<td>Testnet</td>\n</tr>\n</tbody>\n</table>\n</div><p>You can switch between environments by changing the base URL. For Sandbox and Production environments you would need separate API keys.</p>\n<h1 id=\"list-of-ips\">List of IPs</h1>\n<p>All webhooks are sent form these IPs. You can add them to your server whitelist if needed:</p>\n<p><strong>Sandbox</strong></p>\n<ul>\n<li><p><code>88.208.3.157</code></p>\n</li>\n<li><p><code>13.62.133.170</code></p>\n</li>\n</ul>\n<p><strong>Production</strong></p>\n<ul>\n<li><p><code>159.69.13.203</code></p>\n</li>\n<li><p><code>3.64.216.48</code></p>\n</li>\n<li><p><code>51.20.226.59</code></p>\n</li>\n<li><p><code>51.21.206.133</code></p>\n</li>\n<li><p><code>16.16.62.50</code></p>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All merchant requests are authenticated by API Key.</p>\n<p>To use the API Key please do the following:</p>\n<ol>\n<li><p>Sign up in the corresponding environment</p>\n</li>\n<li><p>Complete your merchant profile</p>\n</li>\n<li><p>Generate an API key</p>\n</li>\n<li><p>Generate a Secret key (if needed)</p>\n</li>\n<li><p>Add an API key into your headers of your request under Bearer type.</p>\n</li>\n</ol>\n<h1 id=\"errors-http-response-codes\">Errors (HTTP response codes)</h1>\n<p>INXY uses conventional HTTP response codes to signal the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range denote an client-size error (e.g., a required parameter was omitted, etc.). Codes in the 5xx range mark an error on the INXY's side (these are rare).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Response</th>\n<th>Explanation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200</code></td>\n<td><code>OK</code></td>\n<td>Operation successful.</td>\n</tr>\n<tr>\n<td><code>201</code></td>\n<td><code>Created</code></td>\n<td>Resource created.</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>Bad Request</code></td>\n<td>The request was unacceptable, often due to missing a required parameter.</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>Unauthorized</code></td>\n<td>No valid API key provided.</td>\n</tr>\n<tr>\n<td><code>403</code></td>\n<td><code>Forbidden</code></td>\n<td>The API key doesn't have permissions to perform the request.</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>Not Found</code></td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td><code>422</code></td>\n<td><code>Unprocessable Entity</code></td>\n<td>The request could not be understood by the server due to malformed syntax.</td>\n</tr>\n<tr>\n<td><code>429</code></td>\n<td><code>Too Many Requests</code></td>\n<td>Too many requests hit the API too quickly. We recommend an exponential backoff.</td>\n</tr>\n<tr>\n<td><code>500, 502, 503, 504</code></td>\n<td><code>Server Errors</code></td>\n<td>Something went wrong on INXY's end.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"resources-overview\">Resources overview</h1>\n<p>The API exposes only the primitives you need to embed crypto checkouts inside a web or mobile experience:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Resource</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Session</strong></td>\n<td>This is a high-level entity that mimics communication with the end user. Each time you are going to accept crypto from your customer, you would need to create a new session.</td>\n</tr>\n<tr>\n<td><strong>Payment Intent</strong></td>\n<td>Dependent object that tracks on‑chain deposits, handles partial payments, and ultimately succeeds, cancels, or expires. Effectively, this is an invoice for your customer to deliver cryptocurrency onto your balance.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following table summarises available status movements of a Session and Payment intent along with events that trigger the change.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event</th>\n<th>Payment Intent Status</th>\n<th>Session Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Session created</td>\n<td><code>waiting_payment</code></td>\n<td><code>active</code></td>\n</tr>\n<tr>\n<td>Payment Received</td>\n<td><code>waiting_confirmation</code></td>\n<td><code>active</code></td>\n</tr>\n<tr>\n<td>Payment Confirmed</td>\n<td><code>paid</code></td>\n<td><code>finished</code></td>\n</tr>\n<tr>\n<td>Partial Payment Confirmed</td>\n<td><code>partially_paid</code></td>\n<td><code>active</code></td>\n</tr>\n<tr>\n<td>Partial Payment Cancelled</td>\n<td><code>canceled</code></td>\n<td><code>canceled</code></td>\n</tr>\n<tr>\n<td>Session expired</td>\n<td><code>expired</code></td>\n<td><code>expired</code></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payment-flows\">Payment Flows</h1>\n<h3 id=\"summary\">Summary</h3>\n<p><strong>Basic flow (single-currency)</strong></p>\n<p>The default straight-through path when you know exactly which coin you want to receive. It’s ideal for subscription apps, fixed-price digital goods, or any storefront where “Pay ‹amount› in USDT-TRON” and the wallet address is all the customer needs to see. Because there’s a single amount, a single address, and zero choices, the user journey is as short as possible and you get immediate pricing clarity.</p>\n<p><strong>Partial payment flow</strong></p>\n<p>A fallback for those inevitable moments when a customer sends the wrong amount (network fees, fat-fingered copy-pastes, or split balances). Instead of losing the sale or opening a support ticket, you choose one of three business outcomes on the fly: accept the smaller sum and deliver a proportional product, reject it, or ask the shopper to top-up what’s missing. This keeps revenue, customer satisfaction, and reconciliation all under control without manual intervention.</p>\n<p>Note: You can control the allowed under-payment percentage in two ways—either in the INXY dashboard (Merchant Settings) or per request via the <code>amount_deviation_percentage</code> parameter. As long as the received amount stays above that threshold, INXY will automatically accept the payment and you won’t need to invoke the partial-payment flow.</p>\n<p><strong>Multi-currency flow</strong><br>A flexible checkout for businesses that let shoppers decide which cryptocurrency to spend. Think SaaS tools that cater to global users with different preferred coins, or on-chain wallets where players hold multiple tokens. You lock the price in fiat, present a menu of supported assets, and only create the final invoice once the user picks their coin. The result is fewer abandoned carts, fewer stale quotes, and a smoother experience for customers who juggle multiple wallets.</p>\n<h3 id=\"basic-flow\">Basic Flow</h3>\n<p>Most basic user scenarios are either the user completes payment, or not.</p>\n<p><strong>Payment Successful</strong></p>\n<p>Successful case implies that the user pays in full and money got credited to the merchant's wallet. <strong><code>session</code></strong> gets <code>finished</code> and payment intent becomes <code>paid</code>.</p>\n<img src=\"https://content.pstmn.io/c78ab821-4b88-4f0d-bb99-37d7bf078317/Zmxvd19zdWNjZXNzLnBuZw==\">\n\n<p><strong>Payment Expired</strong></p>\n<p>Once <strong><code>session</code></strong> time elapses, it gets <code>expired</code> along with the <strong><code>payment_intent</code></strong>. In such cases another session must be created to accept funds from the customer, because expired sessions are disabled for pay-ins.</p>\n<p><em>Note: Sometimes clients sent funds after sessions got expired. Such transactions must be processed by INXY support.</em></p>\n<img src=\"https://content.pstmn.io/931c3861-b3e6-435a-9358-2beb12c9cb6c/Zmxvd19leHBpcmVkLnBuZw==\">\n\n<h3 id=\"partial-payment-flow\">Partial Payment Flow</h3>\n<p>INXY Paygate API supports several ways how merchant can process partially paid transactions, when customer didn't pay the expected amount in full.</p>\n<p><strong>Payment Accepted</strong><br>Merchant can decide to accept this transaction. This is handy when, merchant can deliver part of the original value to the customer. For example, to top up customer account with the fraction of the original amount.</p>\n<p><strong>Payment Declined</strong></p>\n<p>Other way around, merchant can decide to cancel such payment. This may require making a refunding crypto transaction.</p>\n<p><strong>Remaining amount requested</strong></p>\n<p>Finally, merchant can request the full payment. In this case the original payment intent gets updated and the user is expected to make another transfer.</p>\n<img src=\"https://content.pstmn.io/4949e51c-e824-4e39-8a4b-4b9857617efa/Zmxvd19wYXlwYXJ0LnBuZw==\">\n\n<h3 id=\"multi-currency-flow\">Multi-Currency Flow</h3>\n<p>INXY Paygate API provides a dedicated two-step checkout for use-cases where the customer must first pick the cryptocurrency they want to pay with (e.g., a crypto-denominated wallet app), while the merchant still needs a session to be in place.</p>\n<p><strong>Session created</strong><br>Send POST /sessions/multi-currency with the order details, fiat amount and the list of supported coins. The call returns a pending session that already contains the candidate cryptocurrencies but no payment-intent yet; this lets you show the user a choice while the wallet address space is not reserved yet for the session. ￼</p>\n<p><strong>Payment intent created</strong><br>After the shopper selects a currency, call POST /payment-intents with the session ID and the chosen cryptocurrency. This second request spawns the payment-intent under the same session and moves the session status forward (from pending to active). From here you can continue exactly as in the basic flow—poll /sessions/{id}/status or listen to webhooks until the transfer is confirmed.</p>\n<img src=\"https://content.pstmn.io/2dfb9924-3434-42d4-9111-5b8b2e76029e/bXVsdGljdXJyZW5jeV9mbG93LnBuZw==\">\n\n<h1 id=\"very-high-risk-transactions\">Very High-Risk Transactions</h1>\n<p>According to regulatory requirements, the incoming payments process includes mandatory Know Your Transaction (KYT) check for all incoming transactions. Below is the process for handling transactions flagged as Very High Risk during the KYT review:</p>\n<p><strong>1. Transaction Initiation:</strong></p>\n<ul>\n<li>A user initiates a transaction to make a payment.</li>\n</ul>\n<p><strong>2. KYT Review:</strong></p>\n<ul>\n<li><p>Once the transaction is detected, it undergoes an automatic KYT check.</p>\n</li>\n<li><p>If flagged as <strong>Very High Risk</strong>, the transaction status changes to <strong><code>payments.pending_review</code></strong> for further analysis.</p>\n</li>\n</ul>\n<p><strong>3. Additional Investigation:</strong></p>\n<ul>\n<li><p>An AML officer reviews the transaction:</p>\n<ul>\n<li><p>If cleared, the status updates to <strong><code>payments.received</code></strong>.</p>\n</li>\n<li><p>If violations are detected, the status changes to <strong><code>payments.seized</code></strong>, and the funds are frozen.</p>\n</li>\n<li><p>If the transaction must be refunded, the status updates to <strong><code>payments.returned</code></strong>.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>4. Update of the Session Status:</strong></p>\n<ul>\n<li><p>The open payment session reflects the updated status (<strong>pending_review</strong>, <strong>seized</strong>, or <strong>returned</strong>).</p>\n</li>\n<li><p>If funds are seized or returned, further payment activities are no longer possible.</p>\n</li>\n</ul>\n<h1 id=\"webhooks\">Webhooks</h1>\n<p>Webhooks are automated messages sent from INXY Payments to your <strong>postback url</strong> when something happens.</p>\n<h3 id=\"list-of-ips-1\">List of IPs</h3>\n<p>All webhooks are sent form these IPs. You can add them to your server whitelist if needed:</p>\n<p><strong>Sandbox</strong></p>\n<ul>\n<li><code>88.208.3.157</code></li>\n</ul>\n<p><strong>Production</strong></p>\n<ul>\n<li><p><code>159.69.13.203</code></p>\n</li>\n<li><p><code>3.64.216.48</code></p>\n</li>\n</ul>\n<h3 id=\"webhook-types\">Webhook Types</h3>\n<p>The following webhooks are currently supported:</p>\n<p><strong>1. Payments.init</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 62,\n  \"object\": \"webhook\",\n  \"name\": \"payments.init\",\n  \"data\": {\n    \"session\": {\n      \"id\": 46,\n      \"object\": \"session\",\n      \"status\": \"active\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"123\",\n      \"order_name\": \"Order #123\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662470058,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": 39,\n      \"amount\": 1.0001,\n      \"object\": \"payment_intent\",\n      \"status\": \"waiting_payment\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [],\n      \"fiat_amount\": 1,\n      \"paid_amount\": 0,\n      \"created_date\": 1662470068,\n      \"currency_code\": \"USDT\",\n      \"exchange_rate\": 0.9999,\n      \"paid_fiat_amount\": 0\n    }\n  }\n}\n\n</code></pre>\n<p><strong>2. Payments.waiting_confirmations</strong><br>Funds have been detected on the blockchain and are awaiting confirmations from the blockchain.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 67,\n  \"object\": \"webhook\",\n  \"name\": \"payments.waiting_confirmations\",\n  \"data\": {\n    \"payment\": {\n      \"id\": 146,\n      \"amount\": 1.0001,\n      \"object\": \"payment\",\n      \"status\": \"pending\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662472330,\n      \"currency_code\": \"USDT\",\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"session\": {\n      \"id\": 48,\n      \"object\": \"session\",\n      \"status\": \"active\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"123\",\n      \"order_name\": \"Order #123\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662471954,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": 41,\n      \"amount\": 1.0001,\n      \"object\": \"payment_intent\",\n      \"status\": \"waiting_confirmation\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [\n        {\n          \"id\": 146,\n          \"amount\": 1.0001,\n          \"object\": \"payment\",\n          \"status\": \"pending\",\n          \"fiat_amount\": 1,\n          \"created_date\": 1662472330,\n          \"currency_code\": \"USDT\",\n          \"fiat_currency_code\": \"USD\"\n        }\n      ],\n      \"fiat_amount\": 1,\n      \"paid_amount\": 0,\n      \"created_date\": 1662472126,\n      \"currency_code\": \"USDT\",\n      \"exchange_rate\": 0.9999,\n      \"paid_fiat_amount\": 0\n    }\n  }\n}\n\n</code></pre>\n<p><strong>3. Payments.received</strong><br>Payment is confirmed, verified, and credited to the merchant’s account.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 68,\n  \"object\": \"webhook\",\n  \"name\": \"payments.received\",\n  \"data\": {\n    \"payment\": {\n      \"id\": 146,\n      \"amount\": 1.0001,\n      \"object\": \"payment\",\n      \"status\": \"finished\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662472330,\n      \"currency_code\": \"USDT\",\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"session\": {\n      \"id\": 48,\n      \"object\": \"session\",\n      \"status\": \"finished\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"123\",\n      \"order_name\": \"Order #123\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662471954,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": 41,\n      \"amount\": 1.0001,\n      \"object\": \"payment_intent\",\n      \"status\": \"paid\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [\n        {\n          \"id\": 146,\n          \"amount\": 1.0001,\n          \"object\": \"payment\",\n          \"status\": \"finished\",\n          \"fiat_amount\": 1,\n          \"created_date\": 1662472330,\n          \"currency_code\": \"USDT\",\n          \"fiat_currency_code\": \"USD\"\n        }\n      ],\n      \"fiat_amount\": 1,\n      \"paid_amount\": 1.0001,\n      \"created_date\": 1662472126,\n      \"currency_code\": \"USDT\",\n      \"exchange_rate\": 0.9999,\n      \"paid_fiat_amount\": 1\n    }\n  }\n}\n\n</code></pre>\n<p><strong>4. Payments.canceled</strong><br>Payment has been canceled.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 63,\n  \"object\": \"webhook\",\n  \"name\": \"payments.canceled\",\n  \"data\": {\n    \"session\": {\n      \"id\": 46,\n      \"object\": \"session\",\n      \"status\": \"canceled\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"123\",\n      \"order_name\": \"Order #123\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662470058,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": 39,\n      \"amount\": 1.0001,\n      \"object\": \"payment_intent\",\n      \"status\": \"canceled\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [],\n      \"fiat_amount\": 1,\n      \"paid_amount\": 0,\n      \"created_date\": 1662470068,\n      \"currency_code\": \"USDT\",\n      \"exchange_rate\": 0.9999,\n      \"paid_fiat_amount\": 0\n    }\n  }\n}\n\n</code></pre>\n<p><strong>5. Payments.expired</strong><br>The payment window expired before the transaction was made.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 65,\n  \"object\": \"webhook\",\n  \"name\": \"payments.expired\",\n  \"data\": {\n    \"payment\": null,\n    \"session\": {\n      \"id\": 47,\n      \"object\": \"session\",\n      \"status\": \"expired\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"123\",\n      \"order_name\": \"Order #123\",\n      \"fiat_amount\": 1,\n      \"created_date\": 1662470436,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": 40,\n      \"amount\": 1.0001,\n      \"object\": \"payment_intent\",\n      \"status\": \"expired\",\n      \"customer\": {\n        \"id\": 6,\n        \"email\": \"example@mail.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [],\n      \"fiat_amount\": 1,\n      \"paid_amount\": 0,\n      \"created_date\": 1662470446,\n      \"currency_code\": \"USDT\",\n      \"exchange_rate\": 0.9999,\n      \"paid_fiat_amount\": 0\n    }\n  }\n}\n\n</code></pre>\n<p><strong>6. Payments.pending_review</strong><br>Payment is under AML/KYT review.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"wh_mKq34DEk15Jy0aX\",\n  \"object\": \"webhook\",\n  \"name\": \"payments.pending_review\",\n  \"data\": {\n    \"payment\": {\n      \"id\": \"pay_WNgOL28rEdX47wP\",\n      \"amount\": 1.5,\n      \"object\": \"payment\",\n      \"status\": \"pending_review\",\n      \"sub_status\": \"pending_review\",\n      \"fiat_amount\": 1.5,\n      \"created_date\": 1665645393,\n      \"confirmed_date\": 1665645693,\n      \"currency_code\": \"USDC\",\n      \"currency\": {\n        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n        \"object\": \"currency\",\n        \"code\": \"USDC\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"session\": {\n      \"id\": \"ses_7vJaZ5m8O21EoY3\",\n      \"object\": \"session\",\n      \"status\": \"pending_review\",\n      \"payment_type\": \"recurring\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": null,\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"1234\",\n      \"order_name\": \"Premium\",\n      \"fiat_amount\": 1.5,\n      \"created_date\": 1665645049,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": \"pi_ZPvXVDRmWdOnwR4\",\n      \"amount\": 1.5,\n      \"object\": \"payment_intent\",\n      \"status\": \"pending_review\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [\n        {\n          \"id\": \"pay_WNgOL28rEdX47wP\",\n          \"amount\": 1.5,\n          \"object\": \"payment\",\n          \"status\": \"pending_review\",\n          \"sub_status\": \"pending_review\",\n          \"fiat_amount\": 1.5,\n          \"created_date\": 1665645393,\n          \"confirmed_date\": 1665645693,\n          \"currency_code\": \"USDC\",\n          \"currency\": {\n            \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n            \"object\": \"currency\",\n            \"code\": \"USDC\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"erc20\"\n          },\n          \"fiat_currency_code\": \"USD\"\n        }\n      ],\n      \"fiat_amount\": 1.5,\n      \"paid_amount\": 1.5,\n      \"created_date\": 1665645103,\n      \"currency_code\": \"USDC\",\n      \"currency\": {\n        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n        \"object\": \"currency\",\n        \"code\": \"USDC\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      \"exchange_rate\": 1,\n      \"paid_fiat_amount\": 1.5,\n      \"issued_wallet\": null,\n      \"fees\": {\n        \"object\": \"fee\",\n        \"amount\": 0.01,\n        \"fiat_amount\": 0,\n        \"currency\": {\n          \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n          \"object\": \"currency\",\n          \"code\": \"USDT\",\n          \"blockchain\": \"ethereum\",\n          \"coin_type\": \"erc20\"\n        },\n        \"fiat_currency_code\": \"USD\"\n      }\n    }\n  }\n}\n\n</code></pre>\n<p><strong>7. Payments.returned</strong><br>Funds have been sent back to the sender.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"wh_mKq34DEk15Jy0aX\",\n    \"object\": \"webhook\",\n    \"name\": \"payments.returned\",\n    \"data\": {\n        \"payment\": {\n            \"id\": \"pay_WNgOL28rEdX47wP\",\n            \"amount\": 1.5,\n            \"object\": \"payment\",\n            \"status\": \"compliance\",\n            \"sub_status\": \"returned\",\n            \"fiat_amount\": 1.5,\n            \"created_date\": 1665645393,\n            \"confirmed_date\": 1665645693,\n            \"currency_code\": \"USDC\",\n            \"currency\": {\n                \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                \"object\": \"currency\",\n                \"code\": \"USDC\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            \"fiat_currency_code\": \"USD\"\n        },\n        \"session\": {\n            \"id\": \"ses_7vJaZ5m8O21EoY3\",\n            \"object\": \"session\",\n            \"status\": \"compliance\",\n            \"payment_type\": \"recurring\",\n            \"customer\": {\n                \"id\": \"cus_gP8N9l23JD36Lbm\",\n                \"email\": \"john.doe@example.com\",\n                \"object\": \"customer\",\n                \"last_name\": null,\n                \"first_name\": \"John\"\n            },\n            \"order_id\": \"1234\",\n            \"order_name\": \"Premium\",\n            \"fiat_amount\": 1.5,\n            \"created_date\": 1665645049,\n            \"fiat_currency_code\": \"USD\"\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_ZPvXVDRmWdOnwR4\",\n            \"amount\": 1.5,\n            \"object\": \"payment_intent\",\n            \"status\": \"compliance\",\n            \"customer\": {\n                \"id\": \"cus_gP8N9l23JD36Lbm\",\n                \"email\": \"john.doe@example.com\",\n                \"object\": \"customer\",\n                \"last_name\": \"Doe\",\n                \"first_name\": \"John\"\n            },\n            \"payments\": [\n                {\n                    \"id\": \"pay_WNgOL28rEdX47wP\",\n                    \"amount\": 1.5,\n                    \"object\": \"payment\",\n                    \"status\": \"compliance\",\n                    \"sub_status\": \"returned\",\n                    \"fiat_amount\": 1.5,\n                    \"created_date\": 1665645393,\n                    \"confirmed_date\": 1665645693,\n                    \"currency_code\": \"USDC\",\n                    \"currency\": {\n                        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDC\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    \"fiat_currency_code\": \"USD\"\n                }\n            ],\n            \"fiat_amount\": 1.5,\n            \"paid_amount\": 1.5,\n            \"created_date\": 1665645103,\n            \"currency_code\": \"USDC\",\n            \"currency\": {\n                \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                \"object\": \"currency\",\n                \"code\": \"USDC\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            \"exchange_rate\": 1,\n            \"paid_fiat_amount\": 1.5,\n            \"issued_wallet\": null,\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": 0.01,\n                \"fiat_amount\": 0,\n                \"currency\": {\n                    \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"ethereum\",\n                    \"coin_type\": \"erc20\"\n                },\n                \"fiat_currency_code\": \"USD\"\n            }\n        },\n        \"refund\": {\n            \"id\": \"refund_OZxelV2Bg5EoAQ0\",\n            \"object\": \"refund\",\n            \"tx_hash\": \"0x0b7544c1bd3e820db34c04b657a01c3c5a8a867882a62ec56889872fba277388\",\n            \"recipient_address\": \"0xBd1E914a178Db7d54b8e0F2636D849e56Fc3d199\",\n            \"completed_at\": 1665695049\n        }\n    }\n}\n\n</code></pre>\n<p><strong>8. Payments.seized</strong><br>Funds have been frozen due to suspected violations.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"wh_mKq34DEk15Jy0aX\",\n    \"object\": \"webhook\",\n    \"name\": \"payments.seized\",\n    \"data\": {\n        \"payment\": {\n            \"id\": \"pay_WNgOL28rEdX47wP\",\n            \"amount\": 1.5,\n            \"object\": \"payment\",\n            \"status\": \"compliance\",\n            \"sub_status\": \"seized\",\n            \"fiat_amount\": 1.5,\n            \"created_date\": 1665645393,\n            \"confirmed_date\": 1665645693,\n            \"currency_code\": \"USDC\",\n            \"currency\": {\n                \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                \"object\": \"currency\",\n                \"code\": \"USDC\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            \"fiat_currency_code\": \"USD\"\n        },\n        \"session\": {\n            \"id\": \"ses_7vJaZ5m8O21EoY3\",\n            \"object\": \"session\",\n            \"status\": \"compliance\",\n            \"payment_type\": \"recurring\",\n            \"customer\": {\n                \"id\": \"cus_gP8N9l23JD36Lbm\",\n                \"email\": \"john.doe@example.com\",\n                \"object\": \"customer\",\n                \"last_name\": null,\n                \"first_name\": \"John\"\n            },\n            \"order_id\": \"1234\",\n            \"order_name\": \"Premium\",\n            \"fiat_amount\": 1.5,\n            \"created_date\": 1665645049,\n            \"fiat_currency_code\": \"USD\"\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_ZPvXVDRmWdOnwR4\",\n            \"amount\": 1.5,\n            \"object\": \"payment_intent\",\n            \"status\": \"compliance\",\n            \"customer\": {\n                \"id\": \"cus_gP8N9l23JD36Lbm\",\n                \"email\": \"john.doe@example.com\",\n                \"object\": \"customer\",\n                \"last_name\": \"Doe\",\n                \"first_name\": \"John\"\n            },\n            \"payments\": [\n                {\n                    \"id\": \"pay_WNgOL28rEdX47wP\",\n                    \"amount\": 1.5,\n                    \"object\": \"payment\",\n                    \"status\": \"compliance\",\n                    \"sub_status\": \"seized\",\n                    \"fiat_amount\": 1.5,\n                    \"created_date\": 1665645393,\n                    \"confirmed_date\": 1665645693,\n                    \"currency_code\": \"USDC\",\n                    \"currency\": {\n                        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDC\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    \"fiat_currency_code\": \"USD\"\n                }\n            ],\n            \"fiat_amount\": 1.5,\n            \"paid_amount\": 1.5,\n            \"created_date\": 1665645103,\n            \"currency_code\": \"USDC\",\n            \"currency\": {\n                \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                \"object\": \"currency\",\n                \"code\": \"USDC\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            \"exchange_rate\": 1,\n            \"paid_fiat_amount\": 1.5,\n            \"issued_wallet\": null,\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": 0.01,\n                \"fiat_amount\": 0,\n                \"currency\": {\n                    \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"ethereum\",\n                    \"coin_type\": \"erc20\"\n                },\n                \"fiat_currency_code\": \"USD\"\n            }\n        }\n    }\n}\n\n</code></pre>\n<p><strong>9. Payments.rejected</strong><br>Payment was rejected after funds were credited.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"wh_mKq34DEk15Jy0aX\",\n  \"object\": \"webhook\",\n  \"name\": \"payments.rejected\",\n  \"data\": {\n    \"payment\": {\n      \"id\": \"pay_WNgOL28rEdX47wP\",\n      \"amount\": 1.5,\n      \"object\": \"payment\",\n      \"status\": \"finished\",\n      \"sub_status\": \"finished\",\n      \"fiat_amount\": 1.5,\n      \"created_date\": 1665645393,\n      \"confirmed_date\": 1665645693,\n      \"currency_code\": \"USDC\",\n      \"currency\": {\n        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n        \"object\": \"currency\",\n        \"code\": \"USDC\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"session\": {\n      \"id\": \"ses_7vJaZ5m8O21EoY3\",\n      \"object\": \"session\",\n      \"status\": \"finished\",\n      \"payment_type\": \"recurring\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": null,\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"1234\",\n      \"order_name\": \"Premium\",\n      \"fiat_amount\": 1.5,\n      \"created_date\": 1665645049,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": \"pi_ZPvXVDRmWdOnwR4\",\n      \"amount\": 1.5,\n      \"object\": \"payment_intent\",\n      \"status\": \"paid\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [\n        {\n          \"id\": \"pay_WNgOL28rEdX47wP\",\n          \"amount\": 1.5,\n          \"object\": \"payment\",\n          \"status\": \"finished\",\n          \"sub_status\": \"finished\",\n          \"fiat_amount\": 1.5,\n          \"created_date\": 1665645393,\n          \"confirmed_date\": 1665645693,\n          \"currency_code\": \"USDC\",\n          \"currency\": {\n            \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n            \"object\": \"currency\",\n            \"code\": \"USDC\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"erc20\"\n          },\n          \"fiat_currency_code\": \"USD\"\n        }\n      ],\n      \"fiat_amount\": 1.5,\n      \"paid_amount\": 1.5,\n      \"created_date\": 1665645103,\n      \"currency_code\": \"USDC\",\n      \"currency\": {\n        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n        \"object\": \"currency\",\n        \"code\": \"USDC\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      \"exchange_rate\": 1,\n      \"paid_fiat_amount\": 1.5,\n      \"issued_wallet\": null,\n      \"fees\": {\n        \"object\": \"fee\",\n        \"amount\": 0.01,\n        \"fiat_amount\": 0,\n        \"currency\": {\n          \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n          \"object\": \"currency\",\n          \"code\": \"USDT\",\n          \"blockchain\": \"ethereum\",\n          \"coin_type\": \"erc20\"\n        },\n        \"fiat_currency_code\": \"USD\"\n      }\n    }\n  }\n}\n\n</code></pre>\n<p><strong>10. Payments.failed</strong><br>Payment processing error (e.g., incorrect address, insufficient gas).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"wh_xXmV329qz2NYQMl\",\n  \"object\": \"webhook\",\n  \"name\": \"payments.failed\",\n  \"data\": {\n    \"session\": {\n      \"id\": \"ses_7vJaZ5m8O21EoY3\",\n      \"object\": \"session\",\n      \"status\": \"finished\",\n      \"payment_type\": \"recurring\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"order_id\": \"test_order\",\n      \"order_name\": \"Premium\",\n      \"fiat_amount\": 1.5,\n      \"created_date\": 1665645049,\n      \"fiat_currency_code\": \"USD\"\n    },\n    \"payment_intent\": {\n      \"id\": \"pi_0JwYj2l7wDXeNn8\",\n      \"amount\": 1.5,\n      \"object\": \"payment_intent\",\n      \"status\": \"failed\",\n      \"customer\": {\n        \"id\": \"cus_gP8N9l23JD36Lbm\",\n        \"email\": \"john.doe@example.com\",\n        \"object\": \"customer\",\n        \"last_name\": \"Doe\",\n        \"first_name\": \"John\"\n      },\n      \"payments\": [],\n      \"fiat_amount\": 1.5,\n      \"paid_amount\": 0,\n      \"created_date\": 1665646175,\n      \"currency_code\": \"USDC\",\n      \"currency\": {\n        \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n        \"object\": \"currency\",\n        \"code\": \"USDC\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      \"exchange_rate\": 1,\n      \"paid_fiat_amount\": 0,\n      \"issued_wallet\": null,\n      \"fees\": {\n        \"object\": \"fee\",\n        \"amount\": 0,\n        \"fiat_amount\": 0,\n        \"currency\": {\n          \"id\": \"cur_OZxelV2Bg5EoAQ0\",\n          \"object\": \"currency\",\n          \"code\": \"USDT\",\n          \"blockchain\": \"ethereum\",\n          \"coin_type\": \"erc20\"\n        },\n        \"fiat_currency_code\": \"USD\"\n      }\n    }\n  }\n}\n\n</code></pre>\n<hr>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Getting Started","slug":"getting-started"},{"content":"Environments","slug":"environments"},{"content":"List of IPs","slug":"list-of-ips"},{"content":"Authentication","slug":"authentication"},{"content":"Errors (HTTP response codes)","slug":"errors-http-response-codes"},{"content":"Resources overview","slug":"resources-overview"},{"content":"Payment Flows","slug":"payment-flows"},{"content":"Very High-Risk Transactions","slug":"very-high-risk-transactions"},{"content":"Webhooks","slug":"webhooks"}],"owner":"44352164","collectionId":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","publishedId":"2sB2x8GCAw","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-06-17T08:14:52.000Z"},"item":[{"name":"Sessions","item":[{"name":"sessions.create","id":"4e1996c4-c8a1-457e-9c0a-76b89c456e9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 10,\n    \"fiat_currency\": \"EUR\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"lifetime_minutes\": 30,\n    \"postback_url\": \"https://www.hello.com/orders/123456\",\n    \"amount_deviation_percentage\": 49.00,\n    \"cryptocurrency\": {\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n    \"customer\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john.doe@example.cc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions","description":"<p>When the session is created, along with the <code>session</code> a new <code>payment_intent</code> is created automatically, which allocates wallet address to receive funds and allows to accept crypto from the customer.</p>\n<h3 id=\"creating-an-invoice-in-fiat-currency\"><strong>Creating an Invoice in Fiat Currency</strong></h3>\n<p>To create an invoice with amount in fiat , use the <code>fiat_amount</code> parameter in the request. The amount in cryptocurrency will be calculated dynamically based on the exchange rate.</p>\n<h3 id=\"creating-an-invoice-in-crypto-currency\"><strong>Creating an Invoice in Crypto Currency</strong></h3>\n<p>Use the <code>amount</code> parameter instead. The amount in cryptocurrency will be fixed, while fiat_amount will be calculated based on FX rate.</p>\n<hr />\n<h3 id=\"fiat-amount-fiat_amount\">Fiat amount <code>fiat_amount</code></h3>\n<p><em><strong>Either the</strong></em> <code>fiat_amount</code> <em><strong>or the</strong></em> <code>amount</code> <em><strong>parameter is required (provide one, not both).</strong></em></p>\n<p>The total amount in fiat.</p>\n<p>A positive integer representing how much to charge.</p>\n<p>Float, up to 4 digits after delimiter<br />Max supported amount - 999999.9999<br />Delimiter - dot (.)</p>\n<hr />\n<h3 id=\"crypto-amount-amount\">Crypto amount <code>amount</code></h3>\n<p><em><strong>Either the</strong></em> <code>fiat_amount</code> <em><strong>or the</strong></em> <code>amount</code> <em><strong>parameter is required (provide one, not both).</strong></em></p>\n<p>The total amount in cryptocurrency.</p>\n<p>A positive integer.</p>\n<p>Float, up to 8 digits after delimiter<br />Min supported amount - 0.00000001<br />Delimiter - dot (.)</p>\n<hr />\n<h3 id=\"fiat-currency-fiat_currency\">Fiat currency <code>fiat_currency</code></h3>\n<p><em><strong>This is a mandatory parameter</strong></em></p>\n<p>Three-letter ISO currency code, in uppercase. Must be a supported currency.<br />Supported currencies are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>US Dollar</td>\n<td>USD</td>\n</tr>\n<tr>\n<td>Euro</td>\n<td>EUR</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"postback-url-postback_url\">Postback url <code>postback_url</code></h3>\n<p>Using postback URL allows you to receive automated webhooks to your system.</p>\n<p>You can specify postback url either in merchant's profile:</p>\n<img src=\"https://content.pstmn.io/5b3a80a8-924c-4e25-9763-c35907a10123/cG9zdGJhY2sucG5n\" />\n\n<p>Or use <code>postback_url</code> parameter in your API call.</p>\n<hr />\n<h3 id=\"order-id-order_id\">Order ID <code>order_id</code></h3>\n<p>Internal Order ID to match the session with the merchant's order, if exists.</p>\n<p>Maximum length: 255 symbols.</p>\n<hr />\n<h3 id=\"order-name-order_name\">Order name <code>order_name</code></h3>\n<p><em><strong>This is a mandatory parameter</strong></em></p>\n<p>The product’s name, meant to be displayable to the customer.</p>\n<p>Maximum length: 255 symbols.</p>\n<hr />\n<h3 id=\"session-lifetime-lifetime_minutes\">Session lifetime <code>lifetime_minutes</code></h3>\n<p>Specifies the lifetime of the payment session in minutes.</p>\n<p>Allowed values: from 1 to 10080 (1 minutes to 7 days).</p>\n<p><strong>Important notes:</strong></p>\n<ul>\n<li><p>If this parameter is not provided, the default session lifetime is used (120 minutes = 2 hours).</p>\n</li>\n<li><p>The payment session lifetime defined by <code>lifetime_minutes</code> applies only if there is an active payment intent for this session. After the payment intent is created, time starts to running out.</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"percent-of-deviation-amount_deviation_percentage\">Percent of Deviation <code>amount_deviation_percentage</code></h3>\n<p>Specifies the allowed percent of deviation between crypto transaction amount and session amount. When payment is received and the received amount falls into this Deviation interval, payment intent will be considered as \"paid\" even though there might be difference between actual and expected amounts.</p>\n<p>Float, up to 2 digits after delimiter<br />Supported amount range: from 0.00 to 50.00.</p>\n<p>This is due to the system limitations: exceeding this limit will not allow the system to match incoming crypto payment with the original session.</p>\n<p>Delimiter - dot (.)</p>\n<hr />\n<h3 id=\"cryptocurrency-cryptocurrency\">Cryptocurrency <code>cryptocurrency</code></h3>\n<p>Specifies the cryptocurrency to pay with.</p>\n<p>List of supported crypto currencies with codes for the Production environment:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>code</strong></th>\n<th><strong>blockchain</strong></th>\n<th><strong>coin_type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bitcoin</td>\n<td>BTC</td>\n<td>bitcoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Ether</td>\n<td>ETH</td>\n<td>ethereum</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Litecoin</td>\n<td>LTC</td>\n<td>litecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Dogecoin</td>\n<td>DOGE</td>\n<td>dogecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>tron</td>\n<td>trc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>BNB</td>\n<td>BNB</td>\n<td>binance-smart-chain</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Polygon</td>\n<td>MATIC</td>\n<td>polygon</td>\n<td>native</td>\n</tr>\n<tr>\n<td>TRON</td>\n<td>TRX</td>\n<td>tron</td>\n<td>native</td>\n</tr>\n</tbody>\n</table>\n</div><p>Format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    \"cryptocurrency\": \n     {\n         \"code\": \"ETH\",\n         \"blockchain\": \"ethereum\",\n         \"coin_type\": \"native\"\n     }\n\n</code></pre>\n<hr />\n<h3 id=\"customer-customer\">Customer <code>customer</code></h3>\n<p>The Customer this Payment session belongs to. This is a mandatory parameter, due to our compliance with international anti-money-laundering and terrorist trafficing regulations.</p>\n<p>Has child attributes described below:</p>\n<hr />\n<h4 id=\"email-email\">Email <code>email</code></h4>\n<p>The customer’s email.</p>\n<hr />\n<h4 id=\"first-name-first_name\">First name <code>first_name</code></h4>\n<p>The customer’s first name.</p>\n<hr />\n<h4 id=\"last-name-last_name\">Last name <code>last_name</code></h4>\n<p>The customer’s last name.</p>\n","urlObject":{"path":["paygate","v1","sessions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"d277caed-d153-421f-b064-3125b639a06b","name":"200 OK (fiat flow)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 10,\n    \"fiat_currency\": \"EUR\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"postback_url\": \"https://www.hello.com/orders/123456\",\n    \"lifetime_minutes\": 30,\n    \"amount_deviation_percentage\": 49.00,\n    \"cryptocurrency\": {\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n    \"customer\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john.doe@example.cc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:36:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"Cf-Ray","value":"951556809e54b964-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_oQeNVp05QL261W3\",\n            \"object\": \"session\",\n            \"status\": \"active\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"10\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1750192573\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_9JRO5pbDWxXWm3z\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 11.490334,\n            \"fiat_amount\": 10,\n            \"paid_amount\": 0,\n            \"paid_fiat_amount\": 0,\n            \"exchange_rate\": \"0.87029679\",\n            \"status\": \"waiting_payment\",\n            \"created_date\": 1750192574,\n            \"issued_wallet\": \"TQMkgtNvnKG9co5tVsxHNEyQtxNZh1PNed\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": \"TQMkgtNvnKG9co5tVsxHNEyQtxNZh1PNed\",\n                \"reserved_until\": 1750194374\n            }\n        }\n    }\n}"},{"id":"639bf91f-424c-4b4f-9591-4f6959c6e459","name":"200 OK (crypto flow)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"amount\": 1,\n  \"fiat_currency\": \"USD\",\n  \"order_id\": \"1234\",\n  \"order_name\": \"Order #1234\",\n  \"lifetime_minutes\": 30,\n  \"postback_url\": \"https://www.hello.com/orders/123456\",\n  \"amount_deviation_percentage\": 5.00,\n  \"cryptocurrency\": {\n      \"code\": \"USDT\",\n      \"blockchain\": \"ethereum\",\n      \"coin_type\": \"erc20\"\n  },\n  \"customer\": {\n      \"email\": \"example@mail.com\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 12:11:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f0ebea18c9ae2f-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_nkKJDX1vWWa7lNO\",\n            \"object\": \"session\",\n            \"status\": \"active\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"0.99\",\n            \"fiat_currency_code\": \"USD\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_9JRO5pbjVpWm3zy\",\n                \"object\": \"customer\",\n                \"email\": \"example@mail.com\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1752495075,\n            \"amount\": \"1\",\n            \"cryptocurrencies\": [\n                {\n                    \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"ethereum\",\n                    \"coin_type\": \"erc20\"\n                }\n            ]\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_DbALn2LRWNawVM8\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            \"amount\": 1,\n            \"fiat_amount\": 0.99,\n            \"paid_amount\": 0,\n            \"paid_fiat_amount\": 0,\n            \"exchange_rate\": \"0.99983402\",\n            \"status\": \"waiting_payment\",\n            \"created_date\": 1752495075,\n            \"issued_wallet\": \"0xa5F61665E40E3b433834B69fd76C3cA8c6B535Bd\",\n            \"customer\": {\n                \"id\": \"cus_9JRO5pbjVpWm3zy\",\n                \"object\": \"customer\",\n                \"email\": \"example@mail.com\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0\",\n                \"currency\": {\n                    \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"ethereum\",\n                    \"coin_type\": \"erc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"USD\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": \"0xa5F61665E40E3b433834B69fd76C3cA8c6B535Bd\",\n                \"reserved_until\": 1752496875\n            }\n        }\n    }\n}"},{"id":"7b99d653-43d7-4965-bc06-c3d3330cfc7f","name":"422 Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 10,\n    \"fiat_currency\": \"EUR\",\n    \"order_id\": \"1234\",\n    \"lifetime_minutes\": 30,\n    \"amount_deviation_percentage\": 49.00,\n    \"cryptocurrency\": {\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n    \"customer\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john.doe@example.cc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:37:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"95155802ef2ac973-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The order name field is required.\",\n    \"errors\": {\n        \"order_name\": [\n            \"The order name field is required.\"\n        ]\n    }\n}"},{"id":"953985ef-b25d-459e-8b15-0ed1eafd08c3","name":"429 Too Many Requests","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 10,\n    \"fiat_currency\": \"EUR\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"lifetime_minutes\": 30,\n    \"amount_deviation_percentage\": 49.00,\n    \"cryptocurrency\": {\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n    \"customer\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john.doe@example.cc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:40:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"95155c35dd4cc9af-IAD"},{"key":"X-Ratelimit-Limit","value":"20"},{"key":"X-Ratelimit-Remaining","value":"0"},{"key":"Retry-After","value":"3366"},{"key":"X-Ratelimit-Reset","value":"1750196173"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"The number of requests for new wallet allocation has been reached. Please use another currency or try again later.\"\n}"},{"id":"f3527678-a7d8-4c76-a333-214c5100f265","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"4e1996c4-c8a1-457e-9c0a-76b89c456e9b"},{"name":"sessions.show","event":[{"listen":"test","script":{"id":"8a017cfb-9c86-43c0-b1bf-50aeaee9fd06","exec":["pm.test(\"Status code is 200\", () => {","  pm.expect(pm.response.code).to.eql(200);","});"],"type":"text/javascript","packages":{}}}],"id":"ec06724e-c661-4ab9-a975-ed3810409225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions/:id","description":"<h3 id=\"retrieving-details-of-the-payment-session\">Retrieving Details of the Payment Session</h3>\n<p>By using this method, you can receive an up-to-date details of a payment session.</p>\n<hr />\n<h3 id=\"request-parameters\"><strong>Request Parameters</strong></h3>\n<h3 id=\"session-id-id\">Session id {id}</h3>\n<p><em><strong>This is mandatory parameter.</strong></em></p>\n<p>String, pattern: '^[0-9a-zA-Z]{19}$'</p>\n<p>Example: \"ses_9QqM7e5RnXa2vp5\"</p>\n<hr />\n<h3 id=\"response-structure\"><strong>Response Structure</strong></h3>\n<p>The response is returned in <strong>JSON format</strong> and follows the same structure as the webhook notification. However, there are key differences in how transactions are represented.</p>\n<h4 id=\"1-what-is-included-in-the-session-response\"><strong>1. What is included in the session response?</strong></h4>\n<ol>\n<li><p>High-level <code>session</code></p>\n</li>\n<li><p>Underlying <code>payment_intent</code></p>\n</li>\n<li><p>All accepted <code>payments</code> (incoming crypto transfers)</p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","sessions",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"ses_oQeNVp05QL261W3","key":"id"}]}},"response":[{"id":"f054e244-14be-45a3-b85f-3bfd70a7e834","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/sessions/:id","host":[""],"path":["paygate","v1","sessions",":id"],"variable":[{"key":"id","value":"ses_GJ8OjXMWDMp7NMr"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 22:25:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"Cf-Ray","value":"9515f613ed6cc946-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_GJ8OjXMWDMp7NMr\",\n            \"object\": \"session\",\n            \"status\": \"finished\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"10\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1750198556\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_x64OepA59ZpDPVQ\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 11.493529,\n            \"fiat_amount\": 10,\n            \"paid_amount\": 11.493529,\n            \"paid_fiat_amount\": 10,\n            \"exchange_rate\": \"0.87005484\",\n            \"status\": \"paid\",\n            \"created_date\": 1750198557,\n            \"issued_wallet\": null,\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [\n                {\n                    \"id\": \"pay_OgL9najloQ2KEM6\",\n                    \"object\": \"payment\",\n                    \"status\": \"finished\",\n                    \"sub_status\": \"finished\",\n                    \"currency_code\": \"USDT\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"amount\": 6,\n                    \"fiat_amount\": 5.22,\n                    \"fiat_currency_code\": \"EUR\",\n                    \"created_date\": 1750198651,\n                    \"confirmed_date\": 1750198686\n                },\n                {\n                    \"id\": \"pay_9JRO5pbD3oXWm3z\",\n                    \"object\": \"payment\",\n                    \"status\": \"finished\",\n                    \"sub_status\": \"finished\",\n                    \"currency_code\": \"USDT\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"amount\": 5.493529,\n                    \"fiat_amount\": 4.77,\n                    \"fiat_currency_code\": \"EUR\",\n                    \"created_date\": 1750199011,\n                    \"confirmed_date\": 1750199045\n                }\n            ],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0.114936\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": null,\n                \"reserved_until\": null\n            }\n        }\n    }\n}"},{"id":"dc31b0b8-0b83-4f2f-b179-f28827180304","name":"500 Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/sessions/:id","host":[""],"path":["paygate","v1","sessions",":id"],"variable":[{"key":"id","value":"ses_oQeNVp05QL261W4"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"ec06724e-c661-4ab9-a975-ed3810409225"},{"name":"sessions.all","id":"628dfbe2-4196-4925-a3b1-15e19c8af126","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"/paygate/v1/sessions","description":"<h3 id=\"retrieving-the-list-of-payment-sessions\">Retrieving the list of Payment Sessions</h3>\n<p>Retrieves a paginated collection of sessions (each with its current payment-intent, if any). Use it for merchant dashboards, reconciliation reports, or internal support tools.</p>\n<hr />\n<h3 id=\"request-parameters\"><strong>Request Parameters</strong></h3>\n<h3 id=\"customer-customer\">Customer <code>customer</code></h3>\n<p>Filter by customer_id, the payment session is created for.</p>\n<p>Format: string</p>\n<p>Example: \"cus_9JRO5pbjVpWm3zy\"</p>\n<hr />\n<h3 id=\"status-status\"><strong>Status</strong> <strong><code>status</code></strong></h3>\n<p>Status of the payment session.</p>\n<p>Format: string</p>\n<p>Values: pending, processing, completed, failed, cancelled.</p>\n<hr />\n<h3 id=\"created-from-created_atfrom\"><strong>Created from</strong> <strong><code>created_at[from]</code></strong></h3>\n<p>Selects sessions created at or after this date.</p>\n<p>Format: date</p>\n<p>Example: \"2024-01-01\"</p>\n<hr />\n<h3 id=\"created-to-created_atto\"><strong>Created to</strong> <strong><code>created_at[to]</code></strong></h3>\n<p>Selects sessions created at or before this date.</p>\n<p>Format: date</p>\n<p>Example: \"2024-01-01\"</p>\n<hr />\n<h3 id=\"sort-column-sort_column\"><strong>Sort column</strong> <strong><code>sort_column</code></strong></h3>\n<p>Selects sessions sorted in the order of selected parameter.</p>\n<p>Format: string</p>\n<p>Values: status, created_at</p>\n<hr />\n<h3 id=\"sort-type-sort_type\"><strong>Sort type</strong> <strong><code>sort_type</code></strong></h3>\n<p>Sorting direction</p>\n<p>Format: string</p>\n<p>Values: asc, desc</p>\n<hr />\n<h3 id=\"page-page\"><strong>Page</strong> <strong><code>page</code></strong></h3>\n<p>Page number for pagination.</p>\n<p>Format: integer</p>\n<p>Example: 1</p>\n<p>Default: 1</p>\n<hr />\n<h3 id=\"items-on-page-per_page\"><strong>Items on page</strong> <strong><code>per_page</code></strong></h3>\n<p>Number of items per page.</p>\n<p>Format: integer</p>\n<p>Minimum: 1</p>\n<p>Maximum: 100</p>\n<p>Default: 15</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","sessions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"3138cc62-8503-4708-b5f2-8d23064757db","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"/paygate/v1/sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 11:42:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f0c24c0f88703c-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"session\": {\n                \"id\": \"ses_mrPVepr5zDab1wj\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1752490038,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_BerQOXodj1a3q5Y\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.71262,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.85378\",\n                \"status\": \"expired\",\n                \"created_date\": 1752490039,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_LVo6JpWzOBa4N8n\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"1\",\n                \"fiat_currency_code\": \"USD\",\n                \"order_id\": null,\n                \"order_name\": \"asdads\",\n                \"customer\": {\n                    \"id\": \"cus_rMKwNXPjGpPgZQ8\",\n                    \"object\": \"customer\",\n                    \"email\": \"test@test.com\",\n                    \"first_name\": null,\n                    \"last_name\": null\n                },\n                \"created_date\": 1751295636,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_G9JRO5pbdXWm3zy\",\n                        \"object\": \"currency\",\n                        \"code\": \"ETH\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"native\"\n                    },\n                    {\n                        \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    {\n                        \"id\": \"cur_065QgLX6lpJDPBE\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDC\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    {\n                        \"id\": \"cur_gLVo6JpWGp4N8nW\",\n                        \"object\": \"currency\",\n                        \"code\": \"DAI\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    {\n                        \"id\": \"cur_LEZNMn2noXBAeKy\",\n                        \"object\": \"currency\",\n                        \"code\": \"TRX\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"native\"\n                    },\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    {\n                        \"id\": \"cur_6GLjDYaVD28Pq1d\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDC\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    {\n                        \"id\": \"cur_AmrPVepryab1wjL\",\n                        \"object\": \"currency\",\n                        \"code\": \"MATIC\",\n                        \"blockchain\": \"polygon\",\n                        \"coin_type\": \"native\"\n                    },\n                    {\n                        \"id\": \"cur_yx64OepAR2DPVQW\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"polygon\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    {\n                        \"id\": \"cur_QqWwnNawQ2k6rOG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDC\",\n                        \"blockchain\": \"polygon\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    {\n                        \"id\": \"cur_qGvjOkX9D2N1wb9\",\n                        \"object\": \"currency\",\n                        \"code\": \"DAI\",\n                        \"blockchain\": \"polygon\",\n                        \"coin_type\": \"erc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_65QgLX65PE2JDPB\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"ethereum\",\n                    \"coin_type\": \"erc20\"\n                },\n                \"amount\": 1.00011,\n                \"fiat_amount\": 1,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.99989081\",\n                \"status\": \"expired\",\n                \"created_date\": 1751295636,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_rMKwNXPjGpPgZQ8\",\n                    \"object\": \"customer\",\n                    \"email\": \"test@test.com\",\n                    \"first_name\": null,\n                    \"last_name\": null\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"ethereum\",\n                        \"coin_type\": \"erc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"USD\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_GJ8OjXMWDMp7NMr\",\n                \"object\": \"session\",\n                \"status\": \"finished\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750198556,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_x64OepA59ZpDPVQ\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.493529,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 11.493529,\n                \"paid_fiat_amount\": 10,\n                \"exchange_rate\": \"0.87005484\",\n                \"status\": \"paid\",\n                \"created_date\": 1750198557,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_OgL9najloQ2KEM6\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 6,\n                        \"fiat_amount\": 5.22,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750198651,\n                        \"confirmed_date\": 1750198686\n                    },\n                    {\n                        \"id\": \"pay_9JRO5pbD3oXWm3z\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 5.493529,\n                        \"fiat_amount\": 4.77,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750199011,\n                        \"confirmed_date\": 1750199045\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.114936\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_kvZ3xpD9gw2oelG\",\n                \"object\": \"session\",\n                \"status\": \"finished\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750198181,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_mrPVepr30d2b1wj\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.491109,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 6,\n                \"paid_fiat_amount\": 5.22,\n                \"exchange_rate\": \"0.87023805\",\n                \"status\": \"paid\",\n                \"created_date\": 1750198181,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_xmb3RXBLmMp5jVv\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 6,\n                        \"fiat_amount\": 5.22,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750198291,\n                        \"confirmed_date\": 1750198326\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.06\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_Yqv68p5mJdpE9KW\",\n                \"object\": \"session\",\n                \"status\": \"canceled\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750198142,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_GLjDYaVzBEa8Pq1\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.491109,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 6,\n                \"paid_fiat_amount\": 5.22,\n                \"exchange_rate\": \"0.87023805\",\n                \"status\": \"canceled\",\n                \"created_date\": 1750198143,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_vAxkEXgrw82VLQ6\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 6,\n                        \"fiat_amount\": 5.22,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750198291,\n                        \"confirmed_date\": 1750198325\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.06\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_rMKwNXP5n4aPgZQ\",\n                \"object\": \"session\",\n                \"status\": \"finished\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750197606,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_6k8VRaOJK7XwMOb\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.492263,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 6,\n                \"paid_fiat_amount\": 5.22,\n                \"exchange_rate\": \"0.87015069\",\n                \"status\": \"paid\",\n                \"created_date\": 1750197607,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_znjYKaezr5px1J5\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 6,\n                        \"fiat_amount\": 5.22,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750197751,\n                        \"confirmed_date\": 1750197845\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.06\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_LVo6JpWzx8a4N8n\",\n                \"object\": \"session\",\n                \"status\": \"finished\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750196577,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_EZNMn2nL74aBAeK\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.494253,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 6,\n                \"paid_fiat_amount\": 5.22,\n                \"exchange_rate\": \"0.87\",\n                \"status\": \"paid\",\n                \"created_date\": 1750196577,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_wRKGBXmD7g2D14W\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 6,\n                        \"fiat_amount\": 5.22,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750197031,\n                        \"confirmed_date\": 1750197124\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.06\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_65QgLX6rzwXJDPB\",\n                \"object\": \"session\",\n                \"status\": \"finished\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750196281,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_w9GNnXdnrepD4mv\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.495208,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 11.495208,\n                \"paid_fiat_amount\": 10,\n                \"exchange_rate\": \"0.86992773\",\n                \"status\": \"paid\",\n                \"created_date\": 1750196282,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [\n                    {\n                        \"id\": \"pay_zdeAbpEn6V2mk3x\",\n                        \"object\": \"payment\",\n                        \"status\": \"finished\",\n                        \"sub_status\": \"finished\",\n                        \"currency_code\": \"USDT\",\n                        \"currency\": {\n                            \"id\": \"cur_P6k8VRaO3awMObG\",\n                            \"object\": \"currency\",\n                            \"code\": \"USDT\",\n                            \"blockchain\": \"tron\",\n                            \"coin_type\": \"trc20\"\n                        },\n                        \"amount\": 11.495208,\n                        \"fiat_amount\": 10,\n                        \"fiat_currency_code\": \"EUR\",\n                        \"created_date\": 1750196491,\n                        \"confirmed_date\": 1750196525\n                    }\n                ],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0.114953\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_KG4xy2R7VDXgnPb\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192805,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_GJ8OjXM63Wa7NMr\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192805,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_9JRO5pbl3xXWm3z\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192803,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_kvZ3xpDK4QaoelG\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192804,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_OgL9najyE0XKEM6\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192801,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_Yqv68p5VWV2E9KW\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192801,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_xmb3RXB9ly25jVv\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192799,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_rMKwNXPLYJXPgZQ\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192799,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_vAxkEXgy3RpVLQ6\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192797,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_LVo6JpWEKBX4N8n\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192798,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_znjYKaeB3Zpx1J5\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192796,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_65QgLX65eE2JDPB\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192796,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_wRKGBXm533XD14W\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192794,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_KG4xy2RY8WpgnPb\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192794,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_dGNDy2ydP7pLqP4\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192792,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_9JRO5pbDW6XWm3z\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192792,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_zdeAbpEJBP2mk3x\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192790,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_OgL9najlVJ2KEM6\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192791,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_bmDBPaQyOAaLWYz\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192788,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_xmb3RXBLdxp5jVv\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192789,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_KZ9DV2ly3xX5bLQ\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192787,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_vAxkEXgrdd2VLQ6\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192787,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        },\n        {\n            \"session\": {\n                \"id\": \"ses_9yzbEXNmMg21MV8\",\n                \"object\": \"session\",\n                \"status\": \"expired\",\n                \"payment_type\": \"onetime\",\n                \"fiat_amount\": \"10\",\n                \"fiat_currency_code\": \"EUR\",\n                \"order_id\": \"1234\",\n                \"order_name\": \"Order #1234\",\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"created_date\": 1750192785,\n                \"amount\": null,\n                \"cryptocurrencies\": [\n                    {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    }\n                ]\n            },\n            \"payment_intent\": {\n                \"id\": \"pi_znjYKaezDopx1J5\",\n                \"object\": \"payment_intent\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 11.487696,\n                \"fiat_amount\": 10,\n                \"paid_amount\": 0,\n                \"paid_fiat_amount\": 0,\n                \"exchange_rate\": \"0.87049664\",\n                \"status\": \"expired\",\n                \"created_date\": 1750192785,\n                \"issued_wallet\": null,\n                \"customer\": {\n                    \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                    \"object\": \"customer\",\n                    \"email\": \"john.doe@example.cc\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Doe\"\n                },\n                \"payments\": [],\n                \"fees\": {\n                    \"object\": \"fee\",\n                    \"amount\": \"0\",\n                    \"currency\": {\n                        \"id\": \"cur_P6k8VRaO3awMObG\",\n                        \"object\": \"currency\",\n                        \"code\": \"USDT\",\n                        \"blockchain\": \"tron\",\n                        \"coin_type\": \"trc20\"\n                    },\n                    \"fiat_amount\": \"0\",\n                    \"fiat_currency_code\": \"EUR\"\n                },\n                \"issued_wallet_details\": {\n                    \"address\": null,\n                    \"reserved_until\": null\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=1\",\n        \"last\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=6\",\n        \"prev\": null,\n        \"next\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=2\"\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 6,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=2\",\n                \"label\": \"2\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=3\",\n                \"label\": \"3\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=4\",\n                \"label\": \"4\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=5\",\n                \"label\": \"5\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=6\",\n                \"label\": \"6\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://sandbox-api.inxy.io/paygate/v1/sessions?page=2\",\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://sandbox-api.inxy.io/paygate/v1/sessions\",\n        \"per_page\": 20,\n        \"to\": 20,\n        \"total\": 120\n    }\n}"},{"id":"d40b4e02-d5a5-4182-ae1d-d7d9b7a007f0","name":"500 Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"628dfbe2-4196-4925-a3b1-15e19c8af126"},{"name":"sessions.status","id":"256adedb-6951-4121-b01b-702d02c97ece","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<h3 id=\"retrieving-status-of-the-payment-session\">Retrieving Status of the Payment Session</h3>\n<p>By using this method, you can receive a shortened and most often-used information about the session.</p>\n<hr />\n<h3 id=\"request-parameters\"><strong>Request Parameters</strong></h3>\n<h3 id=\"session-id-id\">Session id {id}</h3>\n<p><em><strong>This is mandatory parameter.</strong></em></p>\n<p>String, pattern: '^[0-9a-zA-Z]{19}$'</p>\n<p>Example: \"ses_9QqM7e5RnXa2vp5\"</p>\n<hr />\n<h3 id=\"response-structure\"><strong>Response Structure</strong></h3>\n<p>The response is returned in <strong>JSON format</strong> and contains basic session details:</p>\n<ol>\n<li><p>High-level <code>session</code></p>\n</li>\n<li><p>Underlying <code>payment_intent</code></p>\n</li>\n<li><p>All accepted <code>payments</code> (incoming crypto transfers)</p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"b0a74493-eb20-4fd2-8431-35140339d8e7","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"/paygate/v1/sessions/:id","host":[""],"path":["paygate","v1","sessions",":id"],"variable":[{"key":"id","value":"ses_mrPVepr5zDab1wj"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 11:52:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f0d0051f0fc651-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"session\": {\n            \"id\": \"ses_mrPVepr5zDab1wj\",\n            \"object\": \"session\",\n            \"status\": \"expired\",\n            \"payment_type\": \"onetime\",\n            \"fiat_amount\": \"10\",\n            \"fiat_currency_code\": \"EUR\",\n            \"order_id\": \"1234\",\n            \"order_name\": \"Order #1234\",\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"created_date\": 1752490038,\n            \"amount\": null,\n            \"cryptocurrencies\": [\n                {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                }\n            ]\n        },\n        \"payment_intent\": {\n            \"id\": \"pi_BerQOXodj1a3q5Y\",\n            \"object\": \"payment_intent\",\n            \"currency_code\": \"USDT\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"amount\": 11.71262,\n            \"fiat_amount\": 10,\n            \"paid_amount\": 0,\n            \"paid_fiat_amount\": 0,\n            \"exchange_rate\": \"0.85378\",\n            \"status\": \"expired\",\n            \"created_date\": 1752490039,\n            \"issued_wallet\": null,\n            \"customer\": {\n                \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n                \"object\": \"customer\",\n                \"email\": \"john.doe@example.cc\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Doe\"\n            },\n            \"payments\": [],\n            \"fees\": {\n                \"object\": \"fee\",\n                \"amount\": \"0\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"fiat_amount\": \"0\",\n                \"fiat_currency_code\": \"EUR\"\n            },\n            \"issued_wallet_details\": {\n                \"address\": null,\n                \"reserved_until\": null\n            }\n        }\n    }\n}"},{"id":"c8f2e580-fb2b-49da-b41c-9465388e56d7","name":"500 Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"256adedb-6951-4121-b01b-702d02c97ece"},{"name":"sessions.create.multi-currency","id":"87fdd73b-469e-4a14-8cd9-582f8f7a25c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 1,\n    \"fiat_currency\": \"USD\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"lifetime_minutes\": 30,\n    \"postback_url\": \"https://www.hello.com/orders/123456\",\n    \"amount_deviation_percentage\": 5.00,\n    \"cryptocurrencies\": [\n      {\n        \"code\": \"ETH\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"native\"\n      },\n      {\n        \"code\": \"USDT\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      {\n        \"code\": \"USDT\",\n        \"blockchain\": \"tron\",\n        \"coin_type\": \"trc20\"\n      }\n    ],\n    \"customer\": {\n      \"email\": \"example@mail.com\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\"\n    }\n  }","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions/multi-currency","description":"<p>A multi-currency session fixes the price in fiat but lets the shopper decide which coin to pay with later.<br />Because the crypto amount is unknown, <code>amount</code> parameter is missing in the request; you supply <code>fiat_amount</code> and a list of acceptable <code>cryptocurrencies</code> instead. <code>payment_intent</code> is not created automatically at this stage.</p>\n<hr />\n<h3 id=\"fiat-amount-fiat_amount\">Fiat amount <code>fiat_amount</code></h3>\n<p><em><strong>This is a mandatory parameter</strong></em></p>\n<p>The total amount in fiat.</p>\n<p>A positive integer representing how much to charge.</p>\n<p>Float, up to 4 digits after delimiter<br />Max supported amount - 999999.9999<br />Delimiter - dot (.)</p>\n<hr />\n<h3 id=\"fiat-currency-fiat_currency\">Fiat currency <code>fiat_currency</code></h3>\n<p><em><strong>This is a mandatory parameter</strong></em></p>\n<p>Three-letter ISO currency code, in uppercase. Must be a supported currency. Supported currencies are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>US Dollar</td>\n<td>USD</td>\n</tr>\n<tr>\n<td>Euro</td>\n<td>EUR</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"postback-url-postback_url\">Postback url <code>postback_url</code></h3>\n<p>Using postback URL allows you to receive automated webhooks to your system.</p>\n<p>You can specify postback url either in merchant's profile:</p>\n<img src=\"https://content.pstmn.io/5b3a80a8-924c-4e25-9763-c35907a10123/cG9zdGJhY2sucG5n\" />\n\n<p>Or use <code>postback_url</code> parameter in your API call.</p>\n<hr />\n<h3 id=\"order-id-order_id\">Order ID <code>order_id</code></h3>\n<p>Internal Order ID to match the session with the merchant's order, if exists.</p>\n<p>Maximum length: 255 symbols.</p>\n<hr />\n<h3 id=\"order-name-order_name\">Order name <code>order_name</code></h3>\n<p><em><strong>This is a mandatory parameter</strong></em></p>\n<p>The product’s name, meant to be displayable to the customer.</p>\n<p>Maximum length: 255 symbols.</p>\n<hr />\n<h3 id=\"session-lifetime-lifetime_minutes\">Session lifetime <code>lifetime_minutes</code></h3>\n<p>Specifies the lifetime of the payment session in minutes.</p>\n<p>Allowed values: from 1 to 10080 (1 minutes to 7 days).</p>\n<p><strong>Important notes:</strong></p>\n<ul>\n<li><p>If this parameter is not provided, the default session lifetime is used (120 minutes = 2 hours).</p>\n</li>\n<li><p>The payment session lifetime defined by <code>lifetime_minutes</code> applies only if there is an active payment intent for this session. After the payment intent is created, time starts to running out.</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"percent-of-deviation-amount_deviation_percentage\">Percent of Deviation <code>amount_deviation_percentage</code></h3>\n<p>Specifies the allowed percent of deviation between crypto transaction amount and session amount. When payment is received and the received amount falls into this Deviation interval, payment intent will be considered as \"paid\" even though there might be difference between actual and expected amounts.</p>\n<p>Float, up to 2 digits after delimiter<br />Supported amount range: from 0.00 to 50.00.</p>\n<p>This is due to the system limitations: exceeding this limit will not allow the system to match incoming crypto payment with the original session.</p>\n<p>Delimiter - dot (.)</p>\n<hr />\n<h3 id=\"supported-cryptocurrencies-cryptocurrencies\">Supported cryptocurrencies <code>cryptocurrencies</code></h3>\n<p>Specifies the list of availale cryptocurrencies for the session. Production environment:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>code</strong></th>\n<th><strong>blockchain</strong></th>\n<th><strong>coin_type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bitcoin</td>\n<td>BTC</td>\n<td>bitcoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Ether</td>\n<td>ETH</td>\n<td>ethereum</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Litecoin</td>\n<td>LTC</td>\n<td>litecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Dogecoin</td>\n<td>DOGE</td>\n<td>dogecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>tron</td>\n<td>trc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>BNB</td>\n<td>BNB</td>\n<td>binance-smart-chain</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Polygon</td>\n<td>MATIC</td>\n<td>polygon</td>\n<td>native</td>\n</tr>\n<tr>\n<td>TRON</td>\n<td>TRX</td>\n<td>tron</td>\n<td>native</td>\n</tr>\n</tbody>\n</table>\n</div><p>Format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    \"cryptocurrency\": \n     {\n         \"code\": \"ETH\",\n         \"blockchain\": \"ethereum\",\n         \"coin_type\": \"native\"\n     }\n\n</code></pre>\n<hr />\n<h3 id=\"customer-customer\">Customer <code>customer</code></h3>\n<p>The Customer this Payment session belongs to. This is a mandatory parameter, due to our compliance with international anti-money-laundering and terrorist trafficing regulations.</p>\n<p>Has child attributes described below:</p>\n<hr />\n<h4 id=\"email-email\">Email <code>email</code></h4>\n<p>The customer’s email.</p>\n<hr />\n<h4 id=\"first-name-first_name\">First name <code>first_name</code></h4>\n<p>The customer’s first name.</p>\n<hr />\n<h4 id=\"last-name-last_name\">Last name <code>last_name</code></h4>\n<p>The customer’s last name.</p>\n","urlObject":{"path":["paygate","v1","sessions","multi-currency"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1ce77445-3051-4abb-9be8-3afe15993d81","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fiat_amount\": 1,\n    \"fiat_currency\": \"USD\",\n    \"order_id\": \"1234\",\n    \"order_name\": \"Order #1234\",\n    \"lifetime_minutes\": 30,\n    \"postback_url\": \"https://www.hello.com/orders/123456\",\n    \"amount_deviation_percentage\": 5.00,\n    \"cryptocurrencies\": [\n      {\n        \"code\": \"ETH\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"native\"\n      },\n      {\n        \"code\": \"USDT\",\n        \"blockchain\": \"ethereum\",\n        \"coin_type\": \"erc20\"\n      },\n      {\n        \"code\": \"USDT\",\n        \"blockchain\": \"tron\",\n        \"coin_type\": \"trc20\"\n      }\n    ],\n    \"customer\": {\n      \"email\": \"example@mail.com\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\"\n    }\n  }","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions/multi-currency"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 12:14:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"CF-RAY","value":"95f0f10fee754160-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ses_rZK5o2G7lY2OPdy\",\n        \"object\": \"session\",\n        \"status\": \"pending\",\n        \"payment_type\": \"onetime\",\n        \"fiat_amount\": \"1\",\n        \"fiat_currency_code\": \"USD\",\n        \"order_id\": \"1234\",\n        \"order_name\": \"Order #1234\",\n        \"customer\": {\n            \"id\": \"cus_9JRO5pbjVpWm3zy\",\n            \"object\": \"customer\",\n            \"email\": \"example@mail.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\"\n        },\n        \"created_date\": 1752495286,\n        \"amount\": null,\n        \"cryptocurrencies\": [\n            {\n                \"id\": \"cur_G9JRO5pbdXWm3zy\",\n                \"object\": \"currency\",\n                \"code\": \"ETH\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"native\"\n            },\n            {\n                \"id\": \"cur_9KG4xy2REpgnPbZ\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"ethereum\",\n                \"coin_type\": \"erc20\"\n            },\n            {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            }\n        ]\n    }\n}"},{"id":"40997866-2bb5-454f-819f-1ea128600f88","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions/multi-currency"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"87fdd73b-469e-4a14-8cd9-582f8f7a25c7"},{"name":"sessions.price","id":"17bf1839-c390-4ee7-9aad-3c9cf0b06ce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"cryptocurrency\": \"cur_G9JRO5pbdXWm3zy\"\n}","options":{"raw":{"language":"json"}}},"url":"/paygate/v1/sessions/:id/price","description":"<h3 id=\"retrieving-fx-rate-for-the-payment-session\">Retrieving FX rate for the Payment Session</h3>\n<p>By using this method, you can receive an up-to-date exchange rate for the multi-currency payment session for selected crypto currency.</p>\n<hr />\n<h3 id=\"request-parameters\"><strong>Request Parameters</strong></h3>\n<h3 id=\"session-id-id\">Session id {id}</h3>\n<p><em><strong>This is mandatory parameter.</strong></em></p>\n<p>String, pattern: '^[0-9a-zA-Z]{19}$'</p>\n<p>Example: \"ses_9QqM7e5RnXa2vp5\"</p>\n<hr />\n<h3 id=\"response-structure\"><strong>Response Structure</strong></h3>\n<p>The response is returned in <strong>JSON format</strong> and provides the calculated <code>amount</code> in selected <code>cryptocurrency</code> .</p>\n","urlObject":{"path":["paygate","v1","sessions",":id","price"],"host":[""],"query":[],"variable":[{"type":"any","value":"ses_rZK5o2G7lY2OPdy","key":"id"}]}},"response":[{"id":"d6ae7af3-43e7-4ec8-8030-6c81d278e2df","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"cryptocurrency\": \"cur_G9JRO5pbdXWm3zy\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/paygate/v1/sessions/:id/price","host":[""],"path":["paygate","v1","sessions",":id","price"],"variable":[{"key":"id","value":"ses_rZK5o2G7lY2OPdy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 13:56:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f1856c9948277b-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"amount\": \"0.000326678951512834\",\n        \"cryptocurrency\": {\n            \"id\": \"cur_G9JRO5pbdXWm3zy\",\n            \"object\": \"currency\",\n            \"code\": \"ETH\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"native\"\n        }\n    }\n}"},{"id":"e6d6819c-06e6-43bc-9f9b-4ecdfc5fb356","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/paygate/v1/sessions/multi-currency"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"17bf1839-c390-4ee7-9aad-3c9cf0b06ce9"}],"id":"7e55d26c-76e6-4ced-a30b-cde83df0baec","description":"<p>The sole purpose of a Session is to activate or disable payments for customers. A Session is the umbrella object that keeps the checkout open for a single customer order. A Session has two possible states:</p>\n<ul>\n<li><p>Active – INXY continues to track and process the payments linked to this session.</p>\n</li>\n<li><p>Inactive (finished, canceled, expired) – all monitoring stops; any wallet address reserved by a payment-intent is released for reuse.</p>\n</li>\n</ul>\n<h3 id=\"session-variants\"><strong>Session Variants</strong></h3>\n<p>Sessions come in two flavours, distinguished by when the crypto amount is locked:</p>\n<ul>\n<li><p>Single-currency session – the coin, amount, and exchange rate are fixed the moment you call <code>POST /sessions</code>, and INXY immediately returns a ready payment-intent.</p>\n</li>\n<li><p>Multi-currency session – only the fiat amount is fixed upfront (`POST /sessions/multi-currency`).The shopper chooses a coin. You then create the payment-intent, and INXY locks the live exchange rate at that moment (and therefore fixes the final crypto amount).</p>\n</li>\n</ul>\n<p>Below table summarizes differences between the two:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variant</th>\n<th>Price Field</th>\n<th>Crypto amount locked</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Single-currency (fiat)</strong></td>\n<td><code>fiat_amount</code></td>\n<td>When session is created (rate applied)</td>\n</tr>\n<tr>\n<td><strong>Single-currency (crypto)</strong></td>\n<td><code>amount</code></td>\n<td>When session is created (no exchange rate applied).</td>\n</tr>\n<tr>\n<td><strong>Multi-currency</strong></td>\n<td><code>fiat_amount</code></td>\n<td>When payment-intent is created (live rate).</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Creating single-currency sessions:</strong></p>\n<ol>\n<li><p>Use <code>POST /sessions</code></p>\n</li>\n<li><p>Choose the pricing field</p>\n<ol>\n<li><p>Use <code>amount</code> to set a hard crypto price (e.g., exactly 0.01 BTC).</p>\n</li>\n<li><p>Use <code>fiat_amount</code> to set a fiat price; INXY converts it to crypto instantly via the current FX rate.</p>\n</li>\n</ol>\n</li>\n<li><p>Specify the coin in <code>cryptocurrency</code>. This determines both the invoice currency and the network on which the customer will pay.</p>\n</li>\n</ol>\n<p><strong>Creating multi-currency sessions:</strong></p>\n<ol>\n<li><p>Use <code>POST /sessions/multi-currency</code>.</p>\n</li>\n<li><p>Multi-currency sessions follow the same rules for <code>fiat_amount</code>, but you provide a <code>cryptocurrencies[]</code> list and the FX conversion is deferred until the user selects their preferred coin.</p>\n</li>\n</ol>\n","_postman_id":"7e55d26c-76e6-4ced-a30b-cde83df0baec","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}}},{"name":"Payment Intents","item":[{"name":"payment-intents.confirm","id":"925b6bdf-2348-4ded-853a-e58ce460a1c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{local_url}}/paygate/v1/payment-intents/:id/confirm","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","payment-intents",":id","confirm"],"host":["{{local_url}}"],"query":[],"variable":[{"id":"58c319f4-068b-4052-8059-f03c82f74431","type":"any","value":"pi_wNJAPdRlZzaGyOX","key":"id"}]}},"response":[{"id":"32f186b7-32a7-495d-a4d0-d3515a2c67f3","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"/paygate/v1/payment-intents/:id/confirm","host":[""],"path":["paygate","v1","payment-intents",":id","confirm"],"variable":[{"key":"id","value":"pi_6k8VRaOJK7XwMOb"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 22:12:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"Cf-Ray","value":"9515e2e82e21c5c0-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"pi_6k8VRaOJK7XwMOb\",\n        \"object\": \"payment_intent\",\n        \"currency_code\": \"USDT\",\n        \"currency\": {\n            \"id\": \"cur_P6k8VRaO3awMObG\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        \"amount\": 11.492263,\n        \"fiat_amount\": 10,\n        \"paid_amount\": 6,\n        \"paid_fiat_amount\": 5.22,\n        \"exchange_rate\": \"0.87015069\",\n        \"status\": \"paid\",\n        \"created_date\": 1750197607,\n        \"issued_wallet\": null,\n        \"customer\": {\n            \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n            \"object\": \"customer\",\n            \"email\": \"john.doe@example.cc\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\"\n        },\n        \"payments\": [\n            {\n                \"id\": \"pay_znjYKaezr5px1J5\",\n                \"object\": \"payment\",\n                \"status\": \"finished\",\n                \"sub_status\": \"finished\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 6,\n                \"fiat_amount\": 5.22,\n                \"fiat_currency_code\": \"EUR\",\n                \"created_date\": 1750197751,\n                \"confirmed_date\": 1750197845\n            }\n        ],\n        \"fees\": {\n            \"object\": \"fee\",\n            \"amount\": \"0.06\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"fiat_amount\": \"0\",\n            \"fiat_currency_code\": \"EUR\"\n        },\n        \"issued_wallet_details\": {\n            \"address\": null,\n            \"reserved_until\": null\n        }\n    }\n}"},{"id":"5c2a99bd-6b12-4147-8387-9d4b7ae3c198","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/payment-intents/:id/confirm","host":[""],"path":["paygate","v1","payment-intents",":id","confirm"],"variable":[{"key":"id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"925b6bdf-2348-4ded-853a-e58ce460a1c3"},{"name":"payment-intents.cancel","id":"7d7e1d0c-82df-4f43-8697-2a7888c390f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{local_url}}/paygate/v1/payment-intents/:id/cancel","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","payment-intents",":id","cancel"],"host":["{{local_url}}"],"query":[],"variable":[{"id":"c7ef6260-3ed5-44b0-8b6b-00eab79b10c0","type":"any","value":"pi_DKgl9avQWgeG1vz","key":"id"}]}},"response":[{"id":"e760ee46-ef2e-47f2-89c9-f5bd5a65d504","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/payment-intents/:id/cancel","host":[""],"path":["paygate","v1","payment-intents",":id","cancel"],"variable":[{"key":"id","value":"pi_GLjDYaVzBEa8Pq1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 22:15:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"Cf-Ray","value":"9515e734dca3126a-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"pi_GLjDYaVzBEa8Pq1\",\n        \"object\": \"payment_intent\",\n        \"currency_code\": \"USDT\",\n        \"currency\": {\n            \"id\": \"cur_P6k8VRaO3awMObG\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        \"amount\": 11.491109,\n        \"fiat_amount\": 10,\n        \"paid_amount\": 6,\n        \"paid_fiat_amount\": 5.22,\n        \"exchange_rate\": \"0.87023805\",\n        \"status\": \"canceled\",\n        \"created_date\": 1750198143,\n        \"issued_wallet\": null,\n        \"customer\": {\n            \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n            \"object\": \"customer\",\n            \"email\": \"john.doe@example.cc\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\"\n        },\n        \"payments\": [\n            {\n                \"id\": \"pay_vAxkEXgrw82VLQ6\",\n                \"object\": \"payment\",\n                \"status\": \"finished\",\n                \"sub_status\": \"finished\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 6,\n                \"fiat_amount\": 5.22,\n                \"fiat_currency_code\": \"EUR\",\n                \"created_date\": 1750198291,\n                \"confirmed_date\": 1750198325\n            }\n        ],\n        \"fees\": {\n            \"object\": \"fee\",\n            \"amount\": \"0.06\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"fiat_amount\": \"0\",\n            \"fiat_currency_code\": \"EUR\"\n        },\n        \"issued_wallet_details\": {\n            \"address\": null,\n            \"reserved_until\": null\n        }\n    }\n}"},{"id":"1837a6ce-9e40-4aee-9595-c0e9ab805768","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/payment-intents/:id/cancel","host":[""],"path":["paygate","v1","payment-intents",":id","cancel"],"variable":[{"key":"id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"7d7e1d0c-82df-4f43-8697-2a7888c390f0"},{"name":"payment-intents.pay-part","id":"b84e6eb1-f4ed-48d1-aa59-27dfcbc45c21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{local_url}}/paygate/v1/payment-intents/:id/pay-part","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","payment-intents",":id","pay-part"],"host":["{{local_url}}"],"query":[],"variable":[{"id":"296733a7-f6ae-4d6e-a652-96dca8f5bd2d","type":"any","value":"pi_DKgl9avQWgeG1vz","key":"id"}]}},"response":[{"id":"a87324e6-9fc4-471d-a55a-e10847b6d92e","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/payment-intents/:id/pay-part","host":[""],"path":["paygate","v1","payment-intents",":id","pay-part"],"variable":[{"key":"id","value":"pi_x64OepA59ZpDPVQ"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 22:20:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"},{"key":"Cf-Ray","value":"9515ee8ceee46147-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"pi_x64OepA59ZpDPVQ\",\n        \"object\": \"payment_intent\",\n        \"currency_code\": \"USDT\",\n        \"currency\": {\n            \"id\": \"cur_P6k8VRaO3awMObG\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        \"amount\": 11.493529,\n        \"fiat_amount\": 10,\n        \"paid_amount\": 6,\n        \"paid_fiat_amount\": 5.22,\n        \"exchange_rate\": \"0.87005484\",\n        \"status\": \"waiting_payment_part\",\n        \"created_date\": 1750198557,\n        \"issued_wallet\": \"TQMkgtNvnKG9co5tVsxHNEyQtxNZh1PNed\",\n        \"customer\": {\n            \"id\": \"cus_xKJkA2ZkmX4Z9l0\",\n            \"object\": \"customer\",\n            \"email\": \"john.doe@example.cc\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\"\n        },\n        \"payments\": [\n            {\n                \"id\": \"pay_OgL9najloQ2KEM6\",\n                \"object\": \"payment\",\n                \"status\": \"finished\",\n                \"sub_status\": \"finished\",\n                \"currency_code\": \"USDT\",\n                \"currency\": {\n                    \"id\": \"cur_P6k8VRaO3awMObG\",\n                    \"object\": \"currency\",\n                    \"code\": \"USDT\",\n                    \"blockchain\": \"tron\",\n                    \"coin_type\": \"trc20\"\n                },\n                \"amount\": 6,\n                \"fiat_amount\": 5.22,\n                \"fiat_currency_code\": \"EUR\",\n                \"created_date\": 1750198651,\n                \"confirmed_date\": 1750198686\n            }\n        ],\n        \"fees\": {\n            \"object\": \"fee\",\n            \"amount\": \"0.06\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"fiat_amount\": \"0\",\n            \"fiat_currency_code\": \"EUR\"\n        },\n        \"issued_wallet_details\": {\n            \"address\": \"TQMkgtNvnKG9co5tVsxHNEyQtxNZh1PNed\",\n            \"reserved_until\": 1750200601\n        }\n    }\n}"},{"id":"307d2470-3d35-4260-a7bc-f22b6cedf420","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/paygate/v1/payment-intents/:id/pay-part","host":[""],"path":["paygate","v1","payment-intents",":id","pay-part"],"variable":[{"key":"id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"b84e6eb1-f4ed-48d1-aa59-27dfcbc45c21"},{"name":"payment-intents.create","id":"44fb9401-1f38-45b9-b6da-c31bd9252530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session\": \"ses_nDxPeXkz0e230oZ\",\n    \"cryptocurrency\": \"cur_P6k8VRaO3awMObG\",\n    \"customer\": {\n        \"email\": \"john.doe@example.cc\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{sandbox-api-url}}/paygate/v1/payment-intents","description":"<h3 id=\"create-payment-intent-for-multi-currency-payment-session\">Create Payment Intent for Multi-Currency Payment Session</h3>\n<p>By using this method, you create a new payment intent with specific cryptocurrency for a multi-currency payment session.</p>\n<hr />\n<h3 id=\"request-parameters\"><strong>Request Parameters</strong></h3>\n<h3 id=\"session-id-session\">Session ID <code>session</code></h3>\n<p><em><strong>This is mandatory parameter.</strong></em></p>\n<p>String, pattern: '^[0-9a-zA-Z]{19}$'</p>\n<p>Example: \"ses_9QqM7e5RnXa2vp5\"</p>\n<hr />\n<h3 id=\"cryptocurrency-code-cryptocurrency\">Cryptocurrency code <code>cryptocurrency</code></h3>\n<p><em><strong>This is mandatory parameter.</strong></em></p>\n<p>String, pattern:'^[0-9a-zA-Z]{19}$'</p>\n<p>Example: \"cur_VvJ4openRe7Az1X\"</p>\n<hr />\n<h3 id=\"customer-customer\">Customer <code>customer</code></h3>\n<p>The Customer this Payment session belongs to. This is a mandatory parameter, due to our compliance with international anti-money-laundering and terrorist trafficing regulations.</p>\n<p>Has child attributes described below:</p>\n<hr />\n<h4 id=\"email-email\">Email <code>email</code></h4>\n<p>The customer’s email.</p>\n<hr />\n<h4 id=\"first-name-first_name\">First name <code>first_name</code></h4>\n<p>The customer’s first name.</p>\n<hr />\n<h4 id=\"last-name-last_name\">Last name <code>last_name</code></h4>\n<p>The customer’s last name.</p>\n<hr />\n<h3 id=\"response-structure\"><strong>Response Structure</strong></h3>\n<p>The response is returned in <strong>JSON format</strong> and follows the same structure as the webhook notification. However, there are key differences in how transactions are represented.</p>\n<h4 id=\"1-what-is-included-in-the-session-response\"><strong>1. What is included in the session response?</strong></h4>\n<ol>\n<li><p>High-level <code>session</code></p>\n</li>\n<li><p>Underlying <code>payment_intent</code></p>\n</li>\n<li><p>All accepted <code>payments</code> (incoming crypto transfers)</p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","payment-intents"],"host":["{{sandbox-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"d6f5b651-375d-4cd2-a277-e23973dc84fd","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session\": \"ses_nDxPeXkz0e230oZ\",\n    \"cryptocurrency\": \"cur_P6k8VRaO3awMObG\",\n    \"customer\": {\n        \"email\": \"john.doe@example.cc\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{sandbox-api-url}}/paygate/v1/payment-intents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 14:12:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f19e159a81390a-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"pi_oQeNVp0owKa61W3\",\n        \"object\": \"payment_intent\",\n        \"currency_code\": \"USDT\",\n        \"currency\": {\n            \"id\": \"cur_P6k8VRaO3awMObG\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        \"amount\": 1.000015,\n        \"fiat_amount\": 1,\n        \"paid_amount\": 0,\n        \"paid_fiat_amount\": 0,\n        \"exchange_rate\": \"0.9999856\",\n        \"status\": \"waiting_payment\",\n        \"created_date\": 1752502268,\n        \"issued_wallet\": \"TJofwbdPF1wyjNH76Qws3F4znqvZd2SapK\",\n        \"customer\": {\n            \"id\": \"cus_9JRO5pbjVpWm3zy\",\n            \"object\": \"customer\",\n            \"email\": \"john.doe@example.cc\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\"\n        },\n        \"payments\": [],\n        \"fees\": {\n            \"object\": \"fee\",\n            \"amount\": \"0\",\n            \"currency\": {\n                \"id\": \"cur_P6k8VRaO3awMObG\",\n                \"object\": \"currency\",\n                \"code\": \"USDT\",\n                \"blockchain\": \"tron\",\n                \"coin_type\": \"trc20\"\n            },\n            \"fiat_amount\": \"0\",\n            \"fiat_currency_code\": \"USD\"\n        },\n        \"issued_wallet_details\": {\n            \"address\": null,\n            \"reserved_until\": null\n        }\n    }\n}"},{"id":"be7dc516-8f66-4472-ac1f-b8782b61f08c","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{sandbox-api-url}}/paygate/v1/payment-intents"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"44fb9401-1f38-45b9-b6da-c31bd9252530"}],"id":"41535bb8-f9dc-4ed5-80fa-11ba897e9dbf","description":"<p>Payment Intents are essentially invoices that must be generated before any incoming payment can be made. They specify parameters of crypto payment, allocate a wallet to the session, monitor whether incoming payments are received and verify that payment was made in full.</p>\n<p><strong>How it’s created:</strong></p>\n<ul>\n<li><p>For a single-currency session, INXY issues the payment-intent automatically when you call <code>POST /sessions</code>; the payment-intent, along with wallet address and crypto amount, is returned in the same response.</p>\n</li>\n<li><p>For a multi-currency session, no invoice exists until the shopper picks a coin; your backend must call <code>POST /payment-intents</code> (passing the session ID and the chosen cryptocurrency) to generate it.</p>\n</li>\n</ul>\n<p><strong>How you respond to partial payments:</strong></p>\n<p>Whenever money is received from the customer in full, the intent will be closed automatically. However, if the customer sends less than expected, the intent switches to partially_paid and waits for your decision. Available options are:</p>\n<ul>\n<li>Accept the payment, which will allow the session to conclude, by calling:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /paygate/v1/payment-intents/:id/confirm\n\n</code></pre><ul>\n<li>Cancel it with:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /paygate/v1/payment-intents/:id/cencel\n\n</code></pre><ul>\n<li>Or request a top-up with:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /paygate/v1/payment-intents/:id/pay-part\n\n</code></pre><h3 id=\"note\">Note</h3>\n<p>Specifying the <code>amount_deviation_percentage</code> parameter in the <strong><code>session</code></strong> will allow the system to automatically accept payments, when deviation from the expected amount is below the threshold. This allows to avoid making additional API calls and expedites processing of such partially paid scenarios.</p>\n","_postman_id":"41535bb8-f9dc-4ed5-80fa-11ba897e9dbf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}}},{"name":"Dictionaries","item":[{"name":"dictionaries.cryptocurrencies","id":"f9034c0f-271c-40f8-830a-64c1226f7afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/cryptocurrencies","description":"<p>This method returns the list of supported cryptocurrencies the merchant can accept from customers..Returns array of cryptocurrencies, embedded into <code>data</code> envelope.</p>\n<hr />\n<h2 id=\"response-structure\">Response Structure</h2>\n<h3 id=\"cryptocurrency-cryptocurrency\">Cryptocurrency cryptocurrency</h3>\n<p>Cryptocurrency the merchant can use when creating <code>session</code> and <code>payment-intent</code>.</p>\n<p>Available cryptocurrencies on Production.</p>\n<p>Note: For specific merchant this list can be limited due to merchant settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>code</strong></th>\n<th><strong>blockchain</strong></th>\n<th><strong>coin_type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bitcoin</td>\n<td>BTC</td>\n<td>bitcoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Ether</td>\n<td>ETH</td>\n<td>ethereum</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Litecoin</td>\n<td>LTC</td>\n<td>litecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Dogecoin</td>\n<td>DOGE</td>\n<td>dogecoin</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>tron</td>\n<td>trc20</td>\n</tr>\n<tr>\n<td>Tether USD</td>\n<td>USDT</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>USD Coin</td>\n<td>USDC</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>ethereum</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>binance-smart-chain</td>\n<td>bep20</td>\n</tr>\n<tr>\n<td>Dai</td>\n<td>DAI</td>\n<td>polygon</td>\n<td>erc20</td>\n</tr>\n<tr>\n<td>BNB</td>\n<td>BNB</td>\n<td>binance-smart-chain</td>\n<td>native</td>\n</tr>\n<tr>\n<td>Polygon</td>\n<td>MATIC</td>\n<td>polygon</td>\n<td>native</td>\n</tr>\n<tr>\n<td>TRON</td>\n<td>TRX</td>\n<td>tron</td>\n<td>native</td>\n</tr>\n</tbody>\n</table>\n</div><p>Has child attributes described below:</p>\n<hr />\n<h4 id=\"id-id\">ID <code>id</code></h4>\n<p>Unique currency identifier</p>\n<p>Example: \"cur_G9JRO5pbdXWm3zy\"</p>\n<hr />\n<h4 id=\"object-object\">Object <code>object</code></h4>\n<p>Technical parameter, always equals \"currency\".</p>\n<hr />\n<h4 id=\"code-code\">Code <code>code</code></h4>\n<p>3-digit currency code. On production:</p>\n<p>Example: <code>ETH</code></p>\n<hr />\n<h4 id=\"blockchain-blockchain\">Blockchain <code>blockchain</code></h4>\n<p>Blockchain code</p>\n<p>Example: <code>ethereum</code></p>\n<hr />\n<h4 id=\"coin-type-coin_type\">Coin type <code>coin_type</code></h4>\n<p>Type of the coin. For specific blockchain the coin can be <code>native`.</code></p>\n<p>Example: <code>native</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","dictionaries","cryptocurrencies"],"host":["{{sandbox-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"351941e0-f2df-44e8-ae07-760fd99eec2a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/cryptocurrencies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 14:01:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f18d479fd3bacb-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"cur_G9JRO5pbdXWm3zy\",\n            \"object\": \"currency\",\n            \"code\": \"ETH\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"native\"\n        },\n        {\n            \"id\": \"cur_9KG4xy2REpgnPbZ\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"erc20\"\n        },\n        {\n            \"id\": \"cur_065QgLX6lpJDPBE\",\n            \"object\": \"currency\",\n            \"code\": \"USDC\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"erc20\"\n        },\n        {\n            \"id\": \"cur_gLVo6JpWGp4N8nW\",\n            \"object\": \"currency\",\n            \"code\": \"DAI\",\n            \"blockchain\": \"ethereum\",\n            \"coin_type\": \"erc20\"\n        },\n        {\n            \"id\": \"cur_LEZNMn2noXBAeKy\",\n            \"object\": \"currency\",\n            \"code\": \"TRX\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"native\"\n        },\n        {\n            \"id\": \"cur_P6k8VRaO3awMObG\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        {\n            \"id\": \"cur_6GLjDYaVD28Pq1d\",\n            \"object\": \"currency\",\n            \"code\": \"USDC\",\n            \"blockchain\": \"tron\",\n            \"coin_type\": \"trc20\"\n        },\n        {\n            \"id\": \"cur_AmrPVepryab1wjL\",\n            \"object\": \"currency\",\n            \"code\": \"MATIC\",\n            \"blockchain\": \"polygon\",\n            \"coin_type\": \"native\"\n        },\n        {\n            \"id\": \"cur_yx64OepAR2DPVQW\",\n            \"object\": \"currency\",\n            \"code\": \"USDT\",\n            \"blockchain\": \"polygon\",\n            \"coin_type\": \"erc20\"\n        },\n        {\n            \"id\": \"cur_QqWwnNawQ2k6rOG\",\n            \"object\": \"currency\",\n            \"code\": \"USDC\",\n            \"blockchain\": \"polygon\",\n            \"coin_type\": \"erc20\"\n        },\n        {\n            \"id\": \"cur_qGvjOkX9D2N1wb9\",\n            \"object\": \"currency\",\n            \"code\": \"DAI\",\n            \"blockchain\": \"polygon\",\n            \"coin_type\": \"erc20\"\n        }\n    ]\n}"},{"id":"15f8b86d-f18e-4008-9693-f8d87bce0ab9","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/cryptocurrencies"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"f9034c0f-271c-40f8-830a-64c1226f7afd"},{"name":"dictionaries.currencies","id":"e3dc86bd-1ecf-40bb-a883-4a08f57cc7cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/currencies","description":"<p>This method returns the list of supported fiat currencies the merchant can fix amount in payment sessions..Returns array of currencies, embedded into <code>data</code> envelope.</p>\n<hr />\n<h2 id=\"response-structure\">Response Structure</h2>\n<h3 id=\"currency-currency\">Currency currency</h3>\n<p>Currency the merchant can use when creating <code>session</code> and <code>payment-intent</code>.</p>\n<p>Available currencies on Production:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Currency</strong></th>\n<th><strong>code</strong></th>\n<th><strong>Symbol</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United States Dollar</td>\n<td>USD</td>\n<td>$</td>\n</tr>\n<tr>\n<td>Euro</td>\n<td>EUR</td>\n<td>€</td>\n</tr>\n</tbody>\n</table>\n</div><p>Has child attributes described below:</p>\n<hr />\n<h4 id=\"id-id\">ID <code>id</code></h4>\n<p>Unique currency identifier</p>\n<p>Example: \"fiat_currency_dvAxkEXgr2VLQ6O\"</p>\n<hr />\n<h4 id=\"object-object\">Object <code>object</code></h4>\n<p>Technical parameter, always equals <code>fiat_currency</code>`</p>\n<hr />\n<h4 id=\"name-name\">Name <code>name</code></h4>\n<p>Name of the currency</p>\n<p>Example: \"U.S. Dollar\"</p>\n<hr />\n<h4 id=\"code-code\">Code <code>code</code></h4>\n<p>3-digit currency code. On production:</p>\n<p>Example: \"USD\"</p>\n<hr />\n<h4 id=\"symbol-symbol\">Symbol <code>symbol</code></h4>\n<p>Symbol to display to the end user, if needed.</p>\n<p>Example: $</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}},"urlObject":{"path":["paygate","v1","dictionaries","currencies"],"host":["{{sandbox-api-url}}"],"query":[],"variable":[]}},"response":[{"id":"2e0d7453-6f75-4f55-8f64-357a9339a8a8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/currencies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Jul 2025 14:03:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"Strict-Transport-Security","value":"max-age=2592000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"95f190a66f7a38a3-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"fiat_currency_dvAxkEXgr2VLQ6O\",\n            \"object\": \"fiat_currency\",\n            \"name\": \"U.S. Dollar\",\n            \"code\": \"USD\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": \"fiat_currency_Axmb3RXBJX5jVvy\",\n            \"object\": \"fiat_currency\",\n            \"name\": \"Euro\",\n            \"code\": \"EUR\",\n            \"symbol\": \"€\"\n        }\n    ]\n}"},{"id":"ebcb0393-e1a6-4394-812d-b0d0ad81094f","name":"500 Server Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{sandbox-api-url}}/paygate/v1/dictionaries/currencies"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jun 2025 20:43:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cf-Ray","value":"9515619e5bc1d6cc-IAD"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Ratelimit-Limit","value":"60"},{"key":"X-Ratelimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PUT, DELETE, HEAD"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Origin,Content-Type,Accept,Authorization,X-Organization-Uid,X-Localization,X-Inxy-Payments-2fa-Code,X-Page-Path,X-Page-Request-ID,X-Project, X-Xsrf-Token"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none'"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"Strict-Transport-Security","value":"max-age=0"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Server Error\"\n}"}],"_postman_id":"e3dc86bd-1ecf-40bb-a883-4a08f57cc7cc"}],"id":"828c606d-1b26-4d0b-b97b-67c21a8de7bc","description":"<p>The dictionaries endpoints are simple, read-only look-ups that list every asset your merchant account can use.</p>\n","_postman_id":"828c606d-1b26-4d0b-b97b-67c21a8de7bc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]},"isInherited":true,"source":{"_postman_id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","id":"257d34b3-c8ca-42fb-b40e-0b050a7da5c0","name":"INXY Paygate API v1","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{merchant_api_token}}"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"5d305d93-e58c-4482-a5bf-f1f3bfc36dd9"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"25b20875-3074-4703-a8f4-aeb5444457ba"}}],"variable":[{"key":"sandbox-url","value":"","type":"default"}]}