{"info":{"_postman_id":"9989b5a7-533a-4fe1-80fd-6a72f2f901d9","name":"FV Bank Merchant APIs","description":"<html><head></head><body><p>Welcome to FV Merchant APIs.</p>\n<p>These APIs enable merchants and platforms to manage beneficiaries, configure payment methods, and send payments programmatically.</p>\n<p>The API is designed around common financial workflows such as sending money, tracking transactions, and managing recipients. Instead of interacting with isolated endpoints, developers are encouraged to follow use-case-based flows for faster and more reliable integration.</p>\n<p>To get started, authenticate your requests and follow the step-by-step guides under “Use Cases”.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"19084463","collectionId":"9989b5a7-533a-4fe1-80fd-6a72f2f901d9","publishedId":"2sBXqFLgno","public":true,"customColor":{"top-bar":"F5F5F5","right-sidebar":"303030","highlight":"2563EB"},"publishDate":"2026-04-22T19:12:11.000Z"},"item":[{"name":"Getting Started","item":[{"name":"Authentication","item":[],"id":"0b28b4ba-8622-457f-adf2-ed678010a85b","description":"<p>FV Merchant APIs use a secure JWT-based authentication mechanism.</p>\n<p>To access the APIs, you must first generate a SessionToken. This is done using a two-step process:</p>\n<p>Step 1: Generate JWT<br />Create a signed JWT using your ClientID and ClientSecret. This token is short-lived and is used only to authenticate with the /auth endpoint.</p>\n<p>Example (Node.js):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const jwt = require('jsonwebtoken');\nconst clientID = \"your_client_id\";\nconst clientSecret = \"your_client_secret\";\nconst payload = {\n  ClientID: clientID,\n  iat: Math.floor(Date.now() / 1000),\n  exp: Math.floor(Date.now() / 1000) + (60 * 5) // expires in 5 minutes\n};\nconst token = jwt.sign(payload, clientSecret);\nconsole.log(\"Generated JWT:\", token);\n\n</code></pre>\n<p>Step 2: Get Session Token<br />Send the generated JWT in the X-AUTH-TOKEN header to the /auth endpoint. A SessionToken will be returned in the response.  </p>\n<p>🔑 Get Session Token (Node.js)</p>\n<p>Use your pre-generated JWT to authenticate with the <code>/auth</code> endpoint and receive a SessionToken.</p>\n<p><strong>Notes:</strong></p>\n<ul>\n<li><p>Pass the JWT in the <code>X-AUTH-TOKEN</code> header</p>\n</li>\n<li><p>The response will contain a <strong>SessionToken</strong></p>\n</li>\n<li><p>Use the SessionToken for all subsequent API requests</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\n// 🔐 Your pre-generated JWT\nconst JWT_TOKEN = 'your_generated_jwt_token_here';\n// 🌐 Base URL\nconst BASE_URL = 'https://sandbox.merchant.fvbank.us/v2';\nasync function getSessionToken() {\n  try {\n    const response = await axios.get(\n      `${BASE_URL}/auth`,\n      {\n        headers: {\n          'Content-Type': 'application/json',\n          'X-AUTH-TOKEN': JWT_TOKEN\n        }\n      }\n    );\n    console.log('Session Token Response:', response.data);\n    return response.data;\n  } catch (error) {\n    console.error(\n      'Error:',\n      error.response?.data || error.message\n    );\n  }\n}\ngetSessionToken();\n\n</code></pre>\n<p>Step 3: Use Session Token<br />Include the SessionToken in the X-AUTH-TOKEN header for all subsequent API requests.</p>\n<hr />\n<p><strong>Authentication Flow:</strong></p>\n<p>Client Credentials → Generate JWT → Call /auth → Receive SessionToken → Use SessionToken for API Calls</p>\n<hr />\n<p>Important Notes:</p>\n<ul>\n<li><p>JWT is short-lived (~5 minutes) and used only for authentication</p>\n</li>\n<li><p>SessionToken validity depends on the expiration (exp) defined in the JWT used during authentication.</p>\n</li>\n<li><p>A refreshed token may be returned in the <code>x-refresh-token</code> header</p>\n</li>\n<li><p>Always reuse SessionToken until it expires</p>\n</li>\n<li><p>Regenerate token if you receive authentication errors (401)</p>\n</li>\n<li><p><strong>Requests must originate from the same IP used during authentication</strong></p>\n</li>\n</ul>\n","_postman_id":"0b28b4ba-8622-457f-adf2-ed678010a85b"},{"name":"Make Your First API Call","item":[],"id":"dafa3247-6340-45df-95e3-6d6a34409343","description":"<p>This example demonstrates how to make your first authenticated API call using the SessionToken. Before proceeding, ensure you have successfully generated a SessionToken using the Authentication step.</p>\n<hr />\n<h3 id=\"🔐-authentication\">🔐 Authentication</h3>\n<p>All API requests must include the Authorization in the request header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">Authorization: &amp;#x27;Bearer &lt;SessionToken&gt;&amp;#x27;\n\n</code></pre>\n<hr />\n<h3 id=\"🔁-token-refresh-handling\">🔁 Token Refresh Handling</h3>\n<p>While making API calls, you may receive a refreshed token in the response header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">x-refresh-token: &lt;new_session_token&gt;\n\n</code></pre>\n<p>This indicates that your current SessionToken is nearing expiration.</p>\n<p><strong>Recommended handling:</strong></p>\n<ul>\n<li><p>Replace the existing SessionToken with the new <code>x-refresh-token</code></p>\n</li>\n<li><p>Use the refreshed token for all subsequent API requests</p>\n</li>\n<li><p>This ensures uninterrupted API access without re-authentication</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚠️-best-practices\">⚠️ Best Practices</h3>\n<ul>\n<li><p>Always include <code>Authorization</code> header in every request</p>\n</li>\n<li><p>Do not reuse expired tokens</p>\n</li>\n<li><p>If a request fails with <code>401 Unauthorized</code>, regenerate the SessionToken via <code>/auth</code></p>\n</li>\n<li><p>Cache and reuse tokens until expiry to avoid unnecessary auth calls</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"▶️-example-get-account-balance\">▶️ Example: Get Account Balance</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET https://docs.apis.fvbank.us/v2/accounts/balance\n\n</code></pre>\n<p>Headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">X-AUTH-TOKEN: \n\n</code></pre>\n<hr />\n<h3 id=\"📥-example-response\">📥 Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  ResponseCode: 200,\n  ResponseMessage: 'Success',\n  ResponseData: [\n    {\n      Balance: '23997.98',\n      ReservedAmount: '0.00',\n      AvailableBalance: '23997.98',\n      Currency: 'USD',\n      Name: 'Account (USD)',\n      Id: '637403491'\n    },\n    {\n      Balance: '0.00000000',\n      ReservedAmount: '0.00000000',\n      AvailableBalance: '0.00000000',\n      Currency: 'BTC',\n      Name: 'Custody (BTC)',\n      Id: '240122737'\n    },\n    {\n      Balance: '0.00000000',\n      ReservedAmount: '0.00000000',\n      AvailableBalance: '0.00000000',\n      Currency: 'DOGE',\n      Name: 'Custody (DOGE)',\n      Id: '322781227'\n    },\n    {\n      Balance: '0.000000000',\n      ReservedAmount: '0.000000000',\n      AvailableBalance: '0.000000000',\n      Currency: 'DOT',\n      Name: 'Custody (DOT)',\n      Id: '255877064'\n    },\n    {\n      Balance: '0.000000000',\n      ReservedAmount: '0.000000000',\n      AvailableBalance: '0.000000000',\n      Currency: 'ETH',\n      Name: 'Custody (ETH)',\n      Id: '127822708'\n    },\n    {\n      Balance: '0.000000000',\n      ReservedAmount: '0.000000000',\n      AvailableBalance: '0.000000000',\n      Currency: 'MATIC',\n      Name: 'Custody (MATIC)',\n      Id: '226960488'\n    },\n    {\n      Balance: '0.000000',\n      ReservedAmount: '0.000000',\n      AvailableBalance: '0.000000',\n      Currency: 'USDC',\n      Name: 'Custody (USDC)',\n      Id: '554068538'\n    },\n    {\n      Balance: '0.000000',\n      ReservedAmount: '0.000000',\n      AvailableBalance: '0.000000',\n      Currency: 'USDT',\n      Name: 'Custody (USDT)',\n      Id: '685060867'\n    },\n    {\n      Balance: '5000.00',\n      ReservedAmount: '0.00',\n      AvailableBalance: '5000.00',\n      Currency: 'USD',\n      Name: 'Custody Account (USD)',\n      Id: '085281546'\n    },\n    {\n      Balance: '0.00',\n      ReservedAmount: '0.00',\n      AvailableBalance: '0.00',\n      Currency: 'USD',\n      Name: 'Custody Money Market Account (USD)',\n      Id: '827001647'\n    }\n  ]\n}\n\n</code></pre>\n<hr />\n<h3 id=\"💻-nodejs-example\">💻 Node.js Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token\";\nasync function getAccountBalance() {\n  try {\n    const response = await axios.get(`${baseUrl}/account/balance`, {\n      headers: {\n        \"Authorization\": `Bearer ${sessionToken}`,\n        \"Content-Type\": \"application/json\"\n      }\n    });\n    const data = response.data;\n    console.log(\"Account Balance:\", data);\n    // Optional: handle refresh token\n    const refreshToken = response.headers[\"x-refresh-token\"];\n    if (refreshToken) {\n      console.log(\"New Session Token:\", refreshToken);\n    }\n  } catch (error) {\n    console.error(\n      \"Error fetching account balance:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetAccountBalance();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-whats-next\">📌 What’s Next</h3>\n<p>Once you are able to make authenticated API calls, you can:</p>\n<ul>\n<li><p>Create a Beneficiary</p>\n</li>\n<li><p>Add a Payment Method</p>\n</li>\n<li><p>Initiate a Payment</p>\n</li>\n<li><p>Track Transactions</p>\n</li>\n</ul>\n<p>Or follow the <strong>Send Money</strong> use case for a complete end-to-end flow.</p>\n","_postman_id":"dafa3247-6340-45df-95e3-6d6a34409343"}],"id":"d104869c-6b6b-4508-a6d5-470c141e8b10","description":"<p>Welcome to FV Merchant APIs.</p>\n<p>This guide will help you quickly get started with integrating our APIs to manage beneficiaries, configure payment methods, and initiate payments.</p>\n<p>All API requests are secured using a two-step authentication process:</p>\n<ol>\n<li><p>Generate a short-lived JWT using your ClientID and ClientSecret</p>\n</li>\n<li><p>Exchange the JWT for a SessionToken via the /auth endpoint</p>\n</li>\n</ol>\n<p>Once authenticated, the SessionToken must be included in all API requests.</p>\n<p>For a complete integration, follow these steps:</p>\n<ol>\n<li><p>Authenticate using your credentials</p>\n</li>\n<li><p>Create a beneficiary</p>\n</li>\n<li><p>Add a payment method</p>\n</li>\n<li><p>Initiate a payment</p>\n</li>\n<li><p>Track the transaction</p>\n</li>\n</ol>\n<p>Refer to the \"Use Cases\" section for step-by-step flows.</p>\n","_postman_id":"d104869c-6b6b-4508-a6d5-470c141e8b10"},{"name":"Use Cases","item":[{"name":"Send Bank Payments","item":[],"id":"bb2a9e1f-b37f-4295-8dad-c493125ee447","description":"<p>This use case demonstrates how to send a bank payment from your FV account to a beneficiary using <strong>Domestic ACH (USD)</strong>.</p>\n<p>The same flow can be used for other fiat payment types (e.g., Wire). Only the <code>Payment_Type</code> and related banking details need to be adjusted based on the payment method.</p>\n<hr />\n<h3 id=\"🔄-flow-overview\">🔄 Flow Overview</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Create Beneficiary → Add Payment Instrument → Upload File → Initiate Payment → Track Transaction\n\n</code></pre><hr />\n<h3 id=\"📊-data-flow-ids-across-steps\">📊 Data Flow (IDs Across Steps)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>BeneficiaryID → PaymentInstrumentID → FileId → TransactionID\n\n</code></pre><hr />\n<h3 id=\"✅-prerequisites\">✅ Prerequisites</h3>\n<ul>\n<li><p>A valid <code>SessionToken</code></p>\n</li>\n<li><p>Include the following header in all requests:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">X-AUTH-TOKEN: \n\n</code></pre>\n<ul>\n<li>(Optional but required for some payments) Upload a supporting document using the <strong>Files API</strong> to obtain a <code>FileId</code></li>\n</ul>\n<hr />\n<h3 id=\"create-beneficiary\">Create Beneficiary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function createBeneficiary() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/beneficiary/create`,\n      [\n        { \"field\": \"Beneficiary_Type\", \"value\": \"individual\" },\n        { \"field\": \"Beneficiary_Email\", \"value\": \"john.doe@example.com\" },\n        { \"field\": \"Beneficiary_Address\", \"value\": \"123 Main Street\" },\n        { \"field\": \"Beneficiary_City\", \"value\": \"New York\" },\n        { \"field\": \"Beneficiary_Postal_Code\", \"value\": \"10001\" },\n        { \"field\": \"Beneficiary_Country\", \"value\": \"US\" },\n        { \"field\": \"Beneficiary_State\", \"value\": \"NY\" },\n        { \"field\": \"Beneficiary_First_Name\", \"value\": \"John\" },\n        { \"field\": \"Beneficiary_Last_Name\", \"value\": \"Doe\" },\n        { \"field\": \"Beneficiary_DOB\", \"value\": \"1990-01-01\" }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(response.data);\n  } catch (error) {\n    console.error(\n      \"Error:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateBeneficiary();\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseData\": {\n    \"BeneficiaryId\": \"4650983997967871956\",\n    \"message\": \"Please allow 10 minutes for the beneficiary to turn Active. Once the beneficiary status is Active, You can create payment instruments.\"\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"add-payment-instrument-ach-bank-account\">Add Payment Instrument (ACH Bank Account)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function createACHInstrument() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/payment-instrument/create`,\n      [\n        {\n          \"field\": \"Payment_Type\",\n          \"value\": \"BUS_USD_Account.Business_ACH\"\n        },\n        {\n          \"field\": \"BeneficiaryId\",\n          \"value\": \"-6360317090952990964\"\n        },\n        {\n          \"field\": \"Nickname\",\n          \"value\": \"Domestic-ACH-Instrument\"\n        },\n        {\n          \"field\": \"Account_Number\",\n          \"value\": \"8787627\"\n        },\n        {\n          \"field\": \"Routing_Number\",\n          \"value\": \"026009593\"\n        },\n        {\n          \"field\": \"Account_Type\",\n          \"value\": \"Saving\"\n        }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Payment Instrument Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating payment instrument:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateACHInstrument();\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  ResponseCode: 200,\n  ResponseMessage: 'Success',\n  ResponseData: { PaymentInstrumentID: '-6477410681264623860' }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"upload-supporting-document\">Upload Supporting Document</h3>\n<p>Use this endpoint to upload supporting documents (e.g., invoices) that can be attached to payments or other workflows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst fs = require('fs');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Update file path accordingly\nconst filePath = \"/Users/rishav/Documents/Sample/Form_6_English.pdf\";\nasync function uploadFile() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/files/upload?customField=Payment_Invoice&amp;fileName=Ducket.pdf`,\n      fs.createReadStream(filePath),\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/pdf\"\n        },\n        maxBodyLength: Infinity\n      }\n    );\n    console.log(\"File Uploaded:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error uploading file:\",\n      error.response?.data || error.message\n    );\n  }\n}\nuploadFile();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note\">📌 Note</h3>\n<p>Refer to the <strong>Files Upload</strong> endpoint in the API Reference section to better understand:</p>\n<ul>\n<li><p>Supported file types</p>\n</li>\n<li><p>Required query parameters (<code>customField</code>, <code>fileName</code>)</p>\n</li>\n<li><p>How uploaded files are used across flows (e.g., attaching documents to payments)</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"ID\": \"-4004934485838221358\"\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"initiate-payment\">Initiate Payment</h3>\n<p>💳 Create Bank Payment (Node.js)</p>\n<p>Use this endpoint to initiate a <strong>bank payment (e.g., ACH/Wire)</strong> using a previously created payment instrument.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\nasync function createBankPayment() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/payment/bank`,\n      {\n        \"BeneficiaryPaymentInstrumentID\": \"-6391842288344584436\",\n        \"Purpose\": \"Loan_Payments\",\n        \"Currency\": \"USD\",\n        \"Amount\": \"40\",\n        \"CryptoBuySellActivity\": \"No\",\n        \"Intermediary_ABA\": \"026001591\",\n        \"SupportingDocument\": \"-4004934485838221358\",\n        \"Description\": \"lorem ipsum\"\n      },\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Payment Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating payment:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateBankPayment();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note-1\">📌 Note</h3>\n<ul>\n<li><p><code>BeneficiaryPaymentInstrumentID</code> is obtained from the <strong>Create Payment Instrument</strong> step</p>\n</li>\n<li><p><code>SupportingDocument</code> is the <strong>File ID</strong> received after uploading a file via the <strong>Files Upload</strong> endpoint</p>\n</li>\n<li><p>Ensure all required compliance fields (e.g., Purpose, Description) are provided correctly</p>\n</li>\n</ul>\n<h3 id=\"response\"><strong>Response:</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000007938\"\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"track-transaction-status\">Track Transaction Status</h3>\n<p>Use this endpoint to fetch detailed information about a specific transaction using the <code>TransactionNumber</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Replace with your actual Transaction Number\nconst transactionNumber = \"FV000462103\";\nasync function getTransactionDetails() {\n  try {\n    const response = await axios.get(\n      `${baseUrl}/transactions/details/${transactionNumber}`,\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`\n        }\n      }\n    );\n    console.log(\"Transaction Details:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error fetching transaction details:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetTransactionDetails();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note-2\">📌 Note</h3>\n<ul>\n<li><p><code>TransactionNumber</code> is obtained from:</p>\n<ul>\n<li><p>Payment creation response</p>\n</li>\n<li><p>Transaction listing APIs</p>\n</li>\n<li><p>Webhook payloads</p>\n</li>\n</ul>\n</li>\n<li><p>Use this endpoint to:</p>\n<ul>\n<li><p>Track transaction status</p>\n</li>\n<li><p>View complete transaction details</p>\n</li>\n<li><p>Reconcile payments in your system</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"⚠️-common-errors\">⚠️ Common Errors</h3>\n<ul>\n<li><p>Missing or invalid <code>SessionToken</code></p>\n</li>\n<li><p>Incorrect <code>BeneficiaryID</code> or <code>PaymentInstrumentID</code></p>\n</li>\n<li><p>Missing <code>SupportingDocument</code> when required</p>\n</li>\n<li><p>Invalid bank details (routing/account number)</p>\n</li>\n<li><p>Expired session without refresh handling</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>BeneficiaryID → PaymentInstrumentID → FileId → TransactionID\n\n</code></pre><p>This flow can be reused for all fiat payment types by adjusting the <code>Payment_Type</code> and required banking details.</p>\n","_postman_id":"bb2a9e1f-b37f-4295-8dad-c493125ee447"},{"name":"Send Stablecoin Payments","item":[],"id":"bedef6db-ec69-4471-8d9f-6d8f386a12c9","description":"<p>This use case demonstrates how to send stablecoin payments (e.g., <strong>PYUSD, USDC</strong>) from your FV account to a blockchain address.</p>\n<p>Stablecoin payments allow you to transfer digital dollars over blockchain networks while funding the transaction from your USD account.</p>\n<hr />\n<h3 id=\"💡-how-stablecoin-payments-work\">💡 How Stablecoin Payments Work</h3>\n<ul>\n<li><p>You initiate a payment in <strong>USD</strong></p>\n</li>\n<li><p>The equivalent value is converted and sent as a <strong>stablecoin (PYUSD / USDC)</strong></p>\n</li>\n<li><p>Funds are primarily deducted from your <strong>Account USD balance</strong></p>\n</li>\n</ul>\n<h4 id=\"🧠-smart-sweep-optional-feature\">🧠 Smart Sweep (Optional Feature)</h4>\n<p>If enabled on your account:</p>\n<ul>\n<li><p>If the USD account balance is insufficient</p>\n</li>\n<li><p>The remaining amount is automatically deducted from your <strong>Custody USD balance</strong></p>\n</li>\n</ul>\n<blockquote>\n<p>⚠️ This feature is enabled on-demand for specific merchants </p>\n</blockquote>\n<hr />\n<h3 id=\"🔄-flow-overview\">🔄 Flow Overview</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;stbl-flow&quot;\">Create Beneficiary → Add Wallet Address (Payment Instrument) → Initiate Payment → Track Transaction\n\n</code></pre>\n<hr />\n<h3 id=\"📊-data-flow\">📊 Data Flow</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;stbl-data-flow&quot;\">BeneficiaryID → PaymentInstrumentID → TransactionID\n\n</code></pre>\n<hr />\n<h3 id=\"✅-prerequisites\">✅ Prerequisites</h3>\n<ul>\n<li><p>A valid <code>SessionToken</code></p>\n</li>\n<li><p>Include the following header in all requests:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">X-AUTH-TOKEN: \n\n</code></pre>\n<ul>\n<li><p>Beneficiary must be created</p>\n</li>\n<li><p>Wallet address must be added as a payment instrument</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"create-beneficiary\">Create Beneficiary</h3>\n<p>(Same as bank payments)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function createBeneficiary() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/beneficiary/create`,\n      [\n        { \"field\": \"Beneficiary_Type\", \"value\": \"individual\" },\n        { \"field\": \"Beneficiary_Email\", \"value\": \"john.doe@example.com\" },\n        { \"field\": \"Beneficiary_Address\", \"value\": \"123 Main Street\" },\n        { \"field\": \"Beneficiary_City\", \"value\": \"New York\" },\n        { \"field\": \"Beneficiary_Postal_Code\", \"value\": \"10001\" },\n        { \"field\": \"Beneficiary_Country\", \"value\": \"US\" },\n        { \"field\": \"Beneficiary_State\", \"value\": \"NY\" },\n        { \"field\": \"Beneficiary_First_Name\", \"value\": \"John\" },\n        { \"field\": \"Beneficiary_Last_Name\", \"value\": \"Doe\" },\n        { \"field\": \"Beneficiary_DOB\", \"value\": \"1990-01-01\" }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(response.data);\n  } catch (error) {\n    console.error(\n      \"Error:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateBeneficiary();\n\n</code></pre>\n<hr />\n<h3 id=\"add-wallet-address-payment-instrument\">Add Wallet Address (Payment Instrument)</h3>\n<p>🪙 Create Stablecoin Payment Instrument (Node.js)</p>\n<p>Use this endpoint to create a <strong>crypto wallet payment instrument</strong> (e.g., USDC) for a beneficiary.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\nasync function createStablecoinInstrument() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/payment-instruments/create`,\n      [\n        { \"field\": \"Payment_Type\", \"value\": \"CRYPTO_WALLET.USDC\" },\n        { \"field\": \"BeneficiaryId\", \"value\": \"ben_12345\" },\n        { \"field\": \"Nickname\", \"value\": \"Mark USDC Wallet\" },\n        { \"field\": \"Address\", \"value\": \"0xA1b2C3d4E5f6...\" },\n        { \"field\": \"Blockchain\", \"value\": \"ETH\" },\n        { \"field\": \"Asset\", \"value\": \"USDC\" }\n      ],\n      {\n        headers: {\n          \"X-AUTH-TOKEN\": sessionToken,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Stablecoin Instrument Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating stablecoin payment instrument:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateStablecoinInstrument();\n\n</code></pre>\n<hr />\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  ResponseCode: 200,\n  ResponseMessage: 'Success',\n  ResponseData: { PaymentInstrumentID: '-6477410681264623860' }\n}\n\n</code></pre>\n<p>📌 Note</p>\n<ul>\n<li><p><code>BeneficiaryId</code> must be created beforehand using the <strong>Create Beneficiary</strong> API</p>\n</li>\n<li><p><code>Address</code> should be a valid blockchain wallet address</p>\n</li>\n<li><p>Ensure <code>Blockchain</code> and <code>Asset</code> match (e.g., ETH + USDC)</p>\n</li>\n<li><p>The response will include a <strong>PaymentInstrumentID</strong> used for initiating stablecoin payments</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"initiate-stablecoin-payment\">Initiate Stablecoin Payment</h3>\n<p>🪙 Create Stablecoin Payment (Node.js)</p>\n<p>Use this endpoint to initiate a <strong>stablecoin withdrawal</strong> (e.g., USDC, PYUSD) to a beneficiary’s crypto wallet.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\nasync function createStablecoinPayment() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/stablecoin/withdraw`,\n      {\n        \"BeneficiaryPaymentInstrumentID\": \"pi_crypto_123\",\n        \"Amount\": \"100\",\n        \"Description\": \"Stablecoin payout\"\n      },\n      {\n        headers: {\n          \"X-AUTH-TOKEN\": sessionToken,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Stablecoin Payment Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating stablecoin payment:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateStablecoinPayment();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note\">📌 Note</h3>\n<ul>\n<li><p><code>BeneficiaryPaymentInstrumentID</code> must refer to a <strong>crypto wallet instrument</strong></p>\n</li>\n<li><p>The equivalent USD amount will be deducted from your account</p>\n</li>\n<li><p>If <strong>Smart Sweep</strong> is enabled, insufficient balance may be covered from custody funds</p>\n</li>\n<li><p>Use this endpoint to send stablecoins like <strong>USDC</strong> or <strong>PYUSD</strong> to external wallets</p>\n</li>\n</ul>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000007976\"\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"track-transaction-status\">Track Transaction Status</h3>\n<p>📊 Track Transaction Status</p>\n<p>Once a payment is created, you can track its progress using the <strong>Transaction Details API</strong>. This helps you monitor both <strong>compliance status</strong> and <strong>execution status</strong> of the transaction.</p>\n<hr />\n<h3 id=\"🔍-fetch-transaction-details-nodejs\">🔍 Fetch Transaction Details (Node.js)</h3>\n<p>Use the <code>TransactionNumber</code> received during payment creation to fetch the latest status:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Replace with your Transaction Number\nconst transactionNumber = \"FV000694629\";\nasync function getTransactionDetails() {\n  try {\n    const response = await axios.get(\n      `${baseUrl}/transactions/details/${transactionNumber}`,\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`\n        }\n      }\n    );\n    console.log(\"Transaction Details:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error fetching transaction details:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetTransactionDetails();\n\n</code></pre>\n<hr />\n<h3 id=\"📦-example-response\">📦 Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 200,\n  \"ResponseMessage\": \"Success\",\n  \"ResponseData\": {\n    \"TransactionNumber\": \"FV000694629\",\n    \"CreatedAt\": \"2026-04-10T05:45:45.516-04:00\",\n    \"Amount\": \"0.01\",\n    \"From\": \"Rishav LLC\",\n    \"To\": \"USDC Wallet\",\n    \"Currency\": \"USD\",\n    \"Description\": \"lorem ipsum\",\n    \"Type\": {\n      \"value\": \"BUS_USD_Account.Stablecoin_Withdraw\",\n      \"label\": \"Stablecoin Payment\"\n    },\n    \"AdditionalData\": [\n      {\n        \"label\": \"Destination Currency\",\n        \"value\": \"USDC\"\n      },\n      {\n        \"label\": \"Beneficiary First Name\",\n        \"value\": \"Rishav\"\n      },\n      {\n        \"label\": \"Beneficiary Last Name\",\n        \"value\": \"Upadhayay\"\n      },\n      {\n        \"label\": \"Originator Blockchain\",\n        \"value\": \"ETH\"\n      },\n      {\n        \"label\": \"Gateway\",\n        \"value\": \"Circle\"\n      }\n    ],\n    \"Status\": \"PENDING_AUTHORIZATION\"\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🧠-understanding-transaction-status\">🧠 Understanding Transaction Status</h3>\n<p>The <code>Status</code> field represents the current stage of the transaction:</p>\n<ul>\n<li><p><code>PENDING_AUTHORIZATION</code> → Awaiting compliance approval</p>\n</li>\n<li><p><code>AUTHORIZED</code> → Approved and ready for processing</p>\n</li>\n<li><p><code>IN_PROCESS</code> → Payment is being processed</p>\n</li>\n<li><p><code>COMPLETED</code> → Funds successfully transferred</p>\n</li>\n<li><p><code>FAILED</code> → Payment failed</p>\n</li>\n<li><p><code>CANCELLED</code> → Cancelled by compliance</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔗-additional-details\">🔗 Additional Details</h3>\n<p>The response also includes an <code>AdditionalData</code> array with extended information such as:</p>\n<ul>\n<li><p>Destination currency (e.g., USDC)</p>\n</li>\n<li><p>Blockchain network</p>\n</li>\n<li><p>Beneficiary details</p>\n</li>\n<li><p>Processing gateway (e.g., Circle)</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;track-summary&quot;\">Create Payment → Get TransactionNumber → Track via API / Webhooks\n\n</code></pre>\n<h5 id=\"this-ensures-complete-visibility-into-the-transaction-lifecycle\">This ensures complete visibility into the transaction lifecycle.</h5>\n<p>🪙 Stablecoin Deposits</p>\n<p>FV Bank also supports receiving stablecoins.</p>\n<ul>\n<li><p>Each merchant is assigned a <strong>unique blockchain deposit address</strong></p>\n</li>\n<li><p>Funds sent to this address are credited to the merchant account</p>\n</li>\n</ul>\n<h4 id=\"how-it-works\">How it works:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;stbl-deposit-flow&quot;\">External Wallet → FV Deposit Address → Custody Balance → Account Balance (if applicable)\n\n</code></pre>\n<ul>\n<li><p>Deposit addresses are provided by FV Bank</p>\n</li>\n<li><p>Supported assets include <strong>USDC, PYUSD</strong></p>\n</li>\n<li><p>Deposits are processed after blockchain confirmations</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚠️-common-errors\">⚠️ Common Errors</h3>\n<ul>\n<li><p>Invalid wallet address</p>\n</li>\n<li><p>Unsupported network</p>\n</li>\n<li><p>Insufficient USD balance</p>\n</li>\n<li><p>Smart sweep not enabled (if relying on custody funds)</p>\n</li>\n<li><p>Expired SessionToken</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary-1\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;stbl-summary&quot;\">BeneficiaryID → PaymentInstrumentID → TransactionID\n\n</code></pre>\n<p>Stablecoin payments enable fast, global transfers using blockchain rails while maintaining USD-based accounting.</p>\n","_postman_id":"bedef6db-ec69-4471-8d9f-6d8f386a12c9"},{"name":"Create Virtual Account","item":[],"id":"205f2136-21c9-4cca-9b8b-ca9ab1c4f896","description":"<p>Virtual Accounts are <strong>unique account numbers assigned to each beneficiary</strong>, enabling you to receive deposits and automatically map incoming funds to the correct beneficiary.</p>\n<p>These accounts are created <strong>along with the beneficiary</strong> by including additional fields in the beneficiary creation request.</p>\n<hr />\n<h3 id=\"🧠-why-virtual-accounts\">🧠 Why Virtual Accounts?</h3>\n<ul>\n<li><p>Assign <strong>dedicated deposit instructions per beneficiary</strong></p>\n</li>\n<li><p>Automatically <strong>reconcile incoming deposits</strong></p>\n</li>\n<li><p>Identify deposit source using <strong>Virtual Account identifier</strong></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚙️-how-it-works\">⚙️ How It Works</h3>\n<ol>\n<li><p>Create a beneficiary with virtual account details</p>\n</li>\n<li><p>FVBank generates a <strong>virtual account number + deposit instructions</strong></p>\n</li>\n<li><p>Share deposit instructions from get transaction details endpoint with your beneficiary</p>\n</li>\n<li><p>When funds are received:</p>\n<ul>\n<li><p>A transaction is created</p>\n</li>\n<li><p>A <strong>Virtual Account identifier</strong> is included</p>\n</li>\n</ul>\n</li>\n<li><p>Use this identifier to <strong>map deposits to the correct beneficiary</strong></p>\n</li>\n</ol>\n<hr />\n<h3 id=\"🏗️-create-virtual-account-nodejs\">🏗️ Create Virtual Account (Node.js)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\nasync function createVirtualAccount() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/beneficiary/create`,\n      [\n        { \"field\": \"Beneficiary_Type\", \"value\": \"individual\" },\n        { \"field\": \"Beneficiary_Email\", \"value\": \"john@fvbank.us\" },\n        { \"field\": \"Beneficiary_Address\", \"value\": \"1437 VIP Road\" },\n        { \"field\": \"Beneficiary_City\", \"value\": \"Agra\" },\n        { \"field\": \"Beneficiary_Postal_Code\", \"value\": \"282001\" },\n        { \"field\": \"Beneficiary_Country\", \"value\": \"IN\" },\n        { \"field\": \"Beneficiary_State\", \"value\": \"UP\" },\n        { \"field\": \"Beneficiary_First_Name\", \"value\": \"Jon\" },\n        { \"field\": \"Beneficiary_Last_Name\", \"value\": \"Doe\" },\n        {\n          \"field\": \"Beneficiary_Document\",\n          \"value\": [\n            { \"field\": \"ID_Type\", \"value\": \"Driving_License\" },\n            { \"field\": \"ID_Number\", \"value\": \"X12345679\" },\n            { \"field\": \"ID_Expiration_Date\", \"value\": \"2027-12-01\" },\n            { \"field\": \"Front_Document\", \"value\": \"{{FileId}}\" },\n            { \"field\": \"Back_Document\", \"value\": \"-8911389245460361003\" }\n          ]\n        }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Virtual Account Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating virtual account:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateVirtualAccount();\n\n</code></pre>\n<hr />\n<h3 id=\"🔍-get-beneficiary-details-deposit-instructions\">🔍 Get Beneficiary Details (Deposit Instructions)</h3>\n<p>After creating the virtual account, fetch beneficiary details to retrieve <strong>deposit instructions</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Replace with actual Beneficiary ID\nconst beneficiaryId = \"your_beneficiary_id\";\nasync function getBeneficiaryDetails() {\n  try {\n    const response = await axios.get(\n      `${baseUrl}/beneficiary/details/${beneficiaryId}`,\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`\n        }\n      }\n    );\n    console.log(\"Beneficiary Details:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error fetching beneficiary details:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetBeneficiaryDetails();\n\n</code></pre>\n<hr />\n<h3 id=\"📦-example-response-virtual-account--deposit-instructions\">📦 Example Response (Virtual Account &amp; Deposit Instructions)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 200,\n  \"ResponseMessage\": \"Success\",\n  \"ResponseData\": {\n    \"CreatedBy\": \"Zomato - Rishav\",\n    \"CreatedOn\": \"2025-07-10T09:05:16.431-04:00\",\n    \"BeneficiaryId\": \"-1654055480350822652\",\n    \"Available_Payments_Type\": [],\n    \"Beneficiary_Type\": \"Individual\",\n    \"Beneficiary_Name\": \"Varun 1 Upadhayay 2\",\n    \"Beneficiary_First_Name\": \"Varun 1\",\n    \"Beneficiary_Last_Name\": \"Upadhayay 2\",\n    \"Beneficiary_Email\": \"varun+1@mailinator.com\",\n    \"Beneficiary_Status\": \"Active\",\n    \"ID_Document\": \"Beneficiary ID Document (-1649551880723452156)\",\n    \"Beneficiary_Country\": \"India\",\n    \"Beneficiary_State\": \"UP\",\n    \"Beneficiary_City\": \"Agra\",\n    \"Beneficiary_Address\": \"1437 VIP Road\",\n    \"Beneficiary_Postal_Code\": \"282001\",\n    \"Virtual_Account\": {\n      \"Account_Number\": \"780008000074\",\n      \"Deposit_Instructions\": [\n        {\n          \"Title\": \"Domestic Wire Deposit\",\n          \"Type\": \"Domestic Wire\",\n          \"Note\": \"Domestic Wire - Please use these instructions for any wires within the United States. You will need to provide this information to the bank that is sending the wire to your FV Bank Account. You must provide the Reference for your FV Bank account in the Reference/Memo Field.\",\n          \"Receiving Bank Name\": \"Cornerstone Capital Bank\",\n          \"Receiving Bank Address\": \"1177 West Loop South, Suite 700, Houston, TX 77027\",\n          \"Routing Number/ABA\": \"111326275\",\n          \"Beneficiary Name\": \"FV Bank International Inc.\",\n          \"Beneficiary Address\": \"270 Muñoz Rivera Avenue, Suite 1120, San Juan, PR 00918\",\n          \"Beneficiary Account Number\": \"100107427\",\n          \"Reference/Memo #\": \"780008000074\",\n          \"Gateway\": \"cornerstone\"\n        },\n        {\n          \"Title\": \"USDC Stablecoin Deposit\",\n          \"Type\": \"USDC Stablecoin\",\n          \"Note\": \"Deposits must be transferred on the ETH Blockchain. Any asset other than USDC sent to this address will not reach FV Bank and will be lost. Lost transfers may not be recoverable.\",\n          \"Deposit Address\": \"Deposit Address request was successful. Your Deposit Address will be available shortly!\",\n          \"Currency\": \"USDC\",\n          \"Stablecoin Network\": \"ETH\"\n        }\n      ]\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"📥-deposit-flow-with-virtual-accounts\">📥 Deposit Flow with Virtual Accounts</h3>\n<ul>\n<li><p>Share <strong>deposit instructions</strong> with your beneficiary</p>\n</li>\n<li><p>Beneficiary sends funds to assigned virtual account</p>\n</li>\n<li><p>FVBank creates a <strong>deposit transaction</strong></p>\n</li>\n<li><p>Transaction webhook includes:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"label\": \"Virtual Account\",\n  \"value\": \"780008000006\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🔔-webhook-mapping\">🔔 Webhook Mapping</h3>\n<p>In <strong>deposit webhooks</strong>, the <code>Virtual Account</code> field is included in <code>AdditionalData</code>.</p>\n<p>This allows you to:</p>\n<ul>\n<li><p>Identify which beneficiary the deposit belongs to</p>\n</li>\n<li><p>Automatically reconcile funds</p>\n</li>\n<li><p>Avoid manual mapping</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚡-best-practices\">⚡ Best Practices</h3>\n<ul>\n<li><p>Always store <strong>Beneficiary ID ↔ Virtual Account mapping</strong></p>\n</li>\n<li><p>Use <strong>webhooks</strong> for real-time deposit tracking</p>\n</li>\n<li><p>Validate documents (<code>Front_Document</code>, <code>Back_Document</code>) before submission, refer to upload file endpoint to understand how to upload file for these fields</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;virtual-account-summary&quot;\">Create Beneficiary (with VA) → Get Deposit Instructions → Share with User → Receive Deposit → Map via Virtual Account\n\n</code></pre>\n<p>Virtual Accounts enable <strong>automated, scalable, and error-free deposit reconciliation</strong>.</p>\n","_postman_id":"205f2136-21c9-4cca-9b8b-ca9ab1c4f896"},{"name":"Send Cross Border Payments","item":[],"id":"8d6f8ccb-7479-4405-890c-3dffac74e9df","description":"<p>This use case explains how to send international bank payments from your FV account using supported cross-border rails.<br />The flow covers beneficiary setup, payment instrument creation, payment initiation, and transaction tracking.</p>\n<p>In this use case, we will perform a cross-border SEPA payment, but other payment types can be explored in the same way.</p>\n<hr />\n<h3 id=\"🔄-flow-overview\">🔄 Flow Overview</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Create Beneficiary → Add Payment Instrument → Upload File → Initiate Payment → Track Transaction\n\n</code></pre><hr />\n<h3 id=\"📊-data-flow-ids-across-steps\">📊 Data Flow (IDs Across Steps)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>BeneficiaryID → PaymentInstrumentID → FileId → TransactionID\n\n</code></pre><hr />\n<h3 id=\"✅-prerequisites\">✅ Prerequisites</h3>\n<ul>\n<li><p>A valid <code>SessionToken</code></p>\n</li>\n<li><p>Include the following header in all requests:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">X-AUTH-TOKEN: \n\n</code></pre>\n<ul>\n<li>(Optional but required for some payments) Upload a supporting document using the <strong>Files API</strong> to obtain a <code>FileId</code></li>\n</ul>\n<hr />\n<h3 id=\"create-beneficiary\">Create Beneficiary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function getFieldsForSEPA() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/beneficiary/create`,\n      [\n        { \"field\": \"Beneficiary_Type\", \"value\": \"individual\" },\n        { \"field\": \"Beneficiary_Email\", \"value\": \"john.doe@example.com\" },\n        { \"field\": \"Beneficiary_Address\", \"value\": \"123 Main Street\" },\n        { \"field\": \"Beneficiary_City\", \"value\": \"New York\" },\n        { \"field\": \"Beneficiary_Postal_Code\", \"value\": \"10001\" },\n        { \"field\": \"Beneficiary_Country\", \"value\": \"US\" },\n        { \"field\": \"Beneficiary_State\", \"value\": \"NY\" },\n        { \"field\": \"Beneficiary_First_Name\", \"value\": \"John\" },\n        { \"field\": \"Beneficiary_Last_Name\", \"value\": \"Doe\" },\n        { \"field\": \"Beneficiary_DOB\", \"value\": \"1990-01-01\" }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(response.data);\n  } catch (error) {\n    console.error(\n      \"Error:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateBeneficiary();\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseData\": {\n    \"BeneficiaryId\": \"4650983997967871956\",\n    \"message\": \"Please allow 10 minutes for the beneficiary to turn Active. Once the beneficiary status is Active, You can create payment instruments.\"\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"get-fields-for-transfer-type-cross-border-sepa\">Get Fields for Transfer Type (Cross Border SEPA)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function getRequiredInstrumentFields() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/payment-instrument/get-required-fields`,\n      {\n        paymentType: \"BUS_USD_Account.payment_cross_border_sepa\"\n      },\n      {\n        headers: {\n          Authorization: `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Required Fields:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error fetching required fields:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetRequiredInstrumentFields();\n\n</code></pre>\n<p><strong>Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"EUR SEPA Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_sepa\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    }\n                ]\n            }\n        ]\n    }\n}\n\n</code></pre>\n<p>Note: List of countries will have lot more values we have shortended it for documentation purpose in the example above</p>\n<h3 id=\"add-payment-instrument-cross-border-sepa\">Add Payment Instrument (Cross Border SEPA)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">async function createSEPAPaymentInstrument() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/payment-instrument/create`,\n      [\n        {\n          \"field\": \"Payment_Type\",\n          \"value\": \"Cross_Border_Payments.SEPA\"\n        },\n        {\n          \"field\": \"BeneficiaryId\",\n          \"value\": \"-6360317090952990964\"\n        },\n        {\n          \"field\": \"Nickname\",\n          \"value\": \"CrossBorder-SEPA-Instrument\"\n        },\n        {\n          \"field\": \"Iban\",\n          \"value\": \"DE89370400440532013000\"\n        },\n        {\n          \"field\": \"Swift_Bic\",\n          \"value\": \"COBADEFFXXX\"\n        },\n        {\n          \"field\": \"Beneficiary_Bank\",\n          \"value\": \"SEPA_PAYER_ID\"\n        }\n      ],\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"SEPA Payment Instrument Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating SEPA payment instrument:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateSEPAPaymentInstrument();\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  ResponseCode: 200,\n  ResponseMessage: 'Success',\n  ResponseData: { PaymentInstrumentID: '-6477410681264623860' }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"upload-supporting-document\">Upload Supporting Document</h3>\n<p>Use this endpoint to upload supporting documents (e.g., invoices) that can be attached to payments or other workflows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst fs = require('fs');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Update file path accordingly\nconst filePath = \"/Users/rishav/Documents/Sample/Form_6_English.pdf\";\nasync function uploadFile() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/files/upload?customField=Payment_Invoice&amp;fileName=Ducket.pdf`,\n      fs.createReadStream(filePath),\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/pdf\"\n        },\n        maxBodyLength: Infinity\n      }\n    );\n    console.log(\"File Uploaded:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error uploading file:\",\n      error.response?.data || error.message\n    );\n  }\n}\nuploadFile();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note\">📌 Note</h3>\n<p>Refer to the <strong>Files Upload</strong> endpoint in the API Reference section to better understand:</p>\n<ul>\n<li><p>Supported file types</p>\n</li>\n<li><p>Required query parameters (<code>customField</code>, <code>fileName</code>)</p>\n</li>\n<li><p>How uploaded files are used across flows (e.g., attaching documents to payments)</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"ID\": \"-4004934485838221358\"\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"initiate-payment\">Initiate Payment</h3>\n<p>💳 Create Cross Border Payment (Node.js)</p>\n<p>Use this endpoint to initiate a <strong>bank payment (e.g., ACH/Wire)</strong> using a previously created payment instrument.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\nasync function createCrossBorderPayment() {\n  try {\n    const response = await axios.post(\n      `${baseUrl}/cross-border/send-payment`,\n      {\n        \"BeneficiaryPaymentInstrumentID\": \"-6391842288344584436\", // SEPA payment instrument ID\n        \"Purpose\": \"Loan_Payments\",\n        \"Currency\": \"EUR\",\n        \"Amount\": \"40\",\n        \"CryptoBuySellActivity\": \"No\",\n        \"SupportingDocument\": \"-4004934485838221358\",\n        \"Description\": \"Cross-border SEPA payment\"\n      },\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`,\n          \"Content-Type\": \"application/json\"\n        }\n      }\n    );\n    console.log(\"Cross Border Payment Created:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error creating cross border payment:\",\n      error.response?.data || error.message\n    );\n  }\n}\ncreateCrossBorderPayment();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note-1\">📌 Note</h3>\n<ul>\n<li><p>use /cross-border/preview endpoint to get the expected FX rate for the transaction before making the transaction</p>\n</li>\n<li><p><code>SupportingDocument</code> is the <strong>File ID</strong> received after uploading a file via the <strong>Files Upload</strong> endpoint</p>\n</li>\n<li><p>Ensure all required compliance fields (e.g., Purpose, Description) are provided correctly</p>\n</li>\n</ul>\n<p><strong>Below is the list of all the payment types we have av</strong>ailable for cross border payments</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Rail</th>\n<th>Payment_Type</th>\n<th>Currency</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SEPA</td>\n<td><code>BUS_USD_Account.payment_cross_border_sepa</code></td>\n<td>EUR</td>\n</tr>\n<tr>\n<td>EUR Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_eur_wire_payments</code></td>\n<td>EUR</td>\n</tr>\n<tr>\n<td>Faster Payments</td>\n<td><code>BUS_USD_Account.payment_cross_border_faster_payments</code></td>\n<td>GBP</td>\n</tr>\n<tr>\n<td>GBP Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_gbp_wire_payments</code></td>\n<td>GBP</td>\n</tr>\n<tr>\n<td>CAD Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_cad_domestic_payments</code></td>\n<td>CAD</td>\n</tr>\n<tr>\n<td>CAD Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_cad_wire_payments</code></td>\n<td>CAD</td>\n</tr>\n<tr>\n<td>HKD Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_hkd_domestic_payments</code></td>\n<td>HKD</td>\n</tr>\n<tr>\n<td>HKD Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_hkd_wire_payments</code></td>\n<td>HKD</td>\n</tr>\n<tr>\n<td>JPY Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_jpy_domestic_payments</code></td>\n<td>JPY</td>\n</tr>\n<tr>\n<td>JPY Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_jpy_wire_payments</code></td>\n<td>JPY</td>\n</tr>\n<tr>\n<td>CLABE</td>\n<td><code>BUS_USD_Account.payment_cross_border_clabe</code></td>\n<td>MXN</td>\n</tr>\n<tr>\n<td>MXN Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_mxn_wire_payments</code></td>\n<td>MXN</td>\n</tr>\n<tr>\n<td>SGD Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_sgd_domestic_payments</code></td>\n<td>SGD</td>\n</tr>\n<tr>\n<td>SGD Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_sgd_wire_payments</code></td>\n<td>SGD</td>\n</tr>\n<tr>\n<td>ZAR Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_zar_domestic_payments</code></td>\n<td>ZAR</td>\n</tr>\n<tr>\n<td>ZAR Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_zar_wire_payments</code></td>\n<td>ZAR</td>\n</tr>\n<tr>\n<td>BRL Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_brl_domestic_payments</code></td>\n<td>BRL</td>\n</tr>\n<tr>\n<td>AED Domestic</td>\n<td><code>BUS_USD_Account.payment_cross_border_aed_domestic_payments</code></td>\n<td>AED</td>\n</tr>\n<tr>\n<td>AED Wire</td>\n<td><code>BUS_USD_Account.payment_cross_border_aed_wire_payments</code></td>\n<td>AED</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\"><strong>Response:</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000007938\"\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"track-transaction-status\">Track Transaction Status</h3>\n<p>Use this endpoint to fetch detailed information about a specific transaction using the <code>TransactionNumber</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const axios = require('axios');\nconst baseUrl = \"https://sandbox.merchant.fvbank.us/v2\";\nconst sessionToken = \"your_session_token_here\";\n// 🔁 Replace with your actual Transaction Number\nconst transactionNumber = \"FV000462103\";\nasync function getTransactionDetails() {\n  try {\n    const response = await axios.get(\n      `${baseUrl}/transactions/details/${transactionNumber}`,\n      {\n        headers: {\n          \"Authorization\": `Bearer ${sessionToken}`\n        }\n      }\n    );\n    console.log(\"Transaction Details:\", response.data);\n  } catch (error) {\n    console.error(\n      \"Error fetching transaction details:\",\n      error.response?.data || error.message\n    );\n  }\n}\ngetTransactionDetails();\n\n</code></pre>\n<hr />\n<h3 id=\"📌-note-2\">📌 Note</h3>\n<ul>\n<li><p><code>TransactionNumber</code> is obtained from:</p>\n<ul>\n<li><p>Payment creation response</p>\n</li>\n<li><p>Transaction listing APIs</p>\n</li>\n<li><p>Webhook payloads</p>\n</li>\n</ul>\n</li>\n<li><p>Use this endpoint to:</p>\n<ul>\n<li><p>Track transaction status</p>\n</li>\n<li><p>View complete transaction details</p>\n</li>\n<li><p>Reconcile payments in your system</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"⚠️-common-errors\">⚠️ Common Errors</h3>\n<ul>\n<li><p>Missing or invalid <code>SessionToken</code></p>\n</li>\n<li><p>Incorrect <code>BeneficiaryID</code> or <code>PaymentInstrumentID</code></p>\n</li>\n<li><p>Missing <code>SupportingDocument</code> when required</p>\n</li>\n<li><p>Invalid bank details (routing/account number)</p>\n</li>\n<li><p>Expired session without refresh handling</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>BeneficiaryID → PaymentInstrumentID → FileId → TransactionID\n\n</code></pre><p>This flow can be reused for all cross border payment types by adjusting the <code>Payment_Type</code> and required banking details.</p>\n","_postman_id":"8d6f8ccb-7479-4405-890c-3dffac74e9df"}],"id":"eab74589-6714-4c01-b363-8db0616e06b7","description":"<p>The following use cases demonstrate common workflows that can be implemented using FV Merchant APIs. Each use case is designed to guide you through a complete, real-world flow rather than isolated API calls.</p>\n<hr />\n<h3 id=\"🔄-common-outbound-payment-flow\">🔄 Common Outbound Payment Flow</h3>\n<p>All outbound transactions—whether bank payments or stablecoin transfers—follow a consistent pattern:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;uc-flow&quot;\">Create Beneficiary → Add Payment Instrument → Initiate Payment → Track Transaction\n\n</code></pre>\n<hr />\n<h3 id=\"🧱-core-concepts\">🧱 Core Concepts</h3>\n<p><strong>1. Beneficiary</strong><br />A beneficiary represents the recipient of funds. This can be an individual or a business entity.</p>\n<p><strong>2. Payment Instrument</strong><br />A payment instrument defines how funds are delivered to the beneficiary. Examples include:</p>\n<ul>\n<li><p>Bank accounts (ACH, Wire, SEPA)</p>\n</li>\n<li><p>Blockchain wallet addresses (USDC, PYUSD)</p>\n</li>\n</ul>\n<p><strong>3. Payment</strong><br />A payment is created using a selected payment instrument to transfer funds to the beneficiary.</p>\n<hr />\n<h3 id=\"🔗-relationship-between-entities\">🔗 Relationship Between Entities</h3>\n<ul>\n<li><p>A <strong>single beneficiary</strong> can have <strong>multiple payment instruments</strong></p>\n</li>\n<li><p>Each payment instrument must be <strong>unique and non-identical</strong></p>\n</li>\n<li><p>Payment instruments can be of <strong>different types</strong> (e.g., ACH + Wire + Crypto wallet)</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;uc-relationship&quot;\">Beneficiary\n   ├── Bank Account (ACH)\n   ├── Bank Account (Wire)\n   └── Crypto Wallet (USDC)\n\n</code></pre>\n<hr />\n<h3 id=\"📌-how-to-use-these-use-cases\">📌 How to Use These Use Cases</h3>\n<p>Each use case in this section builds on the flow above and demonstrates:</p>\n<ul>\n<li><p>Required API calls</p>\n</li>\n<li><p>Example request/response payloads</p>\n</li>\n<li><p>How IDs flow between steps</p>\n</li>\n<li><p>Best practices for handling payments</p>\n</li>\n</ul>\n<p>Start with the use case most relevant to your integration (e.g., Send Bank Payments or Send Stablecoin Payments) and follow the steps sequentially.</p>\n<hr />\n<p>These use cases are designed to help you integrate faster by focusing on <strong>end-to-end workflows</strong> rather than individual endpoints.</p>\n","_postman_id":"eab74589-6714-4c01-b363-8db0616e06b7"},{"name":"API Reference","item":[{"name":"Auth","item":[{"name":"Get Session Token","event":[{"listen":"prerequest","script":{"id":"398b1175-f681-4a6e-b5e1-edf25dd5d919","exec":["// JWT generation script adapted from","// https://gist.github.com/corbanb/db03150abbe899285d6a86cc480f674d","","var jwtSecret = pm.environment.get('clientSecret') || ''","","// Set headers for JWT","var header = {","\t'typ': 'JWT',","\t'alg': 'HS256'","};","","// Prepare timestamp in seconds","var currentTimestamp = Math.floor(Date.now() / 1000)","","var data = {","    'ClientID': pm.environment.get('clientID'),","\t'iat': currentTimestamp,","\t'exp': currentTimestamp + 30, // expiry time is 30 seconds from time of creation","}","","function base64url(source) {","    // Encode in classical base64","    encodedSource = CryptoJS.enc.Base64.stringify(source)","    ","    // Remove padding equal characters","    encodedSource = encodedSource.replace(/=+$/, '')","    ","    // Replace characters according to base64url specifications","    encodedSource = encodedSource.replace(/\\+/g, '-')","    encodedSource = encodedSource.replace(/\\//g, '_')","    ","    return encodedSource","}","","// encode header","var stringifiedHeader = CryptoJS.enc.Utf8.parse(JSON.stringify(header))","var encodedHeader = base64url(stringifiedHeader)","","// encode data","var stringifiedData = CryptoJS.enc.Utf8.parse(JSON.stringify(data))","var encodedData = base64url(stringifiedData)","","// build token","var token = `${encodedHeader}.${encodedData}`","","// sign token","var signature = CryptoJS.HmacSHA256(token, jwtSecret)","signature = base64url(signature)","var signedToken = `${token}.${signature}`","","pm.environment.set('authToken', signedToken)","console.log('Signed and encoded JWT', signedToken)"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"dafe3b44-3733-4132-91a1-d39e347e7329","exec":["var jsonData = pm.response.json();","pm.environment.set(\"sessionToken\", jsonData.ResponseData.SessionToken);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3006c58f-9e35-4b14-b798-f5fa3f7bcc1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-AUTH-TOKEN","value":"{{authToken}}","type":"text"}],"url":"{{baseURL}}/v2/auth","description":"<p>To get the SessionToken that is to be used in all other endpoints. This endpoint requires a header named X-<code>AUTH-TOKEN</code> which expected to be a JWT token of the below payload signed with the client secret that is shared by the FV Bank Team..</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"ClientID\": \"YOUR_CLIENT_ID\",\n   \"iat\": CURRENT_TIMESTAMP,\n   \"exp\":CURRENT_TIMESTAMP + 30 \\* 60 \\* 60 \\* 24\n}\n\n</code></pre>\n<p>Note: <code>HS256</code> is the algorithm to be used while generating JWT.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>{  <br />\"SessionToken\": string  <br />}</td>\n<td></td>\n<td>Session token generate for the client to call secured endpoints</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>SessionToken</code> returned from the API is valid for 15 minutes.</p>\n<p>The <code>x-refresh-token</code> header will be present in the other endpoints before 2 minutes of the current token expiry, the same can be replaced with existing one.</p>\n<p>Note that calls to the secured endpoints requires the same IP address that was used to obtain the session token.</p>\n","urlObject":{"path":["v2","auth"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"24de6ada-620a-4bde-9dd3-bb60fd6c6f0b","name":"Get Session Token","originalRequest":{"method":"GET","header":[{"key":"X-AUTH-TOKEN","value":"{{authToken}}","type":"text"}],"url":"{{baseURL}}/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"278"},{"key":"etag","value":"W/\"116-wryw7XWU88NWapM89RrHdfosafE\""},{"key":"x-execution-time","value":"143"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Thu, 25 Nov 2021 10:41:22 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"SessionToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJDbGllbnRJRCI6ImRlY2EzNWZkLTMzMGItNDA2My04ZmRhLWZjMGQxYjYxMDcyYyIsImlhdCI6MTYzNzgzNjg4MiwiZXhwIjoxNjM3ODM3NzgyfQ.9c97iKdf-IAdvVz7O_QvjB-zL7e4OQAEukBCD3qXIa8\"\n    }\n}"},{"id":"77c8c2c4-578f-4f3e-a51f-250f9830ca14","name":"Get Session Token - Incorrect Token","originalRequest":{"method":"GET","header":[{"key":"X-AUTH-TOKEN","value":"fsdfdsfsdf.asfsadfasdfsda.asfasdfasdfsdf","type":"text"}],"url":"{{baseURL}}/auth"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"106"},{"key":"etag","value":"W/\"6a-C4LASMCPnCyFHADljvpEV/Iba3c\""},{"key":"x-execution-time","value":"14"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Wed, 01 Dec 2021 05:50:30 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 400,\n    \"ResponseMessage\": \"BadRequest\",\n    \"ResponseErrors\": [\n        \"headers[auth-token]: Bad Request.\"\n    ]\n}"}],"_postman_id":"3006c58f-9e35-4b14-b798-f5fa3f7bcc1a"}],"id":"d9fff990-ae80-4639-b412-1b9b6079f2d2","_postman_id":"d9fff990-ae80-4639-b412-1b9b6079f2d2","description":""},{"name":"Accounts","item":[{"name":"Get Account Balance","id":"bdbdf2e9-57f3-455b-bfa8-d04bfd495ff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/account/balance","description":"<p>To get the account balance of the client. While the API returns all three types of balances (balance, reserved, available) for the merchant partner, it is advised to check against the availableBalance before performing any transactions.</p>\n<p>Reserved balance - Several transactions needs authorizations from the bank / the payer. Amounts of such transactions get added in the reserved balance.</p>\n<p>Available balance - Balance that can considered before performing any transactions.</p>\n<p>Balance - Total balance on the account which is the sum of reserved, and available balances.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>Object contains all the types of balance of the client account</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"295beb75-3a05-4efe-a644-4440b4e79791","id":"295beb75-3a05-4efe-a644-4440b4e79791","name":"Accounts","type":"folder"}},"urlObject":{"path":["v2","account","balance"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"03fcf250-03af-4811-9a20-d84d7df9d8db","name":"Get Account Balance","originalRequest":{"method":"GET","header":[],"url":"{{baseURL}}/v2/account/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"53a-bBe+r4e+iFx4J6OssMG2H5gM8tE\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"638sl5kybict"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"075e043a8862df7b795474a600798e1f"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"193"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Mon, 11 Dec 2023 10:26:46 GMT"},{"key":"X-Served-By","value":"cache-del21747-DEL"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1702290406.053466,VS0,VE491"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": [\n        {\n            \"Balance\": \"12386.00\",\n            \"ReservedAmount\": \"30.00\",\n            \"AvailableBalance\": \"12356.00\",\n            \"Currency\": \"USD\",\n            \"Name\": \"Account (USD)\",\n            \"Id\": \"417971020\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"ADA\",\n            \"Name\": \"Custody (ADA)\",\n            \"Id\": \"540460491\"\n        },\n        {\n            \"Balance\": \"0.00000000\",\n            \"ReservedAmount\": \"0.00000000\",\n            \"AvailableBalance\": \"0.00000000\",\n            \"Currency\": \"BNB\",\n            \"Name\": \"Custody (BNB)\",\n            \"Id\": \"292851323\"\n        },\n        {\n            \"Balance\": \"0.00000000\",\n            \"ReservedAmount\": \"0.00000000\",\n            \"AvailableBalance\": \"0.00000000\",\n            \"Currency\": \"BTC\",\n            \"Name\": \"Custody (BTC)\",\n            \"Id\": \"338529142\"\n        },\n        {\n            \"Balance\": \"0.000000000\",\n            \"ReservedAmount\": \"0.000000000\",\n            \"AvailableBalance\": \"0.000000000\",\n            \"Currency\": \"ETH\",\n            \"Name\": \"Custody (ETH)\",\n            \"Id\": \"476310157\"\n        },\n        {\n            \"Balance\": \"0.000000000\",\n            \"ReservedAmount\": \"0.000000000\",\n            \"AvailableBalance\": \"0.000000000\",\n            \"Currency\": \"MATIC\",\n            \"Name\": \"Custody (MATIC)\",\n            \"Id\": \"988028458\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"USDC\",\n            \"Name\": \"Custody (USDC)\",\n            \"Id\": \"078346313\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"USDT\",\n            \"Name\": \"Custody (USDT)\",\n            \"Id\": \"623196743\"\n        },\n        {\n            \"Balance\": \"0.00\",\n            \"ReservedAmount\": \"0.00\",\n            \"AvailableBalance\": \"0.00\",\n            \"Currency\": \"USD\",\n            \"Name\": \"Custody Account (USD)\",\n            \"Id\": \"140404433\"\n        }\n    ]\n}"},{"id":"e922f6b3-ac9e-449a-8a8a-eac16952b798","name":"Get Account Balance","originalRequest":{"method":"GET","header":[],"url":"{{baseURL}}/v2/account/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"53a-bBe+r4e+iFx4J6OssMG2H5gM8tE\""},{"key":"x-execution-time","value":"992"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Mon, 11 Dec 2023 05:47:01 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": [\n        {\n            \"Balance\": \"12386.00\",\n            \"ReservedAmount\": \"30.00\",\n            \"AvailableBalance\": \"12356.00\",\n            \"Currency\": \"USD\",\n            \"Name\": \"Account (USD)\",\n            \"Id\": \"417971020\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"ADA\",\n            \"Name\": \"Custody (ADA)\",\n            \"Id\": \"540460491\"\n        },\n        {\n            \"Balance\": \"0.00000000\",\n            \"ReservedAmount\": \"0.00000000\",\n            \"AvailableBalance\": \"0.00000000\",\n            \"Currency\": \"BNB\",\n            \"Name\": \"Custody (BNB)\",\n            \"Id\": \"292851323\"\n        },\n        {\n            \"Balance\": \"0.00000000\",\n            \"ReservedAmount\": \"0.00000000\",\n            \"AvailableBalance\": \"0.00000000\",\n            \"Currency\": \"BTC\",\n            \"Name\": \"Custody (BTC)\",\n            \"Id\": \"338529142\"\n        },\n        {\n            \"Balance\": \"0.000000000\",\n            \"ReservedAmount\": \"0.000000000\",\n            \"AvailableBalance\": \"0.000000000\",\n            \"Currency\": \"ETH\",\n            \"Name\": \"Custody (ETH)\",\n            \"Id\": \"476310157\"\n        },\n        {\n            \"Balance\": \"0.000000000\",\n            \"ReservedAmount\": \"0.000000000\",\n            \"AvailableBalance\": \"0.000000000\",\n            \"Currency\": \"MATIC\",\n            \"Name\": \"Custody (MATIC)\",\n            \"Id\": \"988028458\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"USDC\",\n            \"Name\": \"Custody (USDC)\",\n            \"Id\": \"078346313\"\n        },\n        {\n            \"Balance\": \"0.000000\",\n            \"ReservedAmount\": \"0.000000\",\n            \"AvailableBalance\": \"0.000000\",\n            \"Currency\": \"USDT\",\n            \"Name\": \"Custody (USDT)\",\n            \"Id\": \"623196743\"\n        },\n        {\n            \"Balance\": \"0.00\",\n            \"ReservedAmount\": \"0.00\",\n            \"AvailableBalance\": \"0.00\",\n            \"Currency\": \"USD\",\n            \"Name\": \"Custody Account (USD)\",\n            \"Id\": \"140404433\"\n        }\n    ]\n}"}],"_postman_id":"bdbdf2e9-57f3-455b-bfa8-d04bfd495ff3"},{"name":"Get Deposit Instructions","id":"37cfe1be-a5ff-47a0-ba06-fcba5a7a36bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/account/deposit/instructions","description":"<p>To get the deposit instructions for the client</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>Instructions for making a deposit to FVBank</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"295beb75-3a05-4efe-a644-4440b4e79791","id":"295beb75-3a05-4efe-a644-4440b4e79791","name":"Accounts","type":"folder"}},"urlObject":{"path":["v2","account","deposit","instructions"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"6ac40a98-cebe-4221-b7b3-a672fff7d36a","name":"Get Deposit Instructions","originalRequest":{"method":"GET","header":[],"url":"{{baseURL}}/v2/account/deposit/instructions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"50c-/9pzdIxfQqaDvb+w8Kw8HYqswDU\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"erwd5iv76nno"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"9b3b81b202ecc84daecdc1e3c691dee9"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"1655"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Fri, 16 Jun 2023 14:46:01 GMT"},{"key":"X-Served-By","value":"cache-bom4747-BOM"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1686926759.106411,VS0,VE1989"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": [\n        {\n            \"Type\": \"Domestic Wire/ACH\",\n            \"BankName\": \"Summit National Bank\",\n            \"Address\": \"133 Main Street Hulett, WY\",\n            \"RoutingNumber/ABA\": \"102307591\",\n            \"AccountNumber\": \"1122334455\",\n            \"DepositReference\": \"Your Reference Number. (Optional)\",\n            \"Currency\": \"USD\",\n            \"Gateway\": \"summit\"\n        },\n        {\n            \"Type\": \"International Wire\",\n            \"BankName\": \"Summit National Bank\",\n            \"Address\": \"133 Main Street Hulett, WY\",\n            \"BIC\": \"SUATUS52 (Non-connected)\",\n            \"AccountNumber\": \"1122334455\",\n            \"DepositReference\": \"Your Reference Number. (Optional)\",\n            \"Currency\": \"USD\",\n            \"Note\": \"For International originated wires, please note, your sending bank must have a US correspondent bank and be able to process through FedWire. SWIFT payments are not supported with these details\",\n            \"Gateway\": \"summit\"\n        },\n        {\n            \"Type\": \"Wire/ACH\",\n            \"RoutingNumber/ABA\": \"021001208\",\n            \"BankName\": \"Bank of the Lakes\",\n            \"Address\": \"123 Cherry Street, Duluth, MN, US, 55812\",\n            \"AccountNumber\": \"395260899046\",\n            \"DepositReference\": \"Your Reference Number. (Optional)\",\n            \"Currency\": \"USD\",\n            \"Gateway\": \"fortress\"\n        },\n        {\n            \"Type\": \"International Wire\",\n            \"BIC\": \"LAKEUS41\",\n            \"BankName\": \"Bank of the Lakes\",\n            \"Address\": \"123 Cherry Street, Duluth, MN, US, 55812\",\n            \"AccountNumber\": \"395260899046\",\n            \"DepositReference\": \"Your Reference Number. (Optional)\",\n            \"Currency\": \"USD\",\n            \"Gateway\": \"fortress\"\n        }\n    ]\n}"}],"_postman_id":"37cfe1be-a5ff-47a0-ba06-fcba5a7a36bc"}],"id":"295beb75-3a05-4efe-a644-4440b4e79791","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ad01dab5-ac15-4c90-b0fd-1d7b837eed3a","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"62c1fef5-e070-4235-8199-6e5220a0bf61","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"295beb75-3a05-4efe-a644-4440b4e79791","description":""},{"name":"Beneficiary","item":[{"name":"Get Required Fields (Create Beneficiary)","id":"25d63fcc-1e35-46af-b980-712e1aa1d015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"business\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields","description":"<p>This endpoint provides the list of fields that are needed in the Create Beneficiary endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryType</td>\n<td>string</td>\n<td>true</td>\n<td>Individual, Business</td>\n<td>Type of beneficiary to be created</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>--</td>\n<td>List of all the fields required to create the beneficiary</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","get-required-fields"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"5bf2cc76-372d-4a73-9cb5-29437af3ba4e","name":"Get Required Fields (Create Beneficiary) - Individual","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-encoding","value":"gzip"},{"key":"content-security-policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"235b-RcHTosXPL4m/8nMDRnkKd/J2iRk\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"aes6ai8hntj4"},{"key":"origin-agent-cluster","value":"?1"},{"key":"permissions-policy","value":"geolocation=(self), microphone=(), camera=()"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"344669a26ed2c7b69d8fb125057e7c79"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"1829"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Fri, 22 May 2026 12:53:19 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100020-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1779454398.695054,VS0,VE1871"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400, h3=\":443\"; ma=2592000, h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"4b3e86c1-44cf-4629-9807-299febe146f7"},{"key":"via","value":"1.1 google, 1.1 google"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"Beneficiary_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Individual\",\n                        \"value\": \"individual\"\n                    },\n                    {\n                        \"label\": \"Business\",\n                        \"value\": \"business\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Email\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_First_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Middle_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Last_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_DOB\",\n                \"Required\": false,\n                \"Type\": \"Date\"\n            },\n            {\n                \"Name\": \"Beneficiary_Landline_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Mobile_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Relationship\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Self (i.e. the sender, himself)\",\n                        \"value\": \"SELF\"\n                    },\n                    {\n                        \"label\": \"Niece\",\n                        \"value\": \"NIECE\"\n                    },\n                    {\n                        \"label\": \"Nephew\",\n                        \"value\": \"NEPHEW\"\n                    },\n                    {\n                        \"label\": \"Sister-in-law\",\n                        \"value\": \"SISTER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Sister\",\n                        \"value\": \"SISTER\"\n                    },\n                    {\n                        \"label\": \"Son\",\n                        \"value\": \"SON\"\n                    },\n                    {\n                        \"label\": \"Uncle\",\n                        \"value\": \"UNCLE\"\n                    },\n                    {\n                        \"label\": \"Wife\",\n                        \"value\": \"WIFE\"\n                    },\n                    {\n                        \"label\": \"Aunt\",\n                        \"value\": \"AUNT\"\n                    },\n                    {\n                        \"label\": \"Brother\",\n                        \"value\": \"BROTHER\"\n                    },\n                    {\n                        \"label\": \"Brother-in-law\",\n                        \"value\": \"BROTHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Cousin\",\n                        \"value\": \"COUSIN\"\n                    },\n                    {\n                        \"label\": \"Daughter\",\n                        \"value\": \"DAUGHTER\"\n                    },\n                    {\n                        \"label\": \"Father\",\n                        \"value\": \"FATHER\"\n                    },\n                    {\n                        \"label\": \"Father-in-law\",\n                        \"value\": \"FATHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Friend\",\n                        \"value\": \"FRIEND\"\n                    },\n                    {\n                        \"label\": \"Grandfather\",\n                        \"value\": \"GRAND_FATHER\"\n                    },\n                    {\n                        \"label\": \"Grandmother\",\n                        \"value\": \"GRAND_MOTHER\"\n                    },\n                    {\n                        \"label\": \"Husband\",\n                        \"value\": \"HUSBAND\"\n                    },\n                    {\n                        \"label\": \"Mother\",\n                        \"value\": \"MOTHER\"\n                    },\n                    {\n                        \"label\": \"Mother-in-law\",\n                        \"value\": \"MOTHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Affiliate\",\n                        \"value\": \"AFFILIATE\"\n                    },\n                    {\n                        \"label\": \"Client\",\n                        \"value\": \"CLIENT\"\n                    },\n                    {\n                        \"label\": \"Contractor\",\n                        \"value\": \"CONTRACTOR\"\n                    },\n                    {\n                        \"label\": \"Employee\",\n                        \"value\": \"EMPLOYEE\"\n                    },\n                    {\n                        \"label\": \"Vendor\",\n                        \"value\": \"VENDOR\"\n                    },\n                    {\n                        \"label\": \"Others not listed\",\n                        \"value\": \"OTHER\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Relationship_Other\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Address\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_City\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_State\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Isle of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Postal_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_ID_Document\",\n                \"Required\": false,\n                \"Type\": \"Object\",\n                \"Fields\": [\n                    {\n                        \"Name\": \"ID_Type\",\n                        \"Required\": true,\n                        \"Type\": \"SingleSelection\",\n                        \"PossibleValues\": [\n                            {\n                                \"label\": \"Passport\",\n                                \"value\": \"passport\"\n                            },\n                            {\n                                \"label\": \"License\",\n                                \"value\": \"Driving_License\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Name\": \"ID_Number\",\n                        \"Required\": true,\n                        \"Type\": \"Text\"\n                    },\n                    {\n                        \"Name\": \"ID_Expiration_Date\",\n                        \"Required\": true,\n                        \"Type\": \"Date\"\n                    },\n                    {\n                        \"Name\": \"Front_Document\",\n                        \"Required\": true,\n                        \"Type\": \"File\",\n                        \"MaxFiles\": 1,\n                        \"Accept\": [\n                            \"application/pdf\",\n                            \"image/gif\",\n                            \"image/jpeg\",\n                            \"image/pjpeg\",\n                            \"image/png\",\n                            \"image/x-png\",\n                            \"image/bmp\",\n                            \"image/webp\",\n                            \"image/svg+xml\"\n                        ]\n                    },\n                    {\n                        \"Name\": \"Back_Document\",\n                        \"Required\": true,\n                        \"Type\": \"File\",\n                        \"MaxFiles\": 1,\n                        \"Accept\": [\n                            \"application/pdf\",\n                            \"image/gif\",\n                            \"image/jpeg\",\n                            \"image/pjpeg\",\n                            \"image/png\",\n                            \"image/x-png\",\n                            \"image/bmp\",\n                            \"image/webp\",\n                            \"image/svg+xml\"\n                        ]\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"bbfc982d-bf56-486b-b028-186f491f8335","name":"Get Required Fields (Create Beneficiary) - business","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"business\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-encoding","value":"gzip"},{"key":"content-security-policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"3bd4-WNWJ+GQuFLe2Mz0vgmndPqUVwD0\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"aes6f2r4jdt6"},{"key":"origin-agent-cluster","value":"?1"},{"key":"permissions-policy","value":"geolocation=(self), microphone=(), camera=()"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"8742c54eaf4a772325845696d0cd4e9a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"1754"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Fri, 22 May 2026 12:54:06 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100020-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1779454445.185609,VS0,VE1797"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400, h3=\":443\"; ma=2592000, h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"fbab6c4b-a05f-4043-be91-fecb9cfa239b"},{"key":"via","value":"1.1 google, 1.1 google"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"Beneficiary_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Individual\",\n                        \"value\": \"individual\"\n                    },\n                    {\n                        \"label\": \"Business\",\n                        \"value\": \"business\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Email\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Company_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Landline_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Mobile_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Business_Formation_Date\",\n                \"Required\": false,\n                \"Type\": \"Date\"\n            },\n            {\n                \"Name\": \"Beneficiary_Business_Registration_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Business_Registration_Country\",\n                \"Required\": false,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Isle of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Relationship\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Self (i.e. the sender, himself)\",\n                        \"value\": \"SELF\"\n                    },\n                    {\n                        \"label\": \"Niece\",\n                        \"value\": \"NIECE\"\n                    },\n                    {\n                        \"label\": \"Nephew\",\n                        \"value\": \"NEPHEW\"\n                    },\n                    {\n                        \"label\": \"Sister-in-law\",\n                        \"value\": \"SISTER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Sister\",\n                        \"value\": \"SISTER\"\n                    },\n                    {\n                        \"label\": \"Son\",\n                        \"value\": \"SON\"\n                    },\n                    {\n                        \"label\": \"Uncle\",\n                        \"value\": \"UNCLE\"\n                    },\n                    {\n                        \"label\": \"Wife\",\n                        \"value\": \"WIFE\"\n                    },\n                    {\n                        \"label\": \"Aunt\",\n                        \"value\": \"AUNT\"\n                    },\n                    {\n                        \"label\": \"Brother\",\n                        \"value\": \"BROTHER\"\n                    },\n                    {\n                        \"label\": \"Brother-in-law\",\n                        \"value\": \"BROTHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Cousin\",\n                        \"value\": \"COUSIN\"\n                    },\n                    {\n                        \"label\": \"Daughter\",\n                        \"value\": \"DAUGHTER\"\n                    },\n                    {\n                        \"label\": \"Father\",\n                        \"value\": \"FATHER\"\n                    },\n                    {\n                        \"label\": \"Father-in-law\",\n                        \"value\": \"FATHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Friend\",\n                        \"value\": \"FRIEND\"\n                    },\n                    {\n                        \"label\": \"Grandfather\",\n                        \"value\": \"GRAND_FATHER\"\n                    },\n                    {\n                        \"label\": \"Grandmother\",\n                        \"value\": \"GRAND_MOTHER\"\n                    },\n                    {\n                        \"label\": \"Husband\",\n                        \"value\": \"HUSBAND\"\n                    },\n                    {\n                        \"label\": \"Mother\",\n                        \"value\": \"MOTHER\"\n                    },\n                    {\n                        \"label\": \"Mother-in-law\",\n                        \"value\": \"MOTHER_IN_LAW\"\n                    },\n                    {\n                        \"label\": \"Affiliate\",\n                        \"value\": \"AFFILIATE\"\n                    },\n                    {\n                        \"label\": \"Client\",\n                        \"value\": \"CLIENT\"\n                    },\n                    {\n                        \"label\": \"Contractor\",\n                        \"value\": \"CONTRACTOR\"\n                    },\n                    {\n                        \"label\": \"Employee\",\n                        \"value\": \"EMPLOYEE\"\n                    },\n                    {\n                        \"label\": \"Vendor\",\n                        \"value\": \"VENDOR\"\n                    },\n                    {\n                        \"label\": \"Others not listed\",\n                        \"value\": \"OTHER\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Relationship_Other\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Address\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_City\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_State\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Isle of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Postal_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Business_Document\",\n                \"Required\": false,\n                \"Type\": \"Object\",\n                \"Fields\": [\n                    {\n                        \"Name\": \"Document_Type\",\n                        \"Required\": true,\n                        \"Type\": \"SingleSelection\",\n                        \"PossibleValues\": [\n                            {\n                                \"label\": \"Articles of Incorporation\",\n                                \"value\": \"Articles_Of_Incorporation\"\n                            },\n                            {\n                                \"label\": \"Bylaws\",\n                                \"value\": \"Bylaws\"\n                            },\n                            {\n                                \"label\": \"Partnership Agreements\",\n                                \"value\": \"Partnership_Agreements\"\n                            },\n                            {\n                                \"label\": \"Operating Agreement\",\n                                \"value\": \"Operating_Agreement\"\n                            },\n                            {\n                                \"label\": \"Certificate of Incorporation\",\n                                \"value\": \"Certificate_Of_Incorporation\"\n                            },\n                            {\n                                \"label\": \"Business Registration Certificate\",\n                                \"value\": \"Business_Registration_Certificate\"\n                            },\n                            {\n                                \"label\": \"Proof of Business Registration and Legal Existence\",\n                                \"value\": \"Proof_Of_Business_Registration\"\n                            }\n                        ]\n                    },\n                    {\n                        \"Name\": \"Document_Number\",\n                        \"Required\": true,\n                        \"Type\": \"Text\"\n                    },\n                    {\n                        \"Name\": \"Document_Expiration_Date\",\n                        \"Required\": true,\n                        \"Type\": \"Date\"\n                    },\n                    {\n                        \"Name\": \"Document_File\",\n                        \"Required\": true,\n                        \"Type\": \"File\",\n                        \"MaxFiles\": 1,\n                        \"Accept\": [\n                            \"application/pdf\",\n                            \"image/gif\",\n                            \"image/jpeg\",\n                            \"image/pjpeg\",\n                            \"image/png\",\n                            \"image/x-png\",\n                            \"image/bmp\",\n                            \"image/webp\",\n                            \"image/svg+xml\"\n                        ]\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"25d63fcc-1e35-46af-b980-712e1aa1d015"},{"name":"Create Beneficiary","event":[{"listen":"test","script":{"id":"bc5ec706-348f-41b0-91c9-2501b536b28f","exec":["var jsonData = pm.response.json();","if(jsonData?.ResponseData?.BeneficiaryId){","    pm.environment.set(\"beneficiaryIDV2\", jsonData.ResponseData.BeneficiaryId);"," }"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bba7efdf-db84-4b75-82af-782eefcc18cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"individual\"\n    },\n    {\n        \"field\": \"Beneficiary_Email\",\n        \"value\": \"john6@mailinator.com\"\n    },\n    {\n        \"field\": \"Beneficiary_Address\",\n        \"value\": \"1437 VIP Road\"\n    },\n    {\n        \"field\": \"Beneficiary_City\",\n        \"value\": \"Agra\"\n    },\n    {\n        \"field\": \"Beneficiary_Postal_Code\",\n        \"value\": \"282001\"\n    },\n    {\n        \"field\": \"Beneficiary_Country\",\n        \"value\": \"IN\"\n    },\n    {\n        \"field\": \"Beneficiary_State\",\n        \"value\": \"UP\"\n    },\n    {\n        \"field\": \"Beneficiary_First_Name\",\n        \"value\": \"Varun\"\n    },\n    {\n        \"field\": \"Beneficiary_Last_Name\",\n        \"value\": \"Upadhayay\"\n    },\n    {\n        \"field\": \"Beneficiary_DOB\",\n        \"value\": \"2000-12-01\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/create","description":"<p>In-order to make transfer it is required to create the beneficiary first. This endpoint creates the beneficiary. Please refer to the examples for creatiing beneficiary with or without virtual account associated with it</p>\n<p>Note: A virtual account will be created if you include the 'Beneficiary_Document' field in the request body and the Virtual Account service is activated for your account.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><em>fields</em></td>\n<td>Refer to examples attached for request body</td>\n<td></td>\n<td>--</td>\n<td>fields must be from get required fields endpoint</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>{  <br />BeneficiaryID: string  <br />}</td>\n<td>--</td>\n<td>--</td>\n<td>Beneficiary ID of the beneficiary created</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","create"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"cc5bf810-c98e-4f08-87e8-89281cd5a602","name":"Create Individual Beneficiary","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"individual\"\n    },\n    {\n        \"field\": \"Beneficiary_Email\",\n        \"value\": \"rishav.u+ind@fvbank.us\"\n    },\n    {\n        \"field\": \"Beneficiary_Address\",\n        \"value\": \"1437 VIP Road\"\n    },\n    {\n        \"field\": \"Beneficiary_City\",\n        \"value\": \"Agra\"\n    },\n    {\n        \"field\": \"Beneficiary_Postal_Code\",\n        \"value\": \"282001\"\n    },\n    {\n        \"field\": \"Beneficiary_Country\",\n        \"value\": \"IN\"\n    },\n    {\n        \"field\": \"Beneficiary_State\",\n        \"value\": \"UP\"\n    },\n    {\n        \"field\": \"Beneficiary_First_Name\",\n        \"value\": \"Rishav\"\n    },\n    {\n        \"field\": \"Beneficiary_Last_Name\",\n        \"value\": \"Upadhayay\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 08:06:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"67-LlwxQNTsG9EkAwzuk+rXPs81wJ0\""},{"key":"x-execution-time","value":"22957"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"BeneficiaryId\": \"4934710774492212995\"\n    }\n}"},{"id":"43f7badb-fcaa-4374-9b91-17e0289d2965","name":"Create Business Beneficiary","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"business\"\n    },\n    {\n        \"field\": \"Beneficiary_Email\",\n        \"value\": \"rishav.u+bus@fvbank.us\"\n    },\n    {\n        \"field\": \"Beneficiary_Address\",\n        \"value\": \"1437 VIP Road\"\n    },\n    {\n        \"field\": \"Beneficiary_City\",\n        \"value\": \"Agra\"\n    },\n    {\n        \"field\": \"Beneficiary_Postal_Code\",\n        \"value\": \"282001\"\n    },\n    {\n        \"field\": \"Beneficiary_Country\",\n        \"value\": \"IN\"\n    },\n    {\n        \"field\": \"Beneficiary_State\",\n        \"value\": \"UP\"\n    },\n    {\n        \"field\": \"Beneficiary_Company_Name\",\n        \"value\": \"Rishav Inc\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 08:08:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"67-ZafkPSqbQtLI61B1kTSFmWLC/S0\""},{"key":"x-execution-time","value":"24137"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"BeneficiaryId\": \"4930207174864842499\"\n    }\n}"},{"id":"c7204e0f-30c3-40d8-af0b-ddc120f29006","name":"Create Business Beneficiary with Virtual Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"business\"\n    },\n    {\n        \"field\": \"Beneficiary_Email\",\n        \"value\": \"rishav.u+bus_va@fvbank.us\"\n    },\n    {\n        \"field\": \"Beneficiary_Address\",\n        \"value\": \"1437 VIP Road\"\n    },\n    {\n        \"field\": \"Beneficiary_City\",\n        \"value\": \"Agra\"\n    },\n    {\n        \"field\": \"Beneficiary_Postal_Code\",\n        \"value\": \"282001\"\n    },\n    {\n        \"field\": \"Beneficiary_Country\",\n        \"value\": \"IN\"\n    },\n    {\n        \"field\": \"Beneficiary_State\",\n        \"value\": \"UP\"\n    },\n    {\n        \"field\": \"Beneficiary_Company_Name\",\n        \"value\": \"Rishav LLC\"\n    },\n    {\n        \"field\": \"Beneficiary_Document\",\n        \"value\": [\n            {\n                \"field\": \"Document_Type\",\n                \"value\": \"Cretificate_Of_Incorporation\"\n            },\n            {\n                \"field\": \"Document_Number\",\n                \"value\": \"X12345679\"\n            },\n            {\n                \"field\": \"Document_Expiration_Date\",\n                \"value\": \"2027-12-01\"\n            },\n            {\n                \"field\": \"Document_File\",\n                \"value\": \"{{FileId}}\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 08:10:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"67-mNnZOhIC4cMwlOoYAZONpbWu6dI\""},{"key":"x-execution-time","value":"23537"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"BeneficiaryId\": \"4952725173001694979\"\n    }\n}"},{"id":"ca29bf7a-70ed-4dd5-b36f-71b018b88f6d","name":"Create Individual Beneficiary with Virtual Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"individual\"\n    },\n    {\n        \"field\": \"Beneficiary_Email\",\n        \"value\": \"john+ind_va@fvbank.us\"\n    },\n    {\n        \"field\": \"Beneficiary_Address\",\n        \"value\": \"1437 VIP Road\"\n    },\n    {\n        \"field\": \"Beneficiary_City\",\n        \"value\": \"Agra\"\n    },\n    {\n        \"field\": \"Beneficiary_Postal_Code\",\n        \"value\": \"282001\"\n    },\n    {\n        \"field\": \"Beneficiary_Country\",\n        \"value\": \"IN\"\n    },\n    {\n        \"field\": \"Beneficiary_State\",\n        \"value\": \"UP\"\n    },\n    {\n        \"field\": \"Beneficiary_First_Name\",\n        \"value\": \"Jon\"\n    },\n    {\n        \"field\": \"Beneficiary_Last_Name\",\n        \"value\": \"Doe\"\n    },\n    {\n        \"field\": \"Beneficiary_Document\",\n        \"value\": [\n            {\n                \"field\": \"ID_Type\",\n                \"value\": \"Driving_License\"\n            },\n            {\n                \"field\": \"ID_Number\",\n                \"value\": \"X12345679\"\n            },\n            {\n                \"field\": \"ID_Expiration_Date\",\n                \"value\": \"2027-12-01\"\n            },\n            {\n                \"field\": \"Front_Document\",\n                \"value\": \"{{FileId}}\"\n            },\n            {\n                \"field\": \"Back_Document\",\n                \"value\": \"-8911389245460361003\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 08:19:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"67-FTYI+mnYY+zuzhsgkZ0zmz2W8J4\""},{"key":"x-execution-time","value":"23151"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"BeneficiaryId\": \"4970739571511176963\"\n    }\n}"}],"_postman_id":"bba7efdf-db84-4b75-82af-782eefcc18cc"},{"name":"Get Required Fields (Add Virtual Account)","id":"52c50952-a6fa-438d-be2b-933ddec93c39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields-for-virtual-account","description":"<p>Virtual accounts are a solution that enables account holders to generate unique account numbers for receiving third-party deposits while maintaining centralized fund management. Each virtual account is linked to a specific beneficiary relationship—whether a vendor or customer—and comes with dedicated deposit instructions accessible through web portals, mobile applications, and APIs. When funds are deposited using a virtual account reference, the system automatically routes these payments to the parent account holder's primary USD bank account. This creates a seamless collection mechanism for multiple payment sources without the complexity of managing separate physical bank accounts.</p>\n<p>This endpoint takes in the beneficiary type and returns all the fields required to add a virtual account to an already existing beneficiary</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryType</td>\n<td>string</td>\n<td>true</td>\n<td>Individual, Business</td>\n<td>Type of beneficiary to be created</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>Beneficiary Document (For Business Beneficiary) Or  <br />Beneficiary Document (For Individual Beneficiary)</td>\n<td>--</td>\n<td>--</td>\n<td>List of all the fields required to add the virtual account</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Please refer to attached examples for the exact values</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","get-required-fields-for-virtual-account"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"9bd983df-4e12-40ca-a1a8-f8f343c3d419","name":"Get Required Fields [V2] - Individual","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"1b26-Nx26u7EH3plLXYVjZZ738F95ZIE\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"a336r8bibu7i"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"360ae44c07184b0cfd0d3dce9aef2c22;o=1"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"1156"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:13:18 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674997997.241653,VS0,VE1446"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"Beneficiary_Type\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Individual\",\n                        \"value\": \"individual\"\n                    },\n                    {\n                        \"label\": \"Business\",\n                        \"value\": \"business\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_First_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Last_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Email\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Payment_Type\",\n                \"Required\": false,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Payment - Domestic (ACH)\",\n                        \"value\": \"BUS_USD_Account.Business_ACH\"\n                    },\n                    {\n                        \"label\": \"Payment - Domestic Wire\",\n                        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n                    },\n                    {\n                        \"label\": \"Payment - International Wire\",\n                        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Address\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_City\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Postal_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Country\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"American Samoa\",\n                        \"value\": \"AS\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Anguilla\",\n                        \"value\": \"AI\"\n                    },\n                    {\n                        \"label\": \"Antarctica\",\n                        \"value\": \"AQ\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Aruba\",\n                        \"value\": \"AW\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Bolivia (Plurinational State of)\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Bosnia and Herzegovina\",\n                        \"value\": \"BA\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"British Indian Ocean Territory\",\n                        \"value\": \"IO\"\n                    },\n                    {\n                        \"label\": \"United States Minor Outlying Islands\",\n                        \"value\": \"UM\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Croatia\",\n                        \"value\": \"HR\"\n                    },\n                    {\n                        \"label\": \"CuraÃ§ao\",\n                        \"value\": \"CW\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Falkland Islands (Malvinas)\",\n                        \"value\": \"FK\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"French Guiana\",\n                        \"value\": \"GF\"\n                    },\n                    {\n                        \"label\": \"French Polynesia\",\n                        \"value\": \"PF\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Greenland\",\n                        \"value\": \"GL\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guadeloupe\",\n                        \"value\": \"GP\"\n                    },\n                    {\n                        \"label\": \"Guam\",\n                        \"value\": \"GU\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guernsey\",\n                        \"value\": \"GG\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Isle of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jersey\",\n                        \"value\": \"JE\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Lao People's Democratic Republic\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Macao\",\n                        \"value\": \"MO\"\n                    },\n                    {\n                        \"label\": \"Macedonia (the former Yugoslav Republic of)\",\n                        \"value\": \"MK\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Mali\",\n                        \"value\": \"ML\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Martinique\",\n                        \"value\": \"MQ\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Moldova (Republic of)\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Montenegro\",\n                        \"value\": \"ME\"\n                    },\n                    {\n                        \"label\": \"Montserrat\",\n                        \"value\": \"MS\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Puerto Rico\",\n                        \"value\": \"PR\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Republic of Kosovo\",\n                        \"value\": \"XK\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Russian Federation\",\n                        \"value\": \"RU\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Martin (French part)\",\n                        \"value\": \"MF\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Serbia\",\n                        \"value\": \"RS\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Slovenia\",\n                        \"value\": \"SI\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"South Sudan\",\n                        \"value\": \"SS\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania, United Republic of\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Turks and Caicos Islands\",\n                        \"value\": \"TC\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"728fb41f-2771-49ab-b1e6-89be47bedb1e","name":"Get Required Fields [V2] - Business","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryType\": \"business\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"1ae9-BxNl+QB1/j2qy+Kx/6uEtnKWXJs\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"a33680h00m10"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"ff5c147a4f24c99a600c504f7cdc7f5f"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"659"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:14:21 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674998061.574460,VS0,VE943"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"Beneficiary_Type\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Individual\",\n                        \"value\": \"individual\"\n                    },\n                    {\n                        \"label\": \"Business\",\n                        \"value\": \"business\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Company_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Email\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Payment_Type\",\n                \"Required\": false,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Payment - Domestic (ACH)\",\n                        \"value\": \"BUS_USD_Account.Business_ACH\"\n                    },\n                    {\n                        \"label\": \"Payment - Domestic Wire\",\n                        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n                    },\n                    {\n                        \"label\": \"Payment - International Wire\",\n                        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Address\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_City\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Postal_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Country\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"American Samoa\",\n                        \"value\": \"AS\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Anguilla\",\n                        \"value\": \"AI\"\n                    },\n                    {\n                        \"label\": \"Antarctica\",\n                        \"value\": \"AQ\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Aruba\",\n                        \"value\": \"AW\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Bolivia (Plurinational State of)\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Bosnia and Herzegovina\",\n                        \"value\": \"BA\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"British Indian Ocean Territory\",\n                        \"value\": \"IO\"\n                    },\n                    {\n                        \"label\": \"United States Minor Outlying Islands\",\n                        \"value\": \"UM\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Croatia\",\n                        \"value\": \"HR\"\n                    },\n                    {\n                        \"label\": \"CuraÃ§ao\",\n                        \"value\": \"CW\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Falkland Islands (Malvinas)\",\n                        \"value\": \"FK\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"French Guiana\",\n                        \"value\": \"GF\"\n                    },\n                    {\n                        \"label\": \"French Polynesia\",\n                        \"value\": \"PF\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Greenland\",\n                        \"value\": \"GL\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guadeloupe\",\n                        \"value\": \"GP\"\n                    },\n                    {\n                        \"label\": \"Guam\",\n                        \"value\": \"GU\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guernsey\",\n                        \"value\": \"GG\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Isle of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jersey\",\n                        \"value\": \"JE\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Lao People's Democratic Republic\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Macao\",\n                        \"value\": \"MO\"\n                    },\n                    {\n                        \"label\": \"Macedonia (the former Yugoslav Republic of)\",\n                        \"value\": \"MK\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Mali\",\n                        \"value\": \"ML\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Martinique\",\n                        \"value\": \"MQ\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Moldova (Republic of)\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Montenegro\",\n                        \"value\": \"ME\"\n                    },\n                    {\n                        \"label\": \"Montserrat\",\n                        \"value\": \"MS\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Puerto Rico\",\n                        \"value\": \"PR\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Republic of Kosovo\",\n                        \"value\": \"XK\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Russian Federation\",\n                        \"value\": \"RU\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Martin (French part)\",\n                        \"value\": \"MF\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Serbia\",\n                        \"value\": \"RS\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Slovenia\",\n                        \"value\": \"SI\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"South Sudan\",\n                        \"value\": \"SS\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania, United Republic of\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Turks and Caicos Islands\",\n                        \"value\": \"TC\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"52c50952-a6fa-438d-be2b-933ddec93c39"},{"name":"Add Virtual Account","event":[{"listen":"test","script":{"id":"bc5ec706-348f-41b0-91c9-2501b536b28f","exec":["var jsonData = pm.response.json();","if(jsonData?.ResponseData?.BeneficiaryId){","    pm.environment.set(\"beneficiaryIDV2\", jsonData.ResponseData.BeneficiaryId);"," }"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8773b7d4-b2cf-40fd-b56b-3ea903294f74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"individual\"\n    },\n    {\n        \"field\": \"Beneficiary_DOB\",\n        \"value\": \"2001-12-01\"\n    },\n    {\n        \"field\": \"Beneficiary_Document\",\n        \"value\": [\n            {\n                \"field\": \"ID_Type\",\n                \"value\": \"Driving_License\"\n            },\n            {\n                \"field\": \"ID_Number\",\n                \"value\": \"X12345679\"\n            },\n            {\n                \"field\": \"ID_Expiration_Date\",\n                \"value\": \"2027-12-01\"\n            },\n            {\n                \"field\": \"Front_Document\",\n                \"value\": \"{{FileId}}\"\n            },\n            {\n                \"field\": \"Back_Document\",\n                \"value\": \"7893575729674628909\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/add-virtual-account/{{beneficiaryIDV2}}","description":"<p>This endpoint add a virtual account to an existing beneficiary</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Beneficiary_Document</td>\n<td>Beneficiary Document (For Business Beneficiary)  <br />  <br />Or  <br />  <br />Beneficiary Document (For Individual Beneficiary)</td>\n<td>Yes</td>\n<td>--</td>\n<td>fields must be from get required fields endpoint</td>\n</tr>\n<tr>\n<td>Beneficiary_Type</td>\n<td>Type of Beneficiary</td>\n<td>Yes</td>\n<td>\"individual\" or \"business\"</td>\n<td>--</td>\n</tr>\n<tr>\n<td>Beneficiary_DOB</td>\n<td>Date of Birth of Beneficiary</td>\n<td>Yes (Only For Individual Beneficiary)</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ID_Type</td>\n<td>Individual document type for verification</td>\n<td>Yes (While Adding VAN to individual beneficiary)</td>\n<td>passport, Driving_License</td>\n<td></td>\n</tr>\n<tr>\n<td>Document_Type</td>\n<td>Business's document for verification</td>\n<td>Yes (While Adding VAN to business beneficiary)</td>\n<td>Proof_Of_Business_Registration, Certificate_Of_Incorporation,Business_Registration_Certificate,Articles_Of_Incorporationn,Bylaws,Partnership_Agreements,Operating_Agreement</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Please refer to the attached examples for exact values.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>Beneficiary Successfully Updated</td>\n<td>--</td>\n<td>--</td>\n<td>Beneficiary ID of the beneficiary created</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","add-virtual-account","{{beneficiaryIDV2}}"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"4fd5b874-0a10-485b-8fd8-6a9044863cf3","name":"Add Virtual Account to Business Beneficiary","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"business\"\n    },\n    {\n        \"field\": \"Beneficiary_Document\",\n        \"value\": [\n            {\n                \"field\": \"Document_Type\",\n                \"value\": \"Cretificate_Of_Incorporation\"\n            },\n            {\n                \"field\": \"Document_Number\",\n                \"value\": \"X12345679\"\n            },\n            {\n                \"field\": \"Document_Expiration_Date\",\n                \"value\": \"2027-12-01\"\n            },\n            {\n                \"field\": \"Document_File\",\n                \"value\": \"{{FileId}}\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/add-virtual-account/{{beneficiaryIDV2}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 08:29:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"98"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"62-NmsZdnLxNe+yhIU5grxSFWXlKvE\""},{"key":"x-execution-time","value":"9234"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary successfully updated\"\n}"},{"id":"7edae235-b0d6-4471-a9a3-5a0360aad10d","name":"Add Virtual Account to Individual Beneficiary","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Beneficiary_Type\",\n        \"value\": \"individual\"\n    },\n    {\n        \"field\": \"Beneficiary_DOB\",\n        \"value\": \"2001-12-01\"\n    },\n    {\n        \"field\": \"Beneficiary_Document\",\n        \"value\": [\n            {\n                \"field\": \"ID_Type\",\n                \"value\": \"Driving_License\"\n            },\n            {\n                \"field\": \"ID_Number\",\n                \"value\": \"X12345679\"\n            },\n            {\n                \"field\": \"ID_Expiration_Date\",\n                \"value\": \"2027-12-01\"\n            },\n            {\n                \"field\": \"Front_Document\",\n                \"value\": \"{{FileId}}\"\n            },\n            {\n                \"field\": \"Back_Document\",\n                \"value\": \"8798799254776098603\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/add-virtual-account/{{beneficiaryIDV2}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Wed, 28 May 2025 09:06:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"98"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"etag","value":"W/\"62-NmsZdnLxNe+yhIU5grxSFWXlKvE\""},{"key":"x-execution-time","value":"10447"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"cache-control","value":"private"},{"key":"X-Served-By","value":"local.api.fvbank.us"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary successfully updated\"\n}"}],"_postman_id":"8773b7d4-b2cf-40fd-b56b-3ea903294f74"},{"name":"List Beneficiaries","id":"63d669aa-a002-4707-a228-6d78f76cedc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/list","description":"<p>Returns all the active beneficiaries that are added with the merchant account.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PageNumber</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>When results are paginated, this field can be used to obtain the results for the required page number</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>Default PageSize is 40. This can be used to increase or decrease the number of records in a page</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>List of all the beneficiary of the client</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","list"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"13d26fca-395f-4da9-9c88-4a79784cf3a3","name":"List Beneficiaries","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/list"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-security-policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"156-1BLxdPVUTnNFsiDNzXqyhhjkEvs\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"i1ccbtd5mhf3"},{"key":"origin-agent-cluster","value":"?1"},{"key":"permissions-policy","value":"geolocation=(self), microphone=(), camera=()"},{"key":"referrer-policy","value":"no-referrer"},{"key":"server","value":"Google Frontend"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"aea772bc96b3fbf5d789a8b548ab5189"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"IN"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"528"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Wed, 22 Apr 2026 13:12:06 GMT"},{"key":"x-served-by","value":"cache-del-vibw2260027-DEL"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1776863526.927414,VS0,VE882"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"content-length","value":"342"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Data\": [\n            {\n                \"Id\": \"4650983997967871956\",\n                \"CreatedBy\": \"vikasniyamatkalra2 - vikas NIY Kalra\",\n                \"CreatedOn\": \"2026-04-17T08:52:14.747-04:00\",\n                \"Beneficiary_Name\": \"Rishav Upadhayay\",\n                \"Beneficiary_Type\": \"Individual\",\n                \"Beneficiary_Status\": \"Active\"\n            }\n        ],\n        \"PageNumber\": 1,\n        \"PageSize\": 10,\n        \"TotalCount\": 1\n    }\n}"}],"_postman_id":"63d669aa-a002-4707-a228-6d78f76cedc3"},{"name":"Get Beneficiary Details","id":"a00c2ceb-6d71-418a-9d6b-cda60c072708","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/beneficiary/{{beneficiaryIDV2}}","description":"<p>To get the details of a beneficiary.</p>\n<h2 id=\"path-variables\">Path Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryId</td>\n<td>string</td>\n<td>true</td>\n<td>--</td>\n<td>ID of the beneficiary</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>Details of the beneficiary</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","{{beneficiaryIDV2}}"],"host":["{{baseURL}}"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"842a56cd-0cec-4941-a8d1-3f551aed6f96","name":"Get Beneficiary Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/v2/beneficiary/{{beneficiaryIDV2}}","host":["{{baseURL}}"],"path":["v2","beneficiary","{{beneficiaryIDV2}}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"4c7-epRIvjTmf708R3+AKJR5hsO41Jc\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"a3366adjv9iq"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"13279ff40dfcb59f911dddb1fdf33420;o=1"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"1639"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:16:33 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674998191.499126,VS0,VE1946"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"CreatedBy\": \"Rishav_Business - Rishav\",\n        \"CreatedOn\": \"2022-12-19T07:30:20.802-04:00\",\n        \"BeneficiaryId\": \"9005964837635141461\",\n        \"Available_Payments_Type\": [\n            {\n                \"label\": \"Withdraw (ETH)\",\n                \"value\": \"BUS_ETH_Account.Payment_ETH\",\n                \"PaymentInstrumentIDs\": [\n                    \"228449163890044758\"\n                ]\n            },\n            {\n                \"label\": \"Payment - International Wire\",\n                \"value\": \"BUS_USD_Account.BUS_International_Transfer\",\n                \"PaymentInstrumentIDs\": [\n                    \"8141273709180006229\",\n                    \"8114252111415783253\"\n                ]\n            },\n            {\n                \"label\": \"Payment - Domestic (ACH)\",\n                \"value\": \"BUS_USD_Account.Business_ACH\",\n                \"PaymentInstrumentIDs\": [\n                    \"9136569226828885845\",\n                    \"9172598023847849813\",\n                    \"9181605223102590805\"\n                ]\n            },\n            {\n                \"label\": \"Payment - Domestic Wire\",\n                \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\",\n                \"PaymentInstrumentIDs\": [\n                    \"9145576426083626837\",\n                    \"9213130420494184277\",\n                    \"9199619621612072789\"\n                ]\n            }\n        ],\n        \"Beneficiary_Type\": \"Individual\",\n        \"Beneficiary_Name\": \"Johnie Rogan\",\n        \"Beneficiary_First_Name\": \"Johnie\",\n        \"Beneficiary_Last_Name\": \"Rogan\",\n        \"Beneficiary_Email\": \"test.three@yopmail.com\",\n        \"Beneficiary_Status\": \"Disabled: Disabled by Compliance\",\n        \"Beneficiary_Address\": \"Main Street, Second Main\",\n        \"Beneficiary_City\": \"Bengaluru\",\n        \"Beneficiary_Postal_Code\": \"560084\",\n        \"Beneficiary_Country\": \"United States of America\"\n    }\n}"},{"id":"090e786d-a1c9-4cd2-bb2d-95d2e9342356","name":"Get Beneficiary Details VAN","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/v2/beneficiary/{{beneficiaryIDV2}}","host":["{{baseURL}}"],"path":["v2","beneficiary","{{beneficiaryIDV2}}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-encoding","value":"gzip"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"74f-dP0x34/3vwjD57RsTAezAKKHHmw\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"vg2qz5f14mhq"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"4b83dbf89df1ef9cecd8c0b35453a654;o=1"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"1608"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Tue, 16 Sep 2025 11:09:11 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100093-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1758020950.644242,VS0,VE1673"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"alt-svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"ae401da8-b231-482e-aaa2-ebc74796f5c9"},{"key":"via","value":"1.1 google, 1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"CreatedBy\": \"Zomato - Rishav\",\n        \"CreatedOn\": \"2025-07-10T09:05:16.431-04:00\",\n        \"BeneficiaryId\": \"-1654055480350822652\",\n        \"Available_Payments_Type\": [],\n        \"Beneficiary_Type\": \"Individual\",\n        \"Beneficiary_Name\": \"Varun 1 Upadhayay 2\",\n        \"Beneficiary_First_Name\": \"Varun 1\",\n        \"Beneficiary_Last_Name\": \"Upadhayay 2\",\n        \"Beneficiary_Email\": \"varun+1@mailinator.com\",\n        \"Beneficiary_Status\": \"Active\",\n        \"undefined\": false,\n        \"ID_Document\": \"Beneficiary ID Document (-1649551880723452156)\",\n        \"Beneficiary_Country\": \"India\",\n        \"Beneficiary_State\": \"UP\",\n        \"Beneficiary_City\": \"Agra\",\n        \"Beneficiary_Address\": \"1437 VIP Road\",\n        \"Beneficiary_Postal_Code\": \"282001\",\n        \"Virtual_Account\": {\n            \"Account_Number\": \"780008000074\",\n            \"Deposit_Instructions\": [\n                {\n                    \"Title\": \"Domestic Wire Deposit\",\n                    \"Type\": \"Domestic Wire\",\n                    \"Note\": \"Domestic Wire - Please use these instructions for any wires within the United States. You will need to provide this information to the bank that is sending the wire to your FV Bank Account. You must provide the Reference for your FV Bank account in the Reference/Memo Field.\",\n                    \"Receiving Bank Name\": \"Cornerstone Capital Bank\",\n                    \"Receiving Bank Address\": \"1177 West Loop South, Suite 700, Houston, TX 77027\",\n                    \"Routing Number/ABA\": \"111326275\",\n                    \"Beneficiary Name\": \"FV Bank International Inc.\",\n                    \"Beneficiary Address\": \"270 Muñoz Rivera Avenue, Suite 1120, San Juan, PR 00918\",\n                    \"Beneficiary Account Number\": \"100107427\",\n                    \"Reference/Memo #\": \"780008000074\",\n                    \"Gateway\": \"cornerstone\"\n                },\n                {\n                    \"Title\": \"USDC Stablecoin Deposit\",\n                    \"Type\": \"USDC Stablecoin\",\n                    \"Note\": \"Deposits must be transferred on the ETH Blockchain. Any asset other than USDC sent to this address will not reach FV Bank and will be lost. Lost transfers may not be recoverable.\",\n                    \"Deposit Address\": \"Deposit Address request was successful. Your Deposit Address will be available shortly!\",\n                    \"Currency\": \"USDC\",\n                    \"Stablecoin Network\": \"ETH\"\n                }\n            ]\n        }\n    }\n}"},{"id":"2faa4611-a1e2-400b-a4e2-f35ef54d5dff","name":"Get Beneficiary Details [Business]","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/v2/beneficiary/{{beneficiaryIDV2}}","host":["{{baseURL}}"],"path":["v2","beneficiary","{{beneficiaryIDV2}}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-encoding","value":"gzip"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"626-fuIXaQECRjdvxrhEBeUFUaXeJFc\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"joavl74a2pz7"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"5c9e188c076aa65f8e01a92306ff5268"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"723"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Wed, 04 Feb 2026 12:39:17 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100020-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1770208756.408850,VS0,VE770"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"alt-svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"009b2833-233f-49c1-a3bf-4f3f3a400aa4"},{"key":"via","value":"1.1 google, 1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"CreatedBy\": \"Zomato - Rishav\",\n        \"CreatedOn\": \"2025-05-20T12:49:10.517-04:00\",\n        \"BeneficiaryId\": \"4894178377845878531\",\n        \"Available_Payments_Type\": [\n            {\n                \"label\": \"Payment - Domestic Wire\",\n                \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\",\n                \"PaymentInstrumentIDs\": [\n                    \"-5549669158026301692\"\n                ]\n            }\n        ],\n        \"Beneficiary_Type\": \"Business\",\n        \"Beneficiary_Name\": \"Tech Company Test 4\",\n        \"Beneficiary_Company_Name\": \"Tech Company Test 4\",\n        \"Beneficiary_Status\": \"Active\",\n        \"undefined\": false,\n        \"Business_Document\": \"Beneficiary Business Document (4898681977473249027)\",\n        \"Beneficiary_Country\": \"United States of America\",\n        \"Beneficiary_State\": \"CA\",\n        \"Beneficiary_City\": \"Beverly Hills\",\n        \"Beneficiary_Address\": \"514 Two Rivers Bike Trail\",\n        \"Beneficiary_Postal_Code\": \"90221\",\n        \"Virtual_Account\": {\n            \"Account_Number\": \"780008000006\",\n            \"Deposit_Instructions\": [\n                {\n                    \"Title\": \"Domestic Wire Deposit\",\n                    \"Type\": \"Domestic Wire\",\n                    \"Note\": \"Domestic Wire - Please use these instructions for any wires within the United States. You will need to provide this information to the bank that is sending the wire to your FV Bank Account. You must provide the Reference for your FV Bank account in the Reference/Memo Field.\",\n                    \"Receiving Bank Name\": \"Cornerstone Capital Bank\",\n                    \"Receiving Bank Address\": \"1177 West Loop South, Suite 700, Houston, TX 77027\",\n                    \"Routing Number/ABA\": \"111326275\",\n                    \"Beneficiary Name\": \"FV Bank International Inc.\",\n                    \"Beneficiary Address\": \"270 Muñoz Rivera Avenue, Suite 1120, San Juan, PR 00918\",\n                    \"Beneficiary Account Number\": \"100107427\",\n                    \"Reference/Memo #\": \"780008000006\",\n                    \"Gateway\": \"cornerstone\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"a00c2ceb-6d71-418a-9d6b-cda60c072708"},{"name":"Change Status","id":"05d4cd0c-68d8-46ce-8ffe-e43b2bb68c65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"BeneficiaryId\": \"{{beneficiaryIDV2}}\",\n        \"Status\": \"Disable\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/change-status","description":"<p>This endpoint is used to change status of a beneficiary.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryID</td>\n<td>String</td>\n<td>--</td>\n<td>Beneficiary ID</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>Active, Disable</td>\n<td>Status of the beneficiary</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>--</td>\n<td>Message</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: \"Permission Denied\" message is returned with status code 400 when \"Status\" in request body is same as the beneficiary status.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1","id":"d011a139-497a-4023-810f-e855a2b6cbb1","name":"Beneficiary","type":"folder"}},"urlObject":{"path":["v2","beneficiary","change-status"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"a4a96098-6da8-45ad-a154-876e228e5065","name":"Change Status [Enable]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"BeneficiaryId\": \"{{beneficiaryIDV2}}\",\n        \"Status\": \"Active\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/change-status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"125"},{"key":"etag","value":"W/\"7d-ltQTCG9BD7gLU6koSV+BMpZiICo\""},{"key":"x-execution-time","value":"11605"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Tue, 10 Jan 2023 07:36:09 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary has been enabled for transactions successfully.\"\n}"},{"id":"83e08018-3e61-4907-883b-b896576af6ef","name":"Change Status [Disable]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"BeneficiaryId\": \"{{beneficiaryIDV2}}\",\n        \"Status\": \"Disable\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/change-status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"126"},{"key":"etag","value":"W/\"7e-w6n4xiKyJ+JzIJ/BS7VEB5HXjpg\""},{"key":"x-execution-time","value":"6143"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Tue, 10 Jan 2023 07:36:59 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary has been disabled for transactions successfully.\"\n}"}],"_postman_id":"05d4cd0c-68d8-46ce-8ffe-e43b2bb68c65"}],"id":"d011a139-497a-4023-810f-e855a2b6cbb1","description":"<p>In order to initiate a bank transfer, a beneficiary must be added first. This sections consists of endpoints to work with the beneficiaries</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6785c0c4-7006-4403-abf2-ea4904e9632d","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"59c6596d-2cb5-463b-89f9-4a77c0860925","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"d011a139-497a-4023-810f-e855a2b6cbb1"},{"name":"Payment Instrument","item":[{"name":"Get Required Fields","id":"782e9f97-1ec2-4a63-9ccd-d2347d6f37a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.Stablecoin_Withdraw\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields","description":"<p>This endpoint is used to get all the fields that are needed to create a payment instrument based on the payment type.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PaymentType</td>\n<td>string</td>\n<td>true</td>\n<td>Get values from Get Payment Types endpoints</td>\n<td>Payment type for the payment instrument</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>object</td>\n<td>--</td>\n<td>--</td>\n<td>List of all the fields required to create the payment instrument</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390","id":"863636f7-0488-42ae-834c-dc60b97a8390","name":"Payment Instrument","type":"folder"}},"urlObject":{"path":["v2","payment-instrument","get-required-fields"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"e1b88a65-459a-419b-ba18-a499873c6e02","name":"Get Required Fields [V2] - Domestic (ACH)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.Business_ACH\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"907"},{"key":"Cache-Control","value":"private"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"38b-UgIzWxVfvsXXKwaiRQo8mtEWre4\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"a336gopcb4el"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"3084f02fbecb596b3460f8c9308b2b86"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"403"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:22:38 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674998557.321926,VS0,VE687"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Payment - Domestic (ACH)\",\n                        \"value\": \"BUS_USD_Account.Business_ACH\"\n                    },\n                    {\n                        \"label\": \"Payment - Domestic Wire\",\n                        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n                    },\n                    {\n                        \"label\": \"Payment - International Wire\",\n                        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    },\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"350a138c-44a3-46bd-9925-21ba72fe0122","name":"Get Required Fields [V2] - Domestic Wire","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"907"},{"key":"Cache-Control","value":"private"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"38b-UgIzWxVfvsXXKwaiRQo8mtEWre4\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"a336minob4lw"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"10b2306570e41bd4127f3433c1b3359b;o=1"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"413"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:23:21 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674998601.128381,VS0,VE703"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Payment - Domestic (ACH)\",\n                        \"value\": \"BUS_USD_Account.Business_ACH\"\n                    },\n                    {\n                        \"label\": \"Payment - Domestic Wire\",\n                        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n                    },\n                    {\n                        \"label\": \"Payment - International Wire\",\n                        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    },\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"7afe3c2f-812c-4fb3-bbe0-f92ff504beaa","name":"Get Required Fields [V2] - International Wire","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.BUS_International_Transfer\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"902"},{"key":"Cache-Control","value":"private"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Etag","value":"W/\"386-HOM0cJS6HkBMOvUzL5r5YGJF1yo\""},{"key":"Expect-Ct","value":"max-age=0"},{"key":"Function-Execution-Id","value":"gq9qsvmnkahj"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Cloud-Trace-Context","value":"1b0e9f315e53c150c9f330733342ffe5"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Country-Code","value":"IN"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Execution-Time","value":"393"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-Powered-By","value":"Express"},{"key":"X-Xss-Protection","value":"0"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Sun, 29 Jan 2023 13:24:14 GMT"},{"key":"X-Served-By","value":"cache-maa10221-MAA"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1674998654.570776,VS0,VE677"},{"key":"Vary","value":"Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"Text\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Payment - Domestic (ACH)\",\n                        \"value\": \"BUS_USD_Account.Business_ACH\"\n                    },\n                    {\n                        \"label\": \"Payment - Domestic Wire\",\n                        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n                    },\n                    {\n                        \"label\": \"Payment - International Wire\",\n                        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    },\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"f89232da-0f33-4c8e-afb0-69dd92c8cbe1","name":"Get Required Fields - AED Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_aed_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"e0c-NGAmjaCjJvaCwHNAlHB1W0+vOy4\""},{"key":"x-execution-time","value":"14657"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Thu, 14 May 2026 09:25:44 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"AED Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_aed_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Abu Dhabi Commercial Bank\",\n                        \"value\": 4005\n                    },\n                    {\n                        \"label\": \"ABU DHABI ISLAMIC BANK\",\n                        \"value\": 4008\n                    },\n                    {\n                        \"label\": \"AJMAN BANK PJSC\",\n                        \"value\": 4009\n                    },\n                    {\n                        \"label\": \"AL AHLI BANK OF KUWAIT.K.S.C.\",\n                        \"value\": 4010\n                    },\n                    {\n                        \"label\": \"AL HILAL BANK\",\n                        \"value\": 4012\n                    },\n                    {\n                        \"label\": \"AL KHALIJI FRANCE S.A.\",\n                        \"value\": 4013\n                    },\n                    {\n                        \"label\": \"ARAB AFRICAN INTERNATIONAL BANK\",\n                        \"value\": 4019\n                    },\n                    {\n                        \"label\": \"EMIRATES INVESTMENT BANK\",\n                        \"value\": 4022\n                    },\n                    {\n                        \"label\": \"BANK OF BARODA\",\n                        \"value\": 4026\n                    },\n                    {\n                        \"label\": \"BANK OF SHARJAH, THE\",\n                        \"value\": 4027\n                    },\n                    {\n                        \"label\": \"BANQUE MISR\",\n                        \"value\": 4029\n                    },\n                    {\n                        \"label\": \"BARCLAYS BANK PLC\",\n                        \"value\": 4030\n                    },\n                    {\n                        \"label\": \"BLOM BANK FRANCE S.A.\",\n                        \"value\": 4031\n                    },\n                    {\n                        \"label\": \"BNP PARIBAS, ABU DHABI\",\n                        \"value\": 4032\n                    },\n                    {\n                        \"label\": \"BNP PARIBAS, DUBAI\",\n                        \"value\": 4033\n                    },\n                    {\n                        \"label\": \"CITIBANK N.A.\",\n                        \"value\": 4036\n                    },\n                    {\n                        \"label\": \"COMMERCIAL BANK OF DUBAI\",\n                        \"value\": 4038\n                    },\n                    {\n                        \"label\": \"AGRICULTURAL BANK OF CHINA (DIFC BRANCH)\",\n                        \"value\": 4581\n                    },\n                    {\n                        \"label\": \"AGRICULTURAL BANK OF CHINA(DUBAI BRANCH)\",\n                        \"value\": 4582\n                    },\n                    {\n                        \"label\": \"BANK ALFALAH LIMITED (DUBAI BRANCH)\",\n                        \"value\": 4585\n                    },\n                    {\n                        \"label\": \"BANK OF CHINA (DUBAI) BRANCH\",\n                        \"value\": 4586\n                    },\n                    {\n                        \"label\": \"BANK OF CHINA ABU DHABI BRANCH\",\n                        \"value\": 4587\n                    },\n                    {\n                        \"label\": \"BOK INTERNATIONAL\",\n                        \"value\": 4592\n                    },\n                    {\n                        \"label\": \"DEUTSCHE BANK AG\",\n                        \"value\": 4597\n                    },\n                    {\n                        \"label\": \"DEUTSCHE BANK AG, ABU DHABI\",\n                        \"value\": 4598\n                    },\n                    {\n                        \"label\": \"DOHA BANK\",\n                        \"value\": 4599\n                    },\n                    {\n                        \"label\": \"DUBAI ISLAMIC BANK\",\n                        \"value\": 4601\n                    },\n                    {\n                        \"label\": \"DUBAI ISLAMIC BANK (FORMERLY NOOR BANK P.J.S.C.)\",\n                        \"value\": 4602\n                    },\n                    {\n                        \"label\": \"EL-NILEIN BANK\",\n                        \"value\": 4603\n                    },\n                    {\n                        \"label\": \"EMIRATES ISLAMIC BANK\",\n                        \"value\": 4606\n                    },\n                    {\n                        \"label\": \"EMIRATES NBD BANK PJSC\",\n                        \"value\": 4608\n                    },\n                    {\n                        \"label\": \"FIRST ABU DHABI BANK PJSC\",\n                        \"value\": 4609\n                    },\n                    {\n                        \"label\": \"GULF INTERNATIONAL BANK B.S.C.\",\n                        \"value\": 4610\n                    },\n                    {\n                        \"label\": \"HABIB BANK AG ZURICH\",\n                        \"value\": 4611\n                    },\n                    {\n                        \"label\": \"HABIB BANK LIMITED\",\n                        \"value\": 4612\n                    },\n                    {\n                        \"label\": \"INDUSTRIAL AND COMMERCIAL BANK OF CHINA LIMITED-ABU DHABI BRANCH\",\n                        \"value\": 4616\n                    },\n                    {\n                        \"label\": \"INDUSTRIAL AND COMMERCIAL BANK OF CHINA LIMITED, DUBAI(DIFC) BRANCH\",\n                        \"value\": 4617\n                    },\n                    {\n                        \"label\": \"INTESA SANPAOLO SPA\",\n                        \"value\": 4618\n                    },\n                    {\n                        \"label\": \"INVESTBANK\",\n                        \"value\": 4619\n                    },\n                    {\n                        \"label\": \"JANATA BANK\",\n                        \"value\": 4620\n                    },\n                    {\n                        \"label\": \"KEB HANA BANK ABUDHABI BRANCH\",\n                        \"value\": 4621\n                    },\n                    {\n                        \"label\": \"MASHREQBANK PSC.\",\n                        \"value\": 4623\n                    },\n                    {\n                        \"label\": \"MCB BANK LIMITED\",\n                        \"value\": 4624\n                    },\n                    {\n                        \"label\": \"NATIONAL BANK OF FUJAIRAH\",\n                        \"value\": 4628\n                    },\n                    {\n                        \"label\": \"NATIONAL BANK OF KUWAIT (S.A.K.).\",\n                        \"value\": 4629\n                    },\n                    {\n                        \"label\": \"NATIONAL BANK OF OMAN\",\n                        \"value\": 4630\n                    },\n                    {\n                        \"label\": \"NATIONAL BANK OF UMM AL QAIWAIN PSC.\",\n                        \"value\": 4632\n                    },\n                    {\n                        \"label\": \"SHARJAH ISLAMIC BANK\",\n                        \"value\": 4638\n                    },\n                    {\n                        \"label\": \"STANDARD CHARTERED BANK\",\n                        \"value\": 4641\n                    },\n                    {\n                        \"label\": \"UNITED BANK LTD.\",\n                        \"value\": 4648\n                    },\n                    {\n                        \"label\": \"Al Masraf\",\n                        \"value\": 5225\n                    },\n                    {\n                        \"label\": \"National Bank Of Bahrain\",\n                        \"value\": 5226\n                    },\n                    {\n                        \"label\": \"RAK Bank\",\n                        \"value\": 5227\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Identity_Type\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Passport\",\n                        \"value\": \"PASSPORT\"\n                    },\n                    {\n                        \"label\": \"Driving License\",\n                        \"value\": \"DRIVING_LICENSE\"\n                    },\n                    {\n                        \"label\": \"National Identification Card\",\n                        \"value\": \"NATIONAL_ID\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Identity_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Identity_Expiration_Date\",\n                \"Required\": false,\n                \"Type\": \"Date\"\n            }\n        ]\n    }\n}"},{"id":"58deee6b-3264-4319-a6c6-5862525bca0d","name":"Get Required Fields - AED Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_aed_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1999-2GHKNwy/6JGHsnnziF/+A65hpOs\""},{"key":"x-execution-time","value":"11923"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Thu, 14 May 2026 09:31:05 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"AED Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_aed_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"d45e3c4a-0247-4905-8f3d-2b1affeb58db","name":"Get Required Fields - CAD Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_cad_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"31c2-SBeLGH9yhZRn8e3J0hLbaoZXVBo\""},{"key":"x-execution-time","value":"14874"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 08:49:09 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"CAD Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_cad_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"ADS Canadian Bank\",\n                        \"value\": 4715\n                    },\n                    {\n                        \"label\": \"Amex Bank of Canada\",\n                        \"value\": 4716\n                    },\n                    {\n                        \"label\": \"ATB Financial\",\n                        \"value\": 4717\n                    },\n                    {\n                        \"label\": \"Atlantic Central (Institution Code 839)\",\n                        \"value\": 4718\n                    },\n                    {\n                        \"label\": \"Atlantic Central (Institution Code 849)\",\n                        \"value\": 4719\n                    },\n                    {\n                        \"label\": \"B2B Bank\",\n                        \"value\": 4720\n                    },\n                    {\n                        \"label\": \"Bank of America, National Association\",\n                        \"value\": 4721\n                    },\n                    {\n                        \"label\": \"Bank of Canada\",\n                        \"value\": 4722\n                    },\n                    {\n                        \"label\": \"Bank of China (Canada)\",\n                        \"value\": 4723\n                    },\n                    {\n                        \"label\": \"Bank of China, Toronto Branch\",\n                        \"value\": 4724\n                    },\n                    {\n                        \"label\": \"Bank of Montreal\",\n                        \"value\": 4725\n                    },\n                    {\n                        \"label\": \"Barclays Bank PLC, Canada Branch\",\n                        \"value\": 4726\n                    },\n                    {\n                        \"label\": \"BNP Paribas\",\n                        \"value\": 4727\n                    },\n                    {\n                        \"label\": \"Bridgewater Bank\",\n                        \"value\": 4728\n                    },\n                    {\n                        \"label\": \"Caisse Desjardins Ontario Credit Union Inc.\",\n                        \"value\": 4729\n                    },\n                    {\n                        \"label\": \"Caisse populaire acadienne ltée\",\n                        \"value\": 4730\n                    },\n                    {\n                        \"label\": \"Caisse populaire Alliance Limitée\",\n                        \"value\": 4731\n                    },\n                    {\n                        \"label\": \"Caisse Populaire Group Financier Ltée\",\n                        \"value\": 4732\n                    },\n                    {\n                        \"label\": \"Canadian Imperial Bank of Commerce (Institution Code 010)\",\n                        \"value\": 4733\n                    },\n                    {\n                        \"label\": \"Canadian Imperial Bank of Commerce (Institution Code 326)\",\n                        \"value\": 4734\n                    },\n                    {\n                        \"label\": \"Canadian Tire Bank\",\n                        \"value\": 4735\n                    },\n                    {\n                        \"label\": \"Canadian Western Bank\",\n                        \"value\": 4736\n                    },\n                    {\n                        \"label\": \"Capital One Bank (Canada Branch)\",\n                        \"value\": 4737\n                    },\n                    {\n                        \"label\": \"Central 1 Credit Union (Institution Code 809)\",\n                        \"value\": 4738\n                    },\n                    {\n                        \"label\": \"Central 1 Credit Union (Institution Code 828)\",\n                        \"value\": 4739\n                    },\n                    {\n                        \"label\": \"Central 1 Credit Union (Institution Code 869)\",\n                        \"value\": 4740\n                    },\n                    {\n                        \"label\": \"China Construction Bank Toronto Branch\",\n                        \"value\": 4741\n                    },\n                    {\n                        \"label\": \"CIBC Trust Corporation\",\n                        \"value\": 4742\n                    },\n                    {\n                        \"label\": \"Cidel Bank Canada\",\n                        \"value\": 4743\n                    },\n                    {\n                        \"label\": \"Citco Bank Canada\",\n                        \"value\": 4744\n                    },\n                    {\n                        \"label\": \"Citibank Canada\",\n                        \"value\": 4745\n                    },\n                    {\n                        \"label\": \"Citibank, N.A\",\n                        \"value\": 4746\n                    },\n                    {\n                        \"label\": \"Coast Capital Savings Federal Credit Union\",\n                        \"value\": 4747\n                    },\n                    {\n                        \"label\": \"Comerica Bank\",\n                        \"value\": 4748\n                    },\n                    {\n                        \"label\": \"Community Trust Company\",\n                        \"value\": 4749\n                    },\n                    {\n                        \"label\": \"Concentra Bank\",\n                        \"value\": 4750\n                    },\n                    {\n                        \"label\": \"Credit Union Central Alberta Limited\",\n                        \"value\": 4751\n                    },\n                    {\n                        \"label\": \"Credit Union Central of Manitoba Limited\",\n                        \"value\": 4752\n                    },\n                    {\n                        \"label\": \"Credit Union Central of Saskatchewan\",\n                        \"value\": 4753\n                    },\n                    {\n                        \"label\": \"CS Alterna Bank\",\n                        \"value\": 4754\n                    },\n                    {\n                        \"label\": \"CTBC Bank Corp. (Canada)\",\n                        \"value\": 4755\n                    },\n                    {\n                        \"label\": \"Deutsche Bank AG\",\n                        \"value\": 4756\n                    },\n                    {\n                        \"label\": \"Digital Commerce Bank\",\n                        \"value\": 4757\n                    },\n                    {\n                        \"label\": \"Duo Bank of Canada\",\n                        \"value\": 4758\n                    },\n                    {\n                        \"label\": \"Edward Jones\",\n                        \"value\": 4759\n                    },\n                    {\n                        \"label\": \"Effort Trust Company\",\n                        \"value\": 4760\n                    },\n                    {\n                        \"label\": \"Equitable Bank\",\n                        \"value\": 4761\n                    },\n                    {\n                        \"label\": \"Exchange Bank of Canada\",\n                        \"value\": 4762\n                    },\n                    {\n                        \"label\": \"Fédération des caisses Desjardins du Quebec\",\n                        \"value\": 4763\n                    },\n                    {\n                        \"label\": \"Fifth Third Bank, National Association\",\n                        \"value\": 4764\n                    },\n                    {\n                        \"label\": \"First Commercial Bank\",\n                        \"value\": 4765\n                    },\n                    {\n                        \"label\": \"First Nations Bank of Canada\",\n                        \"value\": 4766\n                    },\n                    {\n                        \"label\": \"General Bank of Canada\",\n                        \"value\": 4767\n                    },\n                    {\n                        \"label\": \"Habib Canadian Bank\",\n                        \"value\": 4768\n                    },\n                    {\n                        \"label\": \"Haventree Bank\",\n                        \"value\": 4769\n                    },\n                    {\n                        \"label\": \"Home Bank\",\n                        \"value\": 4770\n                    },\n                    {\n                        \"label\": \"Home Trust Company\",\n                        \"value\": 4771\n                    },\n                    {\n                        \"label\": \"HomeEquity Bank\",\n                        \"value\": 4772\n                    },\n                    {\n                        \"label\": \"HSBC Bank Canada\",\n                        \"value\": 4773\n                    },\n                    {\n                        \"label\": \"HSBC Mortgage Corporation (Canada)\",\n                        \"value\": 4774\n                    },\n                    {\n                        \"label\": \"ICICI Bank Canada\",\n                        \"value\": 4775\n                    },\n                    {\n                        \"label\": \"Industrial and Commercial Bank of China (Canada)\",\n                        \"value\": 4776\n                    },\n                    {\n                        \"label\": \"Investors Group Trust Co. Ltd.\",\n                        \"value\": 4777\n                    },\n                    {\n                        \"label\": \"J.P. Morgan Bank Canada\",\n                        \"value\": 4778\n                    },\n                    {\n                        \"label\": \"JPMorgan Chase Bank, National Association\",\n                        \"value\": 4779\n                    },\n                    {\n                        \"label\": \"KEB Hana Bank Canada\",\n                        \"value\": 4780\n                    },\n                    {\n                        \"label\": \"Laurentian Bank of Canada\",\n                        \"value\": 4781\n                    },\n                    {\n                        \"label\": \"M & T Bank\",\n                        \"value\": 4782\n                    },\n                    {\n                        \"label\": \"Manufacturers Life Insurance Company\",\n                        \"value\": 4783\n                    },\n                    {\n                        \"label\": \"Manulife Bank of Canada\",\n                        \"value\": 4784\n                    },\n                    {\n                        \"label\": \"Manulife Trust Company\",\n                        \"value\": 4785\n                    },\n                    {\n                        \"label\": \"Mega International Commercial Bank Co., Ltd.\",\n                        \"value\": 4786\n                    },\n                    {\n                        \"label\": \"Mizuho Bank Ltd.\",\n                        \"value\": 4787\n                    },\n                    {\n                        \"label\": \"Montreal Trust Company of Canada\",\n                        \"value\": 4788\n                    },\n                    {\n                        \"label\": \"Motus Bank\",\n                        \"value\": 4789\n                    },\n                    {\n                        \"label\": \"MUFG Bank, Ltd., Canada Branch\",\n                        \"value\": 4790\n                    },\n                    {\n                        \"label\": \"Natcan Trust Company\",\n                        \"value\": 4791\n                    },\n                    {\n                        \"label\": \"National Bank of Canada\",\n                        \"value\": 4792\n                    },\n                    {\n                        \"label\": \"National Trust Company\",\n                        \"value\": 4793\n                    },\n                    {\n                        \"label\": \"Peace Hills Trust Company\",\n                        \"value\": 4794\n                    },\n                    {\n                        \"label\": \"Peoples Bank of Canada\",\n                        \"value\": 4795\n                    },\n                    {\n                        \"label\": \"Peoples Trust Company\",\n                        \"value\": 4796\n                    },\n                    {\n                        \"label\": \"PNC Bank Canada Branch\",\n                        \"value\": 4797\n                    },\n                    {\n                        \"label\": \"President's Choice Bank\",\n                        \"value\": 4798\n                    },\n                    {\n                        \"label\": \"Rabobank Canada\",\n                        \"value\": 4799\n                    },\n                    {\n                        \"label\": \"RFA Bank of Canada\",\n                        \"value\": 4800\n                    },\n                    {\n                        \"label\": \"Rogers Bank\",\n                        \"value\": 4801\n                    },\n                    {\n                        \"label\": \"Royal Bank of Canada\",\n                        \"value\": 4802\n                    },\n                    {\n                        \"label\": \"Royal Trust Corporation of Canada\",\n                        \"value\": 4803\n                    },\n                    {\n                        \"label\": \"SBI Canada Bank\",\n                        \"value\": 4804\n                    },\n                    {\n                        \"label\": \"Scotia Mortgage Corporation\",\n                        \"value\": 4805\n                    },\n                    {\n                        \"label\": \"Shinhan Bank Canada\",\n                        \"value\": 4806\n                    },\n                    {\n                        \"label\": \"Société Générale (Canada Branch) (Institution Code 292)\",\n                        \"value\": 4807\n                    },\n                    {\n                        \"label\": \"State Street\",\n                        \"value\": 4808\n                    },\n                    {\n                        \"label\": \"Sumitomo Mitsui Banking Corporation, Canada Branch\",\n                        \"value\": 4809\n                    },\n                    {\n                        \"label\": \"Sun Life Financial Trust Inc.\",\n                        \"value\": 4810\n                    },\n                    {\n                        \"label\": \"Tangerine Bank\",\n                        \"value\": 4811\n                    },\n                    {\n                        \"label\": \"TD Mortgage Corporation\",\n                        \"value\": 4812\n                    },\n                    {\n                        \"label\": \"TD Pacific Mortgage Corporation\",\n                        \"value\": 4813\n                    },\n                    {\n                        \"label\": \"The Bank of New York Mellon\",\n                        \"value\": 4814\n                    },\n                    {\n                        \"label\": \"The Bank of Nova Scotia\",\n                        \"value\": 4815\n                    },\n                    {\n                        \"label\": \"The Canada Trust Company\",\n                        \"value\": 4816\n                    },\n                    {\n                        \"label\": \"The Northern Trust Company, Canada Branch\",\n                        \"value\": 4817\n                    },\n                    {\n                        \"label\": \"The Royal Trust Company\",\n                        \"value\": 4818\n                    },\n                    {\n                        \"label\": \"The Toronto-Dominion Bank\",\n                        \"value\": 4819\n                    },\n                    {\n                        \"label\": \"Trust La Laurentienne du Canada Inc.\",\n                        \"value\": 4820\n                    },\n                    {\n                        \"label\": \"U.S. Bank National Association\",\n                        \"value\": 4821\n                    },\n                    {\n                        \"label\": \"UBS Bank (Canada)\",\n                        \"value\": 4822\n                    },\n                    {\n                        \"label\": \"United Overseas Bank Limited\",\n                        \"value\": 4823\n                    },\n                    {\n                        \"label\": \"Vancity Community Investment Bank\",\n                        \"value\": 4824\n                    },\n                    {\n                        \"label\": \"VersaBank\",\n                        \"value\": 4825\n                    },\n                    {\n                        \"label\": \"Wealth One Bank of Canada\",\n                        \"value\": 4826\n                    },\n                    {\n                        \"label\": \"Wells Fargo Bank, National Association, Canadian Branch\",\n                        \"value\": 4827\n                    },\n                    {\n                        \"label\": \"Société Générale (Canada Branch) (Institution Code 346)\",\n                        \"value\": 4828\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Institution_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Transit_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_State\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"94cf7737-288a-4b20-b1f1-cd1f655e2b75","name":"Get Required Fields - CAD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_cad_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiJmMzQyODdjMGQ3NGUzYzJhYjhmMzU4MTZmMTY0NWRhNDRjNzVhMGUxZGM3NmVjNjBjN2QyMzY5M2M2MmUxMDhhWWcwWFZGTjdIa1N6T2lUaFI1MVNTTnhzTnhKS0swMTk2eCs5MmhvaWFGZjdVMnZDNHgvdXJWdHZlQ3JnM05pbGlydlhIVFJIM0VqQmdwWTM3a3ZwZmpvalJEZ1FrcEE3YVIvL28wamsycjhpL0U5YjFvVitlOHc5Q3hPR0dzTDg4bGxLcXpzeHRWelVndXgrK0FDUy9yVXpENTJ6alFON3l1aXlCODU0VGVnUjhJcStQSk1KN3BhTnpaMWZ2UG1ENXRJL1JBTWRPMHl6aE1NT2N4c3VlNU1VQnp1czJUQ2Y4bE5oWnVJS0VCM2ExRE1zc2R6STFvUitKVnQrc0M5VVpJZWR5dHZoQ2k3NjZxbGh3cm5aZ1o5cTl6dU4yUE1ZRm1KelRyY3U2ZkU9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg1ODE3NDIsImV4cCI6MTc3ODU4MjY0Mn0.BM0rzW6awcSNenW8RYrhTRJVkHRv8Y_twALDOyPVjck"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19e4-yGOU1+Z2R+RZagOWKeZedzIbAXs\""},{"key":"x-execution-time","value":"16679"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 10:29:15 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"CAD Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_cad_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_State\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"feee4c06-c990-44aa-a72e-ce346165c3a3","name":"Get Required Fields - GBP Faster Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_faster_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19a3-Ky9Fs7UiA4rwYL81qKFg3uwJuH8\""},{"key":"x-execution-time","value":"12931"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Thu, 14 May 2026 09:41:59 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"GBP Faster Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_faster_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Sort_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"11e07f48-1a16-41a5-b967-1dda80022089","name":"Get Required Fields - GBP Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_gbp_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiIwNDI2MzdjZWZiNmRiOGZlMDE0MGRjODEwOWNjNDZmOGExYzY4YmRmYWI4Yjc2MWQ4ZDgzNzZhODBlYmQ5NDQ1NnVSaXV5S3o5RHVCRjFpWlUvMFlCMlFGNlNQWkJsSGJHQ1hjZ3pFUXUrdURMYlA4VWNncEMxU2hYSWUzdjRnN2JvZmRFVXVPOHRyYTJuMmlUVWYzNmRLOTNZK04ybTVRU2ZBdWR2Vk55bFJUS0lLYzh4VGsvdExpWjkwb0JTSmY5L0tLbjNlaW9BbzN1SHl2NUJYcTQ3VjQwR1UyNG1hVW5jaHdQSEZPaTYrQnZjS3M5UFRpU1FYKy8vdHNyTEFjZXRkbjZ0QTRMTzRQR3dVYmdTVjdoYnJQTkdGL0k1VVlNSlBxQzhpWFNwd3BwSEFUV1pHblZQcHJtSU9RcWx1K1RyZW94eDhYcHFBNGZnZXB6bm11TXdTaklTVmJGMWUxUjh5SUpLRGVNRTA9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3NzgyNDgxOTUsImV4cCI6MTc3ODI0OTA5NX0.b0iY09z0rK_ZCuHWmsvUA077llu7q4FZlSe0l95_koM"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1999-YaLSbqdbXfuab8qvzmp9b5w+6W0\""},{"key":"x-execution-time","value":"16011"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Fri, 08 May 2026 13:50:08 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"GBP Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_gbp_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"10c34fc5-f5ba-4668-8c74-d97e7e9406f2","name":"Get Required Fields - BRL Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_brl_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiIwYzViZjE5ZTYzNDFmN2ZhOTQyNTU0NjQxYTk2MDFhOWYyYTgwOTE3NDM4M2EyYjdjYTQxZjgyNTk1NmZlZjE3dXcxTVpiVGJsRFNsOEw1eVdsZTYxOEpGQWZjcWFmSTF5dmtSaUlpSWdLR0Z1Qms3VVV6bmNWdUt5S0dpeU1PNGRCaWl5RHkwYWF2bGtwOE9vQVRmd2pmWnprQVRNbERhNVJKZlgzR2g0UWpQZ3JiZ1Z6YVdGdTBXM1Y3Q3N5Mm5wZStrd1BpcXMvNVZHdVpVZldaeVhaaVhPUHhUWHQrbEdEN3ZVVEYrMGkwY3krYnJoR2FoUFhQSkR6TjBneDVNdzN3Q2N1ZXd1b1RXSUJwY1EramgwTXhmZzZXUTVRaXJ0U2UwRXJJSllaZVB1Uk9OWmcyMXVJVFlMenpPeXN2a2ZSS3JnaHJZbWZCU3RuQnoyQnYxVEUvdnhqZ0x3RnduZFJ2ZG9QYTV3cE09IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg1ODkwMjcsImV4cCI6MTc3ODU4OTkyN30.qMBgO0D0dQC98aDR4XC14q7_KCC2zS-v4jivuCOCB3A"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"c36-JpStJsH+QEXAVacF/lM/i3bmydE\""},{"key":"x-execution-time","value":"17844"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 12:30:41 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"BRL Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_brl_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"BANCO DO BRASIL S.A\",\n                        \"value\": 751\n                    },\n                    {\n                        \"label\": \"BANCO DO NORDESTE DO BRASIL S.\",\n                        \"value\": 753\n                    },\n                    {\n                        \"label\": \"BANESTES S.A BANCO DO ESTADO DO ESPIRITO SANTO\",\n                        \"value\": 755\n                    },\n                    {\n                        \"label\": \"BANCO SANTANDER BRASIL S.A\",\n                        \"value\": 756\n                    },\n                    {\n                        \"label\": \"BANCO DO ESTADO DO PARA S.A.\",\n                        \"value\": 758\n                    },\n                    {\n                        \"label\": \"BANCO DO ESTADO DO RIO GRANDE DO SUL S.A.\",\n                        \"value\": 759\n                    },\n                    {\n                        \"label\": \"BANCO DO ESTADO DE SERGIPE S.A.\",\n                        \"value\": 760\n                    },\n                    {\n                        \"label\": \"BRB - BANCO DE BRASILIA S.A.\",\n                        \"value\": 761\n                    },\n                    {\n                        \"label\": \"COOPERATIVA CENTRAL DE CREDITO URBANO - CECRED\",\n                        \"value\": 762\n                    },\n                    {\n                        \"label\": \"CAIXA ECONOMICA FEDERAL\",\n                        \"value\": 763\n                    },\n                    {\n                        \"label\": \"UNICRED DO BRASIL\",\n                        \"value\": 764\n                    },\n                    {\n                        \"label\": \"BANCO BRADESCO S.A.\",\n                        \"value\": 765\n                    },\n                    {\n                        \"label\": \"BANCO ITAU S.A.\",\n                        \"value\": 767\n                    },\n                    {\n                        \"label\": \"BANCO MERCANTIL DO BRASIL S.A.\",\n                        \"value\": 768\n                    },\n                    {\n                        \"label\": \"HSBC BANK BRASIL S.A.-BANCO MULTIPLO\",\n                        \"value\": 769\n                    },\n                    {\n                        \"label\": \"BANCO SAFRA S.A.\",\n                        \"value\": 770\n                    },\n                    {\n                        \"label\": \"BANCO COOPERATIVO SICREDI S.A.\",\n                        \"value\": 772\n                    },\n                    {\n                        \"label\": \"BANCO COOPERATIVO DO BRASIL S.A.\",\n                        \"value\": 773\n                    },\n                    {\n                        \"label\": \"BANCO INTERMEDIUM S.A.\",\n                        \"value\": 999\n                    },\n                    {\n                        \"label\": \"BANCO BMG S.A.\",\n                        \"value\": 1631\n                    },\n                    {\n                        \"label\": \"BANCO INDUSVAL S.A.\",\n                        \"value\": 1632\n                    },\n                    {\n                        \"label\": \"BANCO ORIGINAL S.A.\",\n                        \"value\": 1633\n                    },\n                    {\n                        \"label\": \"BANCO SOFISA S.A.\",\n                        \"value\": 1634\n                    },\n                    {\n                        \"label\": \"BANCO AGIBANK\",\n                        \"value\": 2778\n                    },\n                    {\n                        \"label\": \"BANCO CRESOL\",\n                        \"value\": 2787\n                    },\n                    {\n                        \"label\": \"BANCO INTERCAP\",\n                        \"value\": 2790\n                    },\n                    {\n                        \"label\": \"BANCO MODAL\",\n                        \"value\": 2792\n                    },\n                    {\n                        \"label\": \"BANCO RENDIMENTO\",\n                        \"value\": 2793\n                    },\n                    {\n                        \"label\": \"BANCO RENNER\",\n                        \"value\": 2794\n                    },\n                    {\n                        \"label\": \"BANCO VOTORANTIM\",\n                        \"value\": 2795\n                    },\n                    {\n                        \"label\": \"BCO BS2\",\n                        \"value\": 2796\n                    },\n                    {\n                        \"label\": \"CCC NOROESTE BRASILEIRO LTDA\",\n                        \"value\": 2797\n                    },\n                    {\n                        \"label\": \"NUBANK\",\n                        \"value\": 2798\n                    },\n                    {\n                        \"label\": \"PAGSEGURO\",\n                        \"value\": 2799\n                    },\n                    {\n                        \"label\": \"UNICRED NORTE DO PARANA\",\n                        \"value\": 2800\n                    },\n                    {\n                        \"label\": \"ACESSO SOLUCOES PAGAMENTO SA\",\n                        \"value\": 5464\n                    },\n                    {\n                        \"label\": \"BANCO BTG PACTUAL S.A.\",\n                        \"value\": 5465\n                    },\n                    {\n                        \"label\": \"CREDICOAMO CREDITO RURAL COOPERATIVA\",\n                        \"value\": 5467\n                    },\n                    {\n                        \"label\": \"MERCADO PAGO\",\n                        \"value\": 5468\n                    },\n                    {\n                        \"label\": \"STONE PAGAMENTOS S.A\",\n                        \"value\": 5469\n                    },\n                    {\n                        \"label\": \"UNIPRIME CENTRAL\",\n                        \"value\": 5470\n                    },\n                    {\n                        \"label\": \"BANCO DIGIO\",\n                        \"value\": 5471\n                    },\n                    {\n                        \"label\": \"BCO C6 S.A.\",\n                        \"value\": 5472\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Branch_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    },\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Identity_Type\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Passport\",\n                        \"value\": \"PASSPORT\"\n                    },\n                    {\n                        \"label\": \"Driving License\",\n                        \"value\": \"DRIVING_LICENSE\"\n                    },\n                    {\n                        \"label\": \"National Identification Card\",\n                        \"value\": \"NATIONAL_ID\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Identity_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Tax_Id\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"fca3bf84-b6a3-4ffb-99da-996d6b70cc89","name":"Get Required Fields - HKD Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_hkd_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"37e5-LWDO3Xca0/TfkG62ghIqM9X3CaE\""},{"key":"x-execution-time","value":"14783"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 12:40:56 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"HKD Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_hkd_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Standard Chartered Bank (Hong Kong) Limited\",\n                        \"value\": 2734\n                    },\n                    {\n                        \"label\": \"The Hongkong and Shanghai Banking Corporation Limited\",\n                        \"value\": 2735\n                    },\n                    {\n                        \"label\": \"Citibank N.A.\",\n                        \"value\": 2736\n                    },\n                    {\n                        \"label\": \"Citibank (Hong Kong) Limited\",\n                        \"value\": 2737\n                    },\n                    {\n                        \"label\": \"Hang Seng Bank Ltd.\",\n                        \"value\": 2738\n                    },\n                    {\n                        \"label\": \"Chong Hing Bank Limited\",\n                        \"value\": 2739\n                    },\n                    {\n                        \"label\": \"DBS Bank (Hong Kong) Limited\",\n                        \"value\": 2740\n                    },\n                    {\n                        \"label\": \"CMB Wing Lung Bank Limited\",\n                        \"value\": 2741\n                    },\n                    {\n                        \"label\": \"Industrial and Commercial Bank of China (Asia)\",\n                        \"value\": 2742\n                    },\n                    {\n                        \"label\": \"Nanyang Commercial Bank\",\n                        \"value\": 2743\n                    },\n                    {\n                        \"label\": \"China Construction Bank (Asia) Corporation Limited\",\n                        \"value\": 2744\n                    },\n                    {\n                        \"label\": \"Agricultural Bank of China Limited\",\n                        \"value\": 2745\n                    },\n                    {\n                        \"label\": \"China Minsheng Banking Corp., Ltd\",\n                        \"value\": 2746\n                    },\n                    {\n                        \"label\": \"Bank of China ( Hong Kong ) Limited\",\n                        \"value\": 2747\n                    },\n                    {\n                        \"label\": \"Credit Agricole Corporate and Investment Bank\",\n                        \"value\": 4346\n                    },\n                    {\n                        \"label\": \"JPMorgan Chase Bank, N.A.\",\n                        \"value\": 4347\n                    },\n                    {\n                        \"label\": \"The Bank of East Asia, Limited\",\n                        \"value\": 4349\n                    },\n                    {\n                        \"label\": \"CHINA CITIC BANK INTERNATIONAL LIMITED\",\n                        \"value\": 4350\n                    },\n                    {\n                        \"label\": \"OVERSEA - CHINESE BANKING CORPORATION LIMITED\",\n                        \"value\": 4351\n                    },\n                    {\n                        \"label\": \"Shanghai Commercial Bank Limited\",\n                        \"value\": 4352\n                    },\n                    {\n                        \"label\": \"Bank of Communications Co., Ltd. Hong Kong Branch\",\n                        \"value\": 4353\n                    },\n                    {\n                        \"label\": \"Public Bank (Hong Kong) Limited\",\n                        \"value\": 4354\n                    },\n                    {\n                        \"label\": \"OCBC Bank (Hong Kong) Limited\",\n                        \"value\": 4355\n                    },\n                    {\n                        \"label\": \"Tai Yau Bank Limited\",\n                        \"value\": 4356\n                    },\n                    {\n                        \"label\": \"Chiyu Banking Corporation Limited\",\n                        \"value\": 4357\n                    },\n                    {\n                        \"label\": \"Dah Sing Bank, Limited\",\n                        \"value\": 4358\n                    },\n                    {\n                        \"label\": \"UCO BANK HONG KONG\",\n                        \"value\": 4359\n                    },\n                    {\n                        \"label\": \"KEB HANA BANK\",\n                        \"value\": 4360\n                    },\n                    {\n                        \"label\": \"MUFG Bank, Ltd.\",\n                        \"value\": 4361\n                    },\n                    {\n                        \"label\": \"BANGKOK BANK PUBLIC COMPANY LIMITED\",\n                        \"value\": 4362\n                    },\n                    {\n                        \"label\": \"INDIAN OVERSEAS BANK\",\n                        \"value\": 4363\n                    },\n                    {\n                        \"label\": \"Deutsche Bank AG Hong Kong Branch\",\n                        \"value\": 4364\n                    },\n                    {\n                        \"label\": \"Bank of America N.A.\",\n                        \"value\": 4365\n                    },\n                    {\n                        \"label\": \"BNP PARIBAS HONG KONG BRANCH\",\n                        \"value\": 4366\n                    },\n                    {\n                        \"label\": \"BANK OF INDIA\",\n                        \"value\": 4367\n                    },\n                    {\n                        \"label\": \"National Bank of Pakistan\",\n                        \"value\": 4368\n                    },\n                    {\n                        \"label\": \"TAI SANG BANK LTD.\",\n                        \"value\": 4369\n                    },\n                    {\n                        \"label\": \"Malayan Banking Berhad Hong Kong Branch\",\n                        \"value\": 4370\n                    },\n                    {\n                        \"label\": \"Sumitomo Mitsui Banking Corporation\",\n                        \"value\": 4371\n                    },\n                    {\n                        \"label\": \"PT. BANK NEGARA INDONESIA (PERSERO) TBK.\",\n                        \"value\": 4372\n                    },\n                    {\n                        \"label\": \"BDO UNIBANK, INC.\",\n                        \"value\": 4373\n                    },\n                    {\n                        \"label\": \"United Overseas Bank Limited\",\n                        \"value\": 4374\n                    },\n                    {\n                        \"label\": \"Barclays Bank PLC\",\n                        \"value\": 4375\n                    },\n                    {\n                        \"label\": \"The Bank of Nova Scotia\",\n                        \"value\": 4376\n                    },\n                    {\n                        \"label\": \"Royal Bank of Canada, Hong Kong Branch\",\n                        \"value\": 4377\n                    },\n                    {\n                        \"label\": \"SOCIETE GENERALE HONGKONG BRANCH\",\n                        \"value\": 4378\n                    },\n                    {\n                        \"label\": \"STATE BANK OF INDIA\",\n                        \"value\": 4379\n                    },\n                    {\n                        \"label\": \"Toronto Dominion Bank\",\n                        \"value\": 4380\n                    },\n                    {\n                        \"label\": \"BANK OF MONTREAL\",\n                        \"value\": 4381\n                    },\n                    {\n                        \"label\": \"CANADIAN IMPERIAL BANK OF COMMERCE\",\n                        \"value\": 4382\n                    },\n                    {\n                        \"label\": \"UBS AG Hong Kong\",\n                        \"value\": 4384\n                    },\n                    {\n                        \"label\": \"Mizuho Bank, Ltd.\",\n                        \"value\": 4385\n                    },\n                    {\n                        \"label\": \"DZ BANK AG DEUTSCHE ZENTRAL- GENOSSENSCHAFTSBANK, FRANKFURT AM MAIN, HONG KONG BRANCH\",\n                        \"value\": 4386\n                    },\n                    {\n                        \"label\": \"Woori Bank Hong Kong Branch\",\n                        \"value\": 4387\n                    },\n                    {\n                        \"label\": \"PHILIPPINE NATIONAL BANK\",\n                        \"value\": 4388\n                    },\n                    {\n                        \"label\": \"Fubon Bank (Hong Kong) Limited\",\n                        \"value\": 4389\n                    },\n                    {\n                        \"label\": \"MITSUBISHI UFJ TRUST AND BANKING CORPORATION\",\n                        \"value\": 4390\n                    },\n                    {\n                        \"label\": \"The Bank of New York Mellon, Hong Kong Branch\",\n                        \"value\": 4391\n                    },\n                    {\n                        \"label\": \"ING Bank N.V., Hong Kong\",\n                        \"value\": 4392\n                    },\n                    {\n                        \"label\": \"Banco Bilbao Vizcaya Argentaria S.A., Hong Kong Branch\",\n                        \"value\": 4393\n                    },\n                    {\n                        \"label\": \"Australia and New Zealand Banking Corporation Limited\",\n                        \"value\": 4396\n                    },\n                    {\n                        \"label\": \"Commonwealth Bank of Australia\",\n                        \"value\": 4397\n                    },\n                    {\n                        \"label\": \"Intesa Sanpaolo S.p.A., Hong Kong\",\n                        \"value\": 4398\n                    },\n                    {\n                        \"label\": \"The Chiba Bank Ltd\",\n                        \"value\": 4401\n                    },\n                    {\n                        \"label\": \"KBC Bank N.V. Hong Kong Branch\",\n                        \"value\": 4402\n                    },\n                    {\n                        \"label\": \"Wells Fargo Bank, N.A. Hong Kong Branch\",\n                        \"value\": 4403\n                    },\n                    {\n                        \"label\": \"COOPERATIEVE RABOBANK U.A.\",\n                        \"value\": 4404\n                    },\n                    {\n                        \"label\": \"DBS Bank Ltd, HK Branch\",\n                        \"value\": 4405\n                    },\n                    {\n                        \"label\": \"The Shizuoka Bank, Ltd.\",\n                        \"value\": 4406\n                    },\n                    {\n                        \"label\": \"HUA NAN COMMERCIAL BANK LTD. (HK BRANCH)\",\n                        \"value\": 4408\n                    },\n                    {\n                        \"label\": \"THE SHIGA BANK, LTD.\",\n                        \"value\": 4409\n                    },\n                    {\n                        \"label\": \"BANK OF TAIWAN\",\n                        \"value\": 4410\n                    },\n                    {\n                        \"label\": \"THE CHUGOKU BANK, LTD.\",\n                        \"value\": 4411\n                    },\n                    {\n                        \"label\": \"FIRST COMMERCIAL BANK LTD HONG KONG BRANCH\",\n                        \"value\": 4412\n                    },\n                    {\n                        \"label\": \"CHANG HWA COMMERCIAL BANK LIMITED\",\n                        \"value\": 4413\n                    },\n                    {\n                        \"label\": \"NATIXIS HONG KONG BRANCH\",\n                        \"value\": 4414\n                    },\n                    {\n                        \"label\": \"INDUSTRIAL AND COMMERCIAL BANK OF CHINA LIMITED\",\n                        \"value\": 4415\n                    },\n                    {\n                        \"label\": \"State Street Bank & Trust Company, Hong Kong\",\n                        \"value\": 4416\n                    },\n                    {\n                        \"label\": \"China Construction Bank Corporation, Hong Kong Branch\",\n                        \"value\": 4417\n                    },\n                    {\n                        \"label\": \"Erste Group Bank AG\",\n                        \"value\": 4418\n                    },\n                    {\n                        \"label\": \"CTBC BANK CO., LTD\",\n                        \"value\": 4419\n                    },\n                    {\n                        \"label\": \"Taiwan Business Bank, Ltd.\",\n                        \"value\": 4420\n                    },\n                    {\n                        \"label\": \"Cathay United Bank Company, Limited, Hong Kong Branch\",\n                        \"value\": 4422\n                    },\n                    {\n                        \"label\": \"EFG Bank AG Hong Kong Branch\",\n                        \"value\": 4423\n                    },\n                    {\n                        \"label\": \"China Merchants Bank Co. Ltd. Hong Kong Branch\",\n                        \"value\": 4424\n                    },\n                    {\n                        \"label\": \"Taipei Fubon Commercial Bank\",\n                        \"value\": 4425\n                    },\n                    {\n                        \"label\": \"Bank SinoPac (Hong Kong Branch)\",\n                        \"value\": 4426\n                    },\n                    {\n                        \"label\": \"Mega International Commercial Bank Co Ltd\",\n                        \"value\": 4427\n                    },\n                    {\n                        \"label\": \"E.Sun Commercial Bank, Ltd.\",\n                        \"value\": 4428\n                    },\n                    {\n                        \"label\": \"Taishin International Bank Co Ltd\",\n                        \"value\": 4429\n                    },\n                    {\n                        \"label\": \"Hong Leong Bank Berhad Hong Kong Branch\",\n                        \"value\": 4430\n                    },\n                    {\n                        \"label\": \"ICICI BANK LIMITED\",\n                        \"value\": 4431\n                    },\n                    {\n                        \"label\": \"Melli Bank Plc\",\n                        \"value\": 4432\n                    },\n                    {\n                        \"label\": \"EAST WEST BANK\",\n                        \"value\": 4433\n                    },\n                    {\n                        \"label\": \"Far Eastern International Bank Co Ltd.\",\n                        \"value\": 4434\n                    },\n                    {\n                        \"label\": \"CATHAY BANK\",\n                        \"value\": 4436\n                    },\n                    {\n                        \"label\": \"LAND BANK OF TAIWAN CO.,LTD.\",\n                        \"value\": 4437\n                    },\n                    {\n                        \"label\": \"Taiwan Cooperative Bank\",\n                        \"value\": 4438\n                    },\n                    {\n                        \"label\": \"BANCO SANTANDER S.A.\",\n                        \"value\": 4440\n                    },\n                    {\n                        \"label\": \"The Shanghai Commercial & Savings Bank Ltd.Hong Kong Branch.\",\n                        \"value\": 4442\n                    },\n                    {\n                        \"label\": \"INDUSTRIAL BANK OF KOREA\",\n                        \"value\": 4443\n                    },\n                    {\n                        \"label\": \"Bank of Singapore Limited\",\n                        \"value\": 4444\n                    },\n                    {\n                        \"label\": \"Shinhan Bank Hong Kong Branch\",\n                        \"value\": 4445\n                    },\n                    {\n                        \"label\": \"O-Bank Co., Ltd\",\n                        \"value\": 4446\n                    },\n                    {\n                        \"label\": \"China Development Bank Hong Kong Branch\",\n                        \"value\": 4448\n                    },\n                    {\n                        \"label\": \"First Abu Dhabi Bank PJSC\",\n                        \"value\": 4449\n                    },\n                    {\n                        \"label\": \"BANK J. SAFRA SARASIN LTD, HONG KONG BRANCH\",\n                        \"value\": 4450\n                    },\n                    {\n                        \"label\": \"HDFC BANK LIMITED\",\n                        \"value\": 4452\n                    },\n                    {\n                        \"label\": \"Union Bancaire Privee, UBP SA\",\n                        \"value\": 4453\n                    },\n                    {\n                        \"label\": \"Skandinaviska Enskilda Banken AB\",\n                        \"value\": 4454\n                    },\n                    {\n                        \"label\": \"BANK JULIUS BAER AND CO LTD HONG KONG\",\n                        \"value\": 4455\n                    },\n                    {\n                        \"label\": \"Credit Industriel et Commercial, Hong Kong Branch\",\n                        \"value\": 4456\n                    },\n                    {\n                        \"label\": \"Taiwan Shin Kong Commercial Bank Co., LTD.\",\n                        \"value\": 4457\n                    },\n                    {\n                        \"label\": \"CA Indosuez (Switzerland) SA\",\n                        \"value\": 4458\n                    },\n                    {\n                        \"label\": \"LGT Bank AG., HK Branch\",\n                        \"value\": 4460\n                    },\n                    {\n                        \"label\": \"Shanghai Pudong Development Bank Co., Ltd.\",\n                        \"value\": 4462\n                    },\n                    {\n                        \"label\": \"Banque Pictet & Cie SA\",\n                        \"value\": 4463\n                    },\n                    {\n                        \"label\": \"China Everbright Bank\",\n                        \"value\": 4464\n                    },\n                    {\n                        \"label\": \"Sumitomo Mitsui Trust Bank, Limited, Hong Kong Branch\",\n                        \"value\": 4465\n                    },\n                    {\n                        \"label\": \"CIMB BANK BERHAD\",\n                        \"value\": 4466\n                    },\n                    {\n                        \"label\": \"Industrial Bank Co., Ltd., Hong Kong Branch\",\n                        \"value\": 4467\n                    },\n                    {\n                        \"label\": \"YUANTA COMMERCIAL BANK CO.,LTD\",\n                        \"value\": 4468\n                    },\n                    {\n                        \"label\": \"Mashreq Bank Public Shareholding Company\",\n                        \"value\": 4469\n                    },\n                    {\n                        \"label\": \"Kookmin Bank\",\n                        \"value\": 4470\n                    },\n                    {\n                        \"label\": \"Bank of Communications (Hong Kong) Ltd.\",\n                        \"value\": 4471\n                    },\n                    {\n                        \"label\": \"CHINA ZHESHANG BANK CO., LTD.\",\n                        \"value\": 4472\n                    },\n                    {\n                        \"label\": \"Ping An Bank Co., Ltd.\",\n                        \"value\": 4473\n                    },\n                    {\n                        \"label\": \"Hua Xia Bank Co., Limited\",\n                        \"value\": 4474\n                    },\n                    {\n                        \"label\": \"ZA Bank Limited\",\n                        \"value\": 4475\n                    },\n                    {\n                        \"label\": \"Livi Bank Limited\",\n                        \"value\": 4476\n                    },\n                    {\n                        \"label\": \"Mox Bank Limited\",\n                        \"value\": 4477\n                    },\n                    {\n                        \"label\": \"Welab Bank Limited\",\n                        \"value\": 4478\n                    },\n                    {\n                        \"label\": \"Fusion Bank Limited\",\n                        \"value\": 4479\n                    },\n                    {\n                        \"label\": \"PAO Bank Limited\",\n                        \"value\": 4480\n                    },\n                    {\n                        \"label\": \"Ant Bank (Hong Kong) Limited\",\n                        \"value\": 4481\n                    },\n                    {\n                        \"label\": \"Airstar Bank Limited\",\n                        \"value\": 4482\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"7af6a259-cc0a-4990-ba34-4eb400ba7661","name":"Get Required Fields - HKD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_hkd_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19d9-C5MMbrgzcsqf84en2S1ry4xBPd0\""},{"key":"x-execution-time","value":"13714"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 12:47:08 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"HKD Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_hkd_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"a530cff3-3f1d-45f9-a0e5-86c5fddb9f5e","name":"Get Required Fields - JPY Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_jpy_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1a79-1eOb3fDvdN5jbHj6yp+WfShfeqw\""},{"key":"x-execution-time","value":"14401"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 12:54:57 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"JPY Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_jpy_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Japan Post Bank\",\n                        \"value\": 3283\n                    },\n                    {\n                        \"label\": \"Okinawa Kaiho Bank\",\n                        \"value\": 3284\n                    },\n                    {\n                        \"label\": \"Minami Nippon Bank\",\n                        \"value\": 3285\n                    },\n                    {\n                        \"label\": \"Miyazaki Taiyo Bank\",\n                        \"value\": 3286\n                    },\n                    {\n                        \"label\": \"Howa Bank\",\n                        \"value\": 3287\n                    },\n                    {\n                        \"label\": \"Kumamoto Bank\",\n                        \"value\": 3288\n                    },\n                    {\n                        \"label\": \"Nagasaki Bank\",\n                        \"value\": 3289\n                    },\n                    {\n                        \"label\": \"Saga Kyoei Bank\",\n                        \"value\": 3290\n                    },\n                    {\n                        \"label\": \"Fukuoka Chuo Bank\",\n                        \"value\": 3291\n                    },\n                    {\n                        \"label\": \"Kochi Bank\",\n                        \"value\": 3292\n                    },\n                    {\n                        \"label\": \"Ehime Bank\",\n                        \"value\": 3293\n                    },\n                    {\n                        \"label\": \"Kagawa Bank\",\n                        \"value\": 3294\n                    },\n                    {\n                        \"label\": \"The Tokushima Taisho Bank\",\n                        \"value\": 3295\n                    },\n                    {\n                        \"label\": \"Saikyo Bank\",\n                        \"value\": 3296\n                    },\n                    {\n                        \"label\": \"Momiji Bank\",\n                        \"value\": 3297\n                    },\n                    {\n                        \"label\": \"Tomato Bank\",\n                        \"value\": 3298\n                    },\n                    {\n                        \"label\": \"Shimane Bank\",\n                        \"value\": 3299\n                    },\n                    {\n                        \"label\": \"Minato Bank\",\n                        \"value\": 3300\n                    },\n                    {\n                        \"label\": \"Taisho Bank\",\n                        \"value\": 3301\n                    },\n                    {\n                        \"label\": \"Daisan Bank\",\n                        \"value\": 3302\n                    },\n                    {\n                        \"label\": \"Chukyo Bank\",\n                        \"value\": 3303\n                    },\n                    {\n                        \"label\": \"Nagoya Bank\",\n                        \"value\": 3304\n                    },\n                    {\n                        \"label\": \"Aichi Bank\",\n                        \"value\": 3305\n                    },\n                    {\n                        \"label\": \"Shizuoka Chuo Bank\",\n                        \"value\": 3306\n                    },\n                    {\n                        \"label\": \"Fukuho Bank\",\n                        \"value\": 3307\n                    },\n                    {\n                        \"label\": \"First Bank of Toyama\",\n                        \"value\": 3308\n                    },\n                    {\n                        \"label\": \"Nagano Bank\",\n                        \"value\": 3309\n                    },\n                    {\n                        \"label\": \"Taiko Bank\",\n                        \"value\": 3310\n                    },\n                    {\n                        \"label\": \"Kanagawa Bank\",\n                        \"value\": 3311\n                    },\n                    {\n                        \"label\": \"Tokyo Star Bank\",\n                        \"value\": 3312\n                    },\n                    {\n                        \"label\": \"Higashi-Nippon Bank\",\n                        \"value\": 3313\n                    },\n                    {\n                        \"label\": \"Keiyo Bank\",\n                        \"value\": 3314\n                    },\n                    {\n                        \"label\": \"Tochigi Bank\",\n                        \"value\": 3315\n                    },\n                    {\n                        \"label\": \"Towa Bank\",\n                        \"value\": 3316\n                    },\n                    {\n                        \"label\": \"Daito Bank\",\n                        \"value\": 3317\n                    },\n                    {\n                        \"label\": \"Fukushima Bank\",\n                        \"value\": 3318\n                    },\n                    {\n                        \"label\": \"Sendai Bank\",\n                        \"value\": 3319\n                    },\n                    {\n                        \"label\": \"Kita-Nippon Bank\",\n                        \"value\": 3320\n                    },\n                    {\n                        \"label\": \"Kirayaka Bank\",\n                        \"value\": 3321\n                    },\n                    {\n                        \"label\": \"North Pacific Bank\",\n                        \"value\": 3322\n                    },\n                    {\n                        \"label\": \"SBJ Bank\",\n                        \"value\": 3323\n                    },\n                    {\n                        \"label\": \"Deutsche Bank\",\n                        \"value\": 3324\n                    },\n                    {\n                        \"label\": \"The Hongkong and Shanghai Banking Corporation Limited\",\n                        \"value\": 3325\n                    },\n                    {\n                        \"label\": \"Bank of America Corporation, BofA\",\n                        \"value\": 3326\n                    },\n                    {\n                        \"label\": \"JPMorgan Chase Bank, N.A\",\n                        \"value\": 3327\n                    },\n                    {\n                        \"label\": \"Citibank, N.A\",\n                        \"value\": 3328\n                    },\n                    {\n                        \"label\": \"Aozora Bank\",\n                        \"value\": 3329\n                    },\n                    {\n                        \"label\": \"Shinsei Bank\",\n                        \"value\": 3330\n                    },\n                    {\n                        \"label\": \"Kitakyushu Bank\",\n                        \"value\": 3331\n                    },\n                    {\n                        \"label\": \"Nishi Nihon City Bank\",\n                        \"value\": 3332\n                    },\n                    {\n                        \"label\": \"Okinawa Bank\",\n                        \"value\": 3333\n                    },\n                    {\n                        \"label\": \"Ryukyu Bank\",\n                        \"value\": 3334\n                    },\n                    {\n                        \"label\": \"Kagoshima Bank\",\n                        \"value\": 3335\n                    },\n                    {\n                        \"label\": \"Miyazaki Bank\",\n                        \"value\": 3336\n                    },\n                    {\n                        \"label\": \"Oita Bank\",\n                        \"value\": 3337\n                    },\n                    {\n                        \"label\": \"Higo Bank\",\n                        \"value\": 3338\n                    },\n                    {\n                        \"label\": \"Juhachi Shinwa Bank\",\n                        \"value\": 3339\n                    },\n                    {\n                        \"label\": \"Jyuhachi Bank\",\n                        \"value\": 3340\n                    },\n                    {\n                        \"label\": \"Saga Bank\",\n                        \"value\": 3341\n                    },\n                    {\n                        \"label\": \"Chikubo Bank\",\n                        \"value\": 3342\n                    },\n                    {\n                        \"label\": \"Fukuoka Bank\",\n                        \"value\": 3343\n                    },\n                    {\n                        \"label\": \"Shikoku Bank\",\n                        \"value\": 3344\n                    },\n                    {\n                        \"label\": \"Iyo Bank\",\n                        \"value\": 3345\n                    },\n                    {\n                        \"label\": \"Hyaku Jyushi Bank\",\n                        \"value\": 3346\n                    },\n                    {\n                        \"label\": \"Awa Bank\",\n                        \"value\": 3347\n                    },\n                    {\n                        \"label\": \"Yamaguchi Bank\",\n                        \"value\": 3348\n                    },\n                    {\n                        \"label\": \"Hiroshima Bank\",\n                        \"value\": 3349\n                    },\n                    {\n                        \"label\": \"China Bank\",\n                        \"value\": 3350\n                    },\n                    {\n                        \"label\": \"Sanin Goudou Bank\",\n                        \"value\": 3351\n                    },\n                    {\n                        \"label\": \"Tottori Bank\",\n                        \"value\": 3352\n                    },\n                    {\n                        \"label\": \"Tajima Bank\",\n                        \"value\": 3353\n                    },\n                    {\n                        \"label\": \"Kiyou Bank\",\n                        \"value\": 3354\n                    },\n                    {\n                        \"label\": \"Nanto Bank\",\n                        \"value\": 3355\n                    },\n                    {\n                        \"label\": \"Ikeda Senshu Bank\",\n                        \"value\": 3356\n                    },\n                    {\n                        \"label\": \"Kansai Mirai Bank\",\n                        \"value\": 3357\n                    },\n                    {\n                        \"label\": \"Kyoto Bank\",\n                        \"value\": 3358\n                    },\n                    {\n                        \"label\": \"Shiga Bank\",\n                        \"value\": 3359\n                    },\n                    {\n                        \"label\": \"Hyakugo banks\",\n                        \"value\": 3360\n                    },\n                    {\n                        \"label\": \"Sanjusan Bank\",\n                        \"value\": 3361\n                    },\n                    {\n                        \"label\": \"Juroku banks\",\n                        \"value\": 3362\n                    },\n                    {\n                        \"label\": \"Oogaki Kyoritsu Bank\",\n                        \"value\": 3363\n                    },\n                    {\n                        \"label\": \"Shimizu Bank\",\n                        \"value\": 3364\n                    },\n                    {\n                        \"label\": \"Suruga Bank\",\n                        \"value\": 3365\n                    },\n                    {\n                        \"label\": \"Shizuoka Bank\",\n                        \"value\": 3366\n                    },\n                    {\n                        \"label\": \"Fukui Bank\",\n                        \"value\": 3367\n                    },\n                    {\n                        \"label\": \"Hokkoku Bank\",\n                        \"value\": 3368\n                    },\n                    {\n                        \"label\": \"Toyama Bank\",\n                        \"value\": 3369\n                    },\n                    {\n                        \"label\": \"Hokuriku Bank\",\n                        \"value\": 3370\n                    },\n                    {\n                        \"label\": \"Hachijuni banks\",\n                        \"value\": 3371\n                    },\n                    {\n                        \"label\": \"Yamanashi Chuo Bank\",\n                        \"value\": 3372\n                    },\n                    {\n                        \"label\": \"Hokuetsu Bank\",\n                        \"value\": 3373\n                    },\n                    {\n                        \"label\": \"Daishi Hokuetsu Bank\",\n                        \"value\": 3374\n                    },\n                    {\n                        \"label\": \"Yokohama Bank\",\n                        \"value\": 3375\n                    },\n                    {\n                        \"label\": \"Kiraboshi Bank\",\n                        \"value\": 3376\n                    },\n                    {\n                        \"label\": \"Chiba Kogyo Bank\",\n                        \"value\": 3377\n                    },\n                    {\n                        \"label\": \"Chiba Bank\",\n                        \"value\": 3378\n                    },\n                    {\n                        \"label\": \"Musashino Bank\",\n                        \"value\": 3379\n                    },\n                    {\n                        \"label\": \"Tsukuba Bank\",\n                        \"value\": 3380\n                    },\n                    {\n                        \"label\": \"Jouyou Bank\",\n                        \"value\": 3381\n                    },\n                    {\n                        \"label\": \"Ashikaga Bank\",\n                        \"value\": 3382\n                    },\n                    {\n                        \"label\": \"Gunma Bank\",\n                        \"value\": 3383\n                    },\n                    {\n                        \"label\": \"Touhou Bank\",\n                        \"value\": 3384\n                    },\n                    {\n                        \"label\": \"77 Bank\",\n                        \"value\": 3385\n                    },\n                    {\n                        \"label\": \"Tohoku Bank\",\n                        \"value\": 3386\n                    },\n                    {\n                        \"label\": \"Iwate Bank\",\n                        \"value\": 3387\n                    },\n                    {\n                        \"label\": \"Yamagata Bank\",\n                        \"value\": 3388\n                    },\n                    {\n                        \"label\": \"Shonai Bank\",\n                        \"value\": 3389\n                    },\n                    {\n                        \"label\": \"Hokuto Bank\",\n                        \"value\": 3390\n                    },\n                    {\n                        \"label\": \"Akita Bank\",\n                        \"value\": 3391\n                    },\n                    {\n                        \"label\": \"Michinoku Bank\",\n                        \"value\": 3392\n                    },\n                    {\n                        \"label\": \"Aomori Bank\",\n                        \"value\": 3393\n                    },\n                    {\n                        \"label\": \"Hokkaido Bank\",\n                        \"value\": 3394\n                    },\n                    {\n                        \"label\": \"Lawson Bank\",\n                        \"value\": 3395\n                    },\n                    {\n                        \"label\": \"Daiwa Next Bank\",\n                        \"value\": 3396\n                    },\n                    {\n                        \"label\": \"Aeon Bank\",\n                        \"value\": 3397\n                    },\n                    {\n                        \"label\": \"Jibun Bank\",\n                        \"value\": 3398\n                    },\n                    {\n                        \"label\": \"Sumishin SBI Net Bank\",\n                        \"value\": 3399\n                    },\n                    {\n                        \"label\": \"Rakuten Bank\",\n                        \"value\": 3400\n                    },\n                    {\n                        \"label\": \"Sony Bank\",\n                        \"value\": 3401\n                    },\n                    {\n                        \"label\": \"Seven Bank\",\n                        \"value\": 3402\n                    },\n                    {\n                        \"label\": \"PayPay Bank (The Japan Net Bank)\",\n                        \"value\": 3403\n                    },\n                    {\n                        \"label\": \"Saitama Resona Bank\",\n                        \"value\": 3404\n                    },\n                    {\n                        \"label\": \"Resona Bank\",\n                        \"value\": 3405\n                    },\n                    {\n                        \"label\": \"Sumitomo Mitsui Banking Corporation\",\n                        \"value\": 3406\n                    },\n                    {\n                        \"label\": \"Mitsubishi UFJ Bank\",\n                        \"value\": 3407\n                    },\n                    {\n                        \"label\": \"Mizuho Bank\",\n                        \"value\": 3408\n                    },\n                    {\n                        \"label\": \"The Oita Mirai Shinkin Bank\",\n                        \"value\": 3540\n                    },\n                    {\n                        \"label\": \"The Hiroshima Shinkin Bank\",\n                        \"value\": 3541\n                    },\n                    {\n                        \"label\": \"Abashiri Shinkin bank\",\n                        \"value\": 3862\n                    },\n                    {\n                        \"label\": \"Abukuma Shinkin bank\",\n                        \"value\": 3863\n                    },\n                    {\n                        \"label\": \"Aichi Doctor's Credit Cooperative\",\n                        \"value\": 3864\n                    },\n                    {\n                        \"label\": \"Aichi Shinkin bank\",\n                        \"value\": 3865\n                    },\n                    {\n                        \"label\": \"Aichi Shogin\",\n                        \"value\": 3866\n                    },\n                    {\n                        \"label\": \"Amagasaki Shinkin Bank\",\n                        \"value\": 3867\n                    },\n                    {\n                        \"label\": \"Kyoto Chuo Shinkin Bank\",\n                        \"value\": 3868\n                    },\n                    {\n                        \"label\": \"Mitsubishi UFJ Trust and Banking Corporation\",\n                        \"value\": 3869\n                    },\n                    {\n                        \"label\": \"SMBC Trust Bank Ltd.\",\n                        \"value\": 3870\n                    },\n                    {\n                        \"label\": \"Tama Shinkin bank\",\n                        \"value\": 3871\n                    },\n                    {\n                        \"label\": \"The Kyoto Shinkin Bank\",\n                        \"value\": 3872\n                    },\n                    {\n                        \"label\": \"Osaka Shinkin Bank\",\n                        \"value\": 3975\n                    },\n                    {\n                        \"label\": \"GMO Aozora Net Bank, Ltd.\",\n                        \"value\": 5437\n                    },\n                    {\n                        \"label\": \"The Nomura Trust and Banking Co.,Ltd.\",\n                        \"value\": 5438\n                    },\n                    {\n                        \"label\": \"Orix Bank Corporation\",\n                        \"value\": 5439\n                    },\n                    {\n                        \"label\": \"The Sumitomo Trust and Banking Company,Ltd.\",\n                        \"value\": 5440\n                    },\n                    {\n                        \"label\": \"Mizuho Trust and Banking Co.,Ltd.\",\n                        \"value\": 5441\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Branch_Number\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    },\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"b453b098-f8d4-4a22-937b-fc6bccb95529","name":"Get Required Fields - JPY Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_jpy_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1a43-or1815iwEsDrZZemFvK+NIdJbIs\""},{"key":"x-execution-time","value":"19047"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 12 May 2026 13:13:42 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"JPY Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_jpy_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Saving\",\n                        \"value\": \"Saving\"\n                    },\n                    {\n                        \"label\": \"Checking\",\n                        \"value\": \"Checking\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"b31b9dd9-764b-436b-bcc3-79c88e112929","name":"Get Required Fields - MXN Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_mxn_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19d1-hyniibB1RjUroZQwayGHHpAi1mU\""},{"key":"x-execution-time","value":"11960"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 11:18:30 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"MXN Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_mxn_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Clabe_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Tax_Id\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"8d062492-8a3d-4134-8ffe-841bbcd2f85a","name":"Get Required Fields - MXN Clabe Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_clabe\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"402"},{"key":"etag","value":"W/\"192-DwJp/M1CpZ4X6ITPcsJOVyFhQNQ\""},{"key":"x-execution-time","value":"14349"},{"key":"date","value":"Wed, 13 May 2026 11:45:34 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"MXN Clabe Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_clabe\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Clabe_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"01b4a5e0-e14d-45a2-b135-2a7bf65a4579","name":"Get Required Fields - SGD Domestic Payments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_sgd_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19e3-qyhEgquZu4q4azdhY8VptzZCVWY\""},{"key":"x-execution-time","value":"13456"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 12:50:08 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"SGD Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_sgd_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Code\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"469ec73c-99e4-4472-9677-978f7092816c","name":"Get Required Fields - SGD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_sgd_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19d9-cR3zOaCtMff5fCT0OuCY11005Jg\""},{"key":"x-execution-time","value":"13544"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 13:09:39 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"SGD Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_sgd_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"a692b127-ee54-4bce-a483-7baedbfb7d9e","name":"Get Required Fields - EUR SEPA Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_sepa\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"198c-EZS0CbvfhK0DYWF024VZS6IgFHU\""},{"key":"x-execution-time","value":"13372"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 13:41:20 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"EUR SEPA Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_sepa\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"2a642b59-08bd-4682-a61a-d5f05054f7b5","name":"Get Required Fields - EUR Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_eur_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1999-YJ3ACkn13977hD8c1PAWkJeNiv0\""},{"key":"x-execution-time","value":"13719"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 13:52:49 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"EUR Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_eur_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Iban\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"0e9fa20f-681f-4a52-bbfc-3921b4718505","name":"Get Required Fields - ZAR Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_zar_domestic_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"533-AMFG8khTEb6yDyiYujtYnmsw/GA\""},{"key":"x-execution-time","value":"14783"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 13 May 2026 13:17:25 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"ZAR Domestic Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_zar_domestic_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank\",\n                \"Required\": false,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Capitec Bank\",\n                        \"value\": 2283\n                    },\n                    {\n                        \"label\": \"Nedbank\",\n                        \"value\": 3051\n                    },\n                    {\n                        \"label\": \"Investec Bank\",\n                        \"value\": 3052\n                    },\n                    {\n                        \"label\": \"Standard Bank\",\n                        \"value\": 3053\n                    },\n                    {\n                        \"label\": \"First National Bank\",\n                        \"value\": 3054\n                    },\n                    {\n                        \"label\": \"ABSA Bank\",\n                        \"value\": 3055\n                    },\n                    {\n                        \"label\": \"Bidvest Bank\",\n                        \"value\": 3056\n                    },\n                    {\n                        \"label\": \"African Bank\",\n                        \"value\": 3057\n                    },\n                    {\n                        \"label\": \"Tyme Bank\",\n                        \"value\": 3058\n                    },\n                    {\n                        \"label\": \"Oldmutual Bank\",\n                        \"value\": 3059\n                    },\n                    {\n                        \"label\": \"Discovery Bank\",\n                        \"value\": 3060\n                    },\n                    {\n                        \"label\": \"Merchantile Bank\",\n                        \"value\": 3165\n                    },\n                    {\n                        \"label\": \"Bank of China\",\n                        \"value\": 3512\n                    },\n                    {\n                        \"label\": \"China Construction Bank\",\n                        \"value\": 3513\n                    },\n                    {\n                        \"label\": \"Finbond Mutual Bank\",\n                        \"value\": 3514\n                    },\n                    {\n                        \"label\": \"UBank Ltd\",\n                        \"value\": 3515\n                    },\n                    {\n                        \"label\": \"Bidvest Bank Alliances (Sasfin)\",\n                        \"value\": 3516\n                    },\n                    {\n                        \"label\": \"CitiBank\",\n                        \"value\": 5435\n                    },\n                    {\n                        \"label\": \"GroBank\",\n                        \"value\": 5436\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Phone\",\n                \"Required\": false,\n                \"Type\": \"Text\"\n            }\n        ]\n    }\n}"},{"id":"de84e1d5-6960-477f-95b4-c49385ba00ec","name":"Get Required Fields - ZAR Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.payment_cross_border_zar_wire_payments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"19d9-45wBiPob0RcDHfPdF7c1JYVxuy8\""},{"key":"x-execution-time","value":"14507"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Thu, 14 May 2026 09:51:15 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"ZAR Wire Payment\",\n                        \"value\": \"BUS_USD_Account.payment_cross_border_zar_wire_payments\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Account_Number\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Swift_Bic\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Routing_Code\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Name\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Beneficiary_Bank_Country\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Albania\",\n                        \"value\": \"AL\"\n                    },\n                    {\n                        \"label\": \"Algeria\",\n                        \"value\": \"DZ\"\n                    },\n                    {\n                        \"label\": \"Andorra\",\n                        \"value\": \"AD\"\n                    },\n                    {\n                        \"label\": \"Angola\",\n                        \"value\": \"AO\"\n                    },\n                    {\n                        \"label\": \"Antigua and Barbuda\",\n                        \"value\": \"AG\"\n                    },\n                    {\n                        \"label\": \"Argentina\",\n                        \"value\": \"AR\"\n                    },\n                    {\n                        \"label\": \"Armenia\",\n                        \"value\": \"AM\"\n                    },\n                    {\n                        \"label\": \"Australia\",\n                        \"value\": \"AU\"\n                    },\n                    {\n                        \"label\": \"Austria\",\n                        \"value\": \"AT\"\n                    },\n                    {\n                        \"label\": \"Azerbaijan\",\n                        \"value\": \"AZ\"\n                    },\n                    {\n                        \"label\": \"Bahamas\",\n                        \"value\": \"BS\"\n                    },\n                    {\n                        \"label\": \"Bahrain\",\n                        \"value\": \"BH\"\n                    },\n                    {\n                        \"label\": \"Bangladesh\",\n                        \"value\": \"BD\"\n                    },\n                    {\n                        \"label\": \"Barbados\",\n                        \"value\": \"BB\"\n                    },\n                    {\n                        \"label\": \"Belgium\",\n                        \"value\": \"BE\"\n                    },\n                    {\n                        \"label\": \"Belize\",\n                        \"value\": \"BZ\"\n                    },\n                    {\n                        \"label\": \"Benin\",\n                        \"value\": \"BJ\"\n                    },\n                    {\n                        \"label\": \"Bhutan\",\n                        \"value\": \"BT\"\n                    },\n                    {\n                        \"label\": \"Bolivia\",\n                        \"value\": \"BO\"\n                    },\n                    {\n                        \"label\": \"Botswana\",\n                        \"value\": \"BW\"\n                    },\n                    {\n                        \"label\": \"Brazil\",\n                        \"value\": \"BR\"\n                    },\n                    {\n                        \"label\": \"Brunei Darussalam\",\n                        \"value\": \"BN\"\n                    },\n                    {\n                        \"label\": \"Bulgaria\",\n                        \"value\": \"BG\"\n                    },\n                    {\n                        \"label\": \"Burkina Faso\",\n                        \"value\": \"BF\"\n                    },\n                    {\n                        \"label\": \"Burundi\",\n                        \"value\": \"BI\"\n                    },\n                    {\n                        \"label\": \"Cabo Verde\",\n                        \"value\": \"CV\"\n                    },\n                    {\n                        \"label\": \"Cambodia\",\n                        \"value\": \"KH\"\n                    },\n                    {\n                        \"label\": \"Cameroon\",\n                        \"value\": \"CM\"\n                    },\n                    {\n                        \"label\": \"Canada\",\n                        \"value\": \"CA\"\n                    },\n                    {\n                        \"label\": \"Chad\",\n                        \"value\": \"TD\"\n                    },\n                    {\n                        \"label\": \"Chile\",\n                        \"value\": \"CL\"\n                    },\n                    {\n                        \"label\": \"China\",\n                        \"value\": \"CN\"\n                    },\n                    {\n                        \"label\": \"Colombia\",\n                        \"value\": \"CO\"\n                    },\n                    {\n                        \"label\": \"Comoros\",\n                        \"value\": \"KM\"\n                    },\n                    {\n                        \"label\": \"Costa Rica\",\n                        \"value\": \"CR\"\n                    },\n                    {\n                        \"label\": \"Cyprus\",\n                        \"value\": \"CY\"\n                    },\n                    {\n                        \"label\": \"Czech Republic\",\n                        \"value\": \"CZ\"\n                    },\n                    {\n                        \"label\": \"Denmark\",\n                        \"value\": \"DK\"\n                    },\n                    {\n                        \"label\": \"Djibouti\",\n                        \"value\": \"DJ\"\n                    },\n                    {\n                        \"label\": \"Dominica\",\n                        \"value\": \"DM\"\n                    },\n                    {\n                        \"label\": \"Dominican Republic\",\n                        \"value\": \"DO\"\n                    },\n                    {\n                        \"label\": \"Ecuador\",\n                        \"value\": \"EC\"\n                    },\n                    {\n                        \"label\": \"Egypt\",\n                        \"value\": \"EG\"\n                    },\n                    {\n                        \"label\": \"El Salvador\",\n                        \"value\": \"SV\"\n                    },\n                    {\n                        \"label\": \"Equatorial Guinea\",\n                        \"value\": \"GQ\"\n                    },\n                    {\n                        \"label\": \"Eritrea\",\n                        \"value\": \"ER\"\n                    },\n                    {\n                        \"label\": \"Estonia\",\n                        \"value\": \"EE\"\n                    },\n                    {\n                        \"label\": \"Fiji\",\n                        \"value\": \"FJ\"\n                    },\n                    {\n                        \"label\": \"Finland\",\n                        \"value\": \"FI\"\n                    },\n                    {\n                        \"label\": \"France\",\n                        \"value\": \"FR\"\n                    },\n                    {\n                        \"label\": \"Gabon\",\n                        \"value\": \"GA\"\n                    },\n                    {\n                        \"label\": \"Gambia\",\n                        \"value\": \"GM\"\n                    },\n                    {\n                        \"label\": \"Georgia\",\n                        \"value\": \"GE\"\n                    },\n                    {\n                        \"label\": \"Germany\",\n                        \"value\": \"DE\"\n                    },\n                    {\n                        \"label\": \"Ghana\",\n                        \"value\": \"GH\"\n                    },\n                    {\n                        \"label\": \"Greece\",\n                        \"value\": \"GR\"\n                    },\n                    {\n                        \"label\": \"Grenada\",\n                        \"value\": \"GD\"\n                    },\n                    {\n                        \"label\": \"Guatemala\",\n                        \"value\": \"GT\"\n                    },\n                    {\n                        \"label\": \"Guinea\",\n                        \"value\": \"GN\"\n                    },\n                    {\n                        \"label\": \"Guinea-Bissau\",\n                        \"value\": \"GW\"\n                    },\n                    {\n                        \"label\": \"Guyana\",\n                        \"value\": \"GY\"\n                    },\n                    {\n                        \"label\": \"Haiti\",\n                        \"value\": \"HT\"\n                    },\n                    {\n                        \"label\": \"Honduras\",\n                        \"value\": \"HN\"\n                    },\n                    {\n                        \"label\": \"Hungary\",\n                        \"value\": \"HU\"\n                    },\n                    {\n                        \"label\": \"Iceland\",\n                        \"value\": \"IS\"\n                    },\n                    {\n                        \"label\": \"India\",\n                        \"value\": \"IN\"\n                    },\n                    {\n                        \"label\": \"Indonesia\",\n                        \"value\": \"ID\"\n                    },\n                    {\n                        \"label\": \"Ireland\",\n                        \"value\": \"IE\"\n                    },\n                    {\n                        \"label\": \"Israel\",\n                        \"value\": \"IL\"\n                    },\n                    {\n                        \"label\": \"Italy\",\n                        \"value\": \"IT\"\n                    },\n                    {\n                        \"label\": \"Jamaica\",\n                        \"value\": \"JM\"\n                    },\n                    {\n                        \"label\": \"Japan\",\n                        \"value\": \"JP\"\n                    },\n                    {\n                        \"label\": \"Jordan\",\n                        \"value\": \"JO\"\n                    },\n                    {\n                        \"label\": \"Kazakhstan\",\n                        \"value\": \"KZ\"\n                    },\n                    {\n                        \"label\": \"Kenya\",\n                        \"value\": \"KE\"\n                    },\n                    {\n                        \"label\": \"Kiribati\",\n                        \"value\": \"KI\"\n                    },\n                    {\n                        \"label\": \"Kuwait\",\n                        \"value\": \"KW\"\n                    },\n                    {\n                        \"label\": \"Kyrgyzstan\",\n                        \"value\": \"KG\"\n                    },\n                    {\n                        \"label\": \"Laos\",\n                        \"value\": \"LA\"\n                    },\n                    {\n                        \"label\": \"Latvia\",\n                        \"value\": \"LV\"\n                    },\n                    {\n                        \"label\": \"Lesotho\",\n                        \"value\": \"LS\"\n                    },\n                    {\n                        \"label\": \"Liberia\",\n                        \"value\": \"LR\"\n                    },\n                    {\n                        \"label\": \"Liechtenstein\",\n                        \"value\": \"LI\"\n                    },\n                    {\n                        \"label\": \"Lithuania\",\n                        \"value\": \"LT\"\n                    },\n                    {\n                        \"label\": \"Luxembourg\",\n                        \"value\": \"LU\"\n                    },\n                    {\n                        \"label\": \"Madagascar\",\n                        \"value\": \"MG\"\n                    },\n                    {\n                        \"label\": \"Malawi\",\n                        \"value\": \"MW\"\n                    },\n                    {\n                        \"label\": \"Malaysia\",\n                        \"value\": \"MY\"\n                    },\n                    {\n                        \"label\": \"Maldives\",\n                        \"value\": \"MV\"\n                    },\n                    {\n                        \"label\": \"Malta\",\n                        \"value\": \"MT\"\n                    },\n                    {\n                        \"label\": \"Marshall Islands\",\n                        \"value\": \"MH\"\n                    },\n                    {\n                        \"label\": \"Mauritania\",\n                        \"value\": \"MR\"\n                    },\n                    {\n                        \"label\": \"Mauritius\",\n                        \"value\": \"MU\"\n                    },\n                    {\n                        \"label\": \"Mexico\",\n                        \"value\": \"MX\"\n                    },\n                    {\n                        \"label\": \"Micronesia\",\n                        \"value\": \"FM\"\n                    },\n                    {\n                        \"label\": \"Moldova\",\n                        \"value\": \"MD\"\n                    },\n                    {\n                        \"label\": \"Monaco\",\n                        \"value\": \"MC\"\n                    },\n                    {\n                        \"label\": \"Mongolia\",\n                        \"value\": \"MN\"\n                    },\n                    {\n                        \"label\": \"Morocco\",\n                        \"value\": \"MA\"\n                    },\n                    {\n                        \"label\": \"Mozambique\",\n                        \"value\": \"MZ\"\n                    },\n                    {\n                        \"label\": \"Namibia\",\n                        \"value\": \"NA\"\n                    },\n                    {\n                        \"label\": \"Nauru\",\n                        \"value\": \"NR\"\n                    },\n                    {\n                        \"label\": \"Nepal\",\n                        \"value\": \"NP\"\n                    },\n                    {\n                        \"label\": \"Netherlands\",\n                        \"value\": \"NL\"\n                    },\n                    {\n                        \"label\": \"New Zealand\",\n                        \"value\": \"NZ\"\n                    },\n                    {\n                        \"label\": \"Niger\",\n                        \"value\": \"NE\"\n                    },\n                    {\n                        \"label\": \"Nigeria\",\n                        \"value\": \"NG\"\n                    },\n                    {\n                        \"label\": \"Norway\",\n                        \"value\": \"NO\"\n                    },\n                    {\n                        \"label\": \"Oman\",\n                        \"value\": \"OM\"\n                    },\n                    {\n                        \"label\": \"Pakistan\",\n                        \"value\": \"PK\"\n                    },\n                    {\n                        \"label\": \"Palau\",\n                        \"value\": \"PW\"\n                    },\n                    {\n                        \"label\": \"Palestine\",\n                        \"value\": \"PS\"\n                    },\n                    {\n                        \"label\": \"Panama\",\n                        \"value\": \"PA\"\n                    },\n                    {\n                        \"label\": \"Papua New Guinea\",\n                        \"value\": \"PG\"\n                    },\n                    {\n                        \"label\": \"Paraguay\",\n                        \"value\": \"PY\"\n                    },\n                    {\n                        \"label\": \"Peru\",\n                        \"value\": \"PE\"\n                    },\n                    {\n                        \"label\": \"Philippines\",\n                        \"value\": \"PH\"\n                    },\n                    {\n                        \"label\": \"Poland\",\n                        \"value\": \"PL\"\n                    },\n                    {\n                        \"label\": \"Portugal\",\n                        \"value\": \"PT\"\n                    },\n                    {\n                        \"label\": \"Qatar\",\n                        \"value\": \"QA\"\n                    },\n                    {\n                        \"label\": \"Romania\",\n                        \"value\": \"RO\"\n                    },\n                    {\n                        \"label\": \"Rwanda\",\n                        \"value\": \"RW\"\n                    },\n                    {\n                        \"label\": \"Saint Kitts and Nevis\",\n                        \"value\": \"KN\"\n                    },\n                    {\n                        \"label\": \"Saint Lucia\",\n                        \"value\": \"LC\"\n                    },\n                    {\n                        \"label\": \"Saint Vincent and the Grenadines\",\n                        \"value\": \"VC\"\n                    },\n                    {\n                        \"label\": \"Samoa\",\n                        \"value\": \"WS\"\n                    },\n                    {\n                        \"label\": \"San Marino\",\n                        \"value\": \"SM\"\n                    },\n                    {\n                        \"label\": \"Sao Tome and Principe\",\n                        \"value\": \"ST\"\n                    },\n                    {\n                        \"label\": \"Saudi Arabia\",\n                        \"value\": \"SA\"\n                    },\n                    {\n                        \"label\": \"Senegal\",\n                        \"value\": \"SN\"\n                    },\n                    {\n                        \"label\": \"Seychelles\",\n                        \"value\": \"SC\"\n                    },\n                    {\n                        \"label\": \"Sierra Leone\",\n                        \"value\": \"SL\"\n                    },\n                    {\n                        \"label\": \"Singapore\",\n                        \"value\": \"SG\"\n                    },\n                    {\n                        \"label\": \"Slovakia\",\n                        \"value\": \"SK\"\n                    },\n                    {\n                        \"label\": \"Solomon Islands\",\n                        \"value\": \"SB\"\n                    },\n                    {\n                        \"label\": \"South Africa\",\n                        \"value\": \"ZA\"\n                    },\n                    {\n                        \"label\": \"South Korea\",\n                        \"value\": \"KR\"\n                    },\n                    {\n                        \"label\": \"Spain\",\n                        \"value\": \"ES\"\n                    },\n                    {\n                        \"label\": \"Sri Lanka\",\n                        \"value\": \"LK\"\n                    },\n                    {\n                        \"label\": \"Suriname\",\n                        \"value\": \"SR\"\n                    },\n                    {\n                        \"label\": \"Sweden\",\n                        \"value\": \"SE\"\n                    },\n                    {\n                        \"label\": \"Switzerland\",\n                        \"value\": \"CH\"\n                    },\n                    {\n                        \"label\": \"Tajikistan\",\n                        \"value\": \"TJ\"\n                    },\n                    {\n                        \"label\": \"Tanzania\",\n                        \"value\": \"TZ\"\n                    },\n                    {\n                        \"label\": \"Thailand\",\n                        \"value\": \"TH\"\n                    },\n                    {\n                        \"label\": \"Timor-Leste\",\n                        \"value\": \"TL\"\n                    },\n                    {\n                        \"label\": \"Togo\",\n                        \"value\": \"TG\"\n                    },\n                    {\n                        \"label\": \"Tonga\",\n                        \"value\": \"TO\"\n                    },\n                    {\n                        \"label\": \"Trinidad and Tobago\",\n                        \"value\": \"TT\"\n                    },\n                    {\n                        \"label\": \"Tunisia\",\n                        \"value\": \"TN\"\n                    },\n                    {\n                        \"label\": \"Turkey\",\n                        \"value\": \"TR\"\n                    },\n                    {\n                        \"label\": \"Turkmenistan\",\n                        \"value\": \"TM\"\n                    },\n                    {\n                        \"label\": \"Tuvalu\",\n                        \"value\": \"TV\"\n                    },\n                    {\n                        \"label\": \"Uganda\",\n                        \"value\": \"UG\"\n                    },\n                    {\n                        \"label\": \"United Arab Emirates\",\n                        \"value\": \"AE\"\n                    },\n                    {\n                        \"label\": \"United Kingdom\",\n                        \"value\": \"GB\"\n                    },\n                    {\n                        \"label\": \"United States of America\",\n                        \"value\": \"US\"\n                    },\n                    {\n                        \"label\": \"Uruguay\",\n                        \"value\": \"UY\"\n                    },\n                    {\n                        \"label\": \"Uzbekistan\",\n                        \"value\": \"UZ\"\n                    },\n                    {\n                        \"label\": \"Vanuatu\",\n                        \"value\": \"VU\"\n                    },\n                    {\n                        \"label\": \"Vietnam\",\n                        \"value\": \"VN\"\n                    },\n                    {\n                        \"label\": \"Zambia\",\n                        \"value\": \"ZM\"\n                    },\n                    {\n                        \"label\": \"Bermuda\",\n                        \"value\": \"BM\"\n                    },\n                    {\n                        \"label\": \"Cayman Islands\",\n                        \"value\": \"KY\"\n                    },\n                    {\n                        \"label\": \"Gibraltar\",\n                        \"value\": \"GI\"\n                    },\n                    {\n                        \"label\": \"Hong Kong\",\n                        \"value\": \"HK\"\n                    },\n                    {\n                        \"label\": \"Taiwan\",\n                        \"value\": \"TW\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (British)\",\n                        \"value\": \"VG\"\n                    },\n                    {\n                        \"label\": \"Virgin Islands (U.S.)\",\n                        \"value\": \"VI\"\n                    },\n                    {\n                        \"label\": \"Isle Of Man\",\n                        \"value\": \"IM\"\n                    },\n                    {\n                        \"label\": \"Cook Islands\",\n                        \"value\": \"CK\"\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"24ae393e-46cb-4d8b-ad95-2b0161d68727","name":"Get Required Fields - Stablecoin Withdraw","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PaymentType\": \"BUS_USD_Account.Stablecoin_Withdraw\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/get-required-fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"content-length","value":"581"},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-security-policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"245-vtCfvc25cerEsla75ETCQ5qdvzk\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"aes6j58lrf2p"},{"key":"origin-agent-cluster","value":"?1"},{"key":"permissions-policy","value":"geolocation=(self), microphone=(), camera=()"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"9a436b20289b5f53ea41cdd21d721134;o=1"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"240"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Fri, 22 May 2026 12:57:43 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100020-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1779454663.445730,VS0,VE289"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400, h3=\":443\"; ma=2592000, h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"7a0aec9a-2494-4542-92ac-7d8d0d705c8e"},{"key":"via","value":"1.1 google, 1.1 google"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Fields\": [\n            {\n                \"Name\": \"Nickname\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"BeneficiaryId\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Payment_Type\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"Stablecoin Payment\",\n                        \"value\": \"BUS_USD_Account.Stablecoin_Withdraw\"\n                    }\n                ]\n            },\n            {\n                \"Name\": \"Address\",\n                \"Required\": true,\n                \"Type\": \"Text\"\n            },\n            {\n                \"Name\": \"Blockchain\",\n                \"Required\": true,\n                \"Type\": \"SingleSelection\",\n                \"PossibleValues\": [\n                    {\n                        \"label\": \"ETH (ERC20)\",\n                        \"value\": \"ETH\"\n                    },\n                    {\n                        \"label\": \"MATIC\",\n                        \"value\": \"MATIC\"\n                    },\n                    {\n                        \"label\": \"SOLANA\",\n                        \"value\": \"SOLANA\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"782e9f97-1ec2-4a63-9ccd-d2347d6f37a9"},{"name":"Create Payment Instrument","event":[{"listen":"test","script":{"id":"9c002ff4-bdf6-4e93-a484-3bfdb7d88cf8","exec":["var jsonData = pm.response.json();","if(!!jsonData?.ResponseData?.PaymentInstrumentID){","  pm.environment.set(\"PaymentInstrumentID\", jsonData.ResponseData.PaymentInstrumentID);","}"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a05bc58c-29ce-4f20-8e8d-ed7600497e0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_sepa\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"EUR SEPA Beneficiary\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"DE89370400440532013000\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"DEUTDEFF\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Deutsche Bank\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"DE\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create","description":"<p>This endpoint is used to create a payment instrument associated with a beneficiary.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><em>fields</em></td>\n<td>Array&lt;<a href=\"#fieldandvalue\">Field And Value</a>&gt;</td>\n<td>true</td>\n<td>--</td>\n<td>fields must be from get required fields endpoint</td>\n</tr>\n<tr>\n<td>Additional_Info</td>\n<td>{ Name: Value }</td>\n<td>false</td>\n<td>--</td>\n<td>This field is only required when the system is <strong>unable to resolve bank details from the provided Routing Number or SWIFT Code</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Additional Info</p>\n<p>Additional_Info is an <strong>optional field</strong>. However, it becomes <strong>required if the bank details cannot be automatically retrieved using the provided Routing Number or SWIFT Code</strong>.</p>\n<p>In such cases, you must include the bank details inside the <code>additional_info</code> object.</p>\n<h4 id=\"required-fields-in-additional_info\">Required Fields in Additional_Info</h4>\n<ul>\n<li><p><code>Bank_Name</code></p>\n</li>\n<li><p><code>Bank_Address</code></p>\n</li>\n<li><p><code>Bank_City</code></p>\n</li>\n<li><p><code>Bank_State</code></p>\n</li>\n<li><p><code>Bank_Postal_Code</code></p>\n</li>\n<li><p><code>Bank_Country</code></p>\n</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<p><code>{ \"additional_info\": { \"Bank_Name\": \"Example Bank\", \"Bank_Address\": \"123 Main Street\", \"Bank_City\": \"New York\", \"Bank_State\": \"NY\", \"Bank_Postal_Code\": \"10001\", \"Bank_Country\": \"US\" } }</code></p>\n<p>Note: Use Get Bank Details endpoint to fetch beneficiary bank details using routing number.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>{  <br />PaymentInstrumentId: string  <br />}</td>\n<td>--</td>\n<td>--</td>\n<td>Unique ID of the payment instrument created</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390","id":"863636f7-0488-42ae-834c-dc60b97a8390","name":"Payment Instrument","type":"folder"}},"urlObject":{"path":["v2","payment-instrument","create"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"f6fe9b1b-5889-453f-8067-94eb82baf4d3","name":"Create Payment Instrument [V2] - Domestic ACH","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.Business_ACH\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"Domestic-ACH-Instrument\"\n    },\n    {\n        \"field\": \"Account_Number\",\n        \"value\": \"8787627\"\n    },\n    {\n        \"field\": \"Routing_Number\",\n        \"value\": \"026009593\"\n    },\n    {\n        \"field\": \"Account_Type\",\n        \"value\": \"Saving\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"109"},{"key":"etag","value":"W/\"6d-KARiBWzXNxEVRH4XBb+VeRom004\""},{"key":"x-execution-time","value":"9925"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Sun, 29 Jan 2023 14:08:16 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"2214536599560433494\"\n    }\n}"},{"id":"06849ce8-9118-457b-8d03-092d563d8040","name":"Create Payment Instrument [V2] - Domestic Wire","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.Domestic_Wire_BUS\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"Domestic-Wire-Instrument\"\n    },\n    {\n        \"field\": \"Account_Number\",\n        \"value\": \"8787627\"\n    },\n    {\n        \"field\": \"Routing_Number\",\n        \"value\": \"026009593\"\n    },\n    {\n        \"field\": \"Account_Type\",\n        \"value\": \"Saving\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"109"},{"key":"etag","value":"W/\"6d-0+cfz2rTuItUfWXlYODMrMc4EA0\""},{"key":"x-execution-time","value":"7955"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Sun, 29 Jan 2023 14:09:02 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"2205529400305692502\"\n    }\n}"},{"id":"adccf8c5-eabe-4f55-98e8-769bef233bb1","name":"Create Payment Instrument [V2] - International Wire","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"Domestic-Wire-Instrument\"\n    },\n    {\n        \"field\": \"Account_Number\",\n        \"value\": \"8787627\"\n    },\n    {\n        \"field\": \"Swift_Bic\",\n        \"value\": \"BOFAUS3NXXX\"\n    },\n    {\n        \"field\": \"Account_Type\",\n        \"value\": \"Saving\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"109"},{"key":"etag","value":"W/\"6d-/Q5dpsfLv+gMfXgJOGKfRE++KFU\""},{"key":"x-execution-time","value":"8628"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Sun, 29 Jan 2023 14:10:11 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"2232550998069915478\"\n    }\n}"},{"id":"c6d61ede-6832-4e1b-9fd4-3183ff8f051a","name":"Additional Info is provided","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.Business_ACH\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"BTC-Instrument\"\n    },\n    {\n        \"field\": \"Account_Number\",\n        \"value\": \"7895513557\"\n    },\n    {\n        \"field\": \"Account_Type\",\n        \"value\": \"Saving\"\n    },\n    {\n        \"field\": \"Routing_Number\",\n        \"value\": \"123271978\"\n    },\n    {\n        \"field\": \"Additional_Info\",\n        \"value\": {\n            \"Bank_Country\": \"Belgium\",\n            \"Bank_State\": \"Antwerp\"\n        }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-iQIOZWpVrRZlyHi7sa1OF8fWGK0\""},{"key":"x-execution-time","value":"7007"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Wed, 16 Aug 2023 10:24:22 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-1645048281096081576\"\n    }\n}"},{"id":"4e599d38-dba0-49a8-8c35-0978bc60c649","name":"Create Payment Instrument [V2]- USDC Stablecoin","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.Stablecoin_Withdraw\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"Stablecoin instrument\"\n    },\n    {\n        \"field\": \"Address\",\n        \"value\": \"0x1A493D7C47203940c31B6F7857258De1F7649070\"\n    },\n    {\n        \"field\": \"Asset\",\n        \"value\": \"USDC\"\n    },\n    {\n        \"field\": \"Blockchain\",\n        \"value\": \"ETH\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Length","value":"326"},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"146-q3ci3wEl4G7Em/nbdIJ1rotsS10\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"yb9jnsct3e23"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"fdf0d4414fe8f8fb9461ca8c6715367c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"2542"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Wed, 01 Apr 2026 13:16:58 GMT"},{"key":"x-served-by","value":"cache-chi-kigq8000045-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1775049416.994266,VS0,VE2605"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"alt-svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"eed3cb2d-8f4b-4bbe-a41c-84ad3f1afac7"},{"key":"via","value":"1.1 google, 1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-7306073012700795124\",\n        \"Payment_Type\": \"BUS_USD_Account.Stablecoin_Withdraw\",\n        \"BeneficiaryId\": \"-8202289338547523828\",\n        \"Nickname\": \"Stablecoin instrument\",\n        \"Address\": \"0x1A493D7C47203940c31B6F7857258De1F7649070\",\n        \"Asset\": \"USDC\",\n        \"Blockchain\": \"ETH\"\n    }\n}"},{"id":"69d723dc-b5f8-489c-810f-b1463bed0221","name":"Create Payment Instrument [V2] - PYUSD Stablecoin","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.Stablecoin_Withdraw\"\n    },\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"solana Instrument\"\n    },\n    {\n        \"field\": \"Address\",\n        \"value\": \"GNoYNXQ66dnTqcR39nKi2QJSizjxvHHAy9GSbNszQuuq\"\n    },\n    {\n        \"field\": \"Asset\",\n        \"value\": \"PYUSD\"\n    },\n    {\n        \"field\": \"Blockchain\",\n        \"value\": \"SOLANA\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Length","value":"328"},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"148-SxCQGXidheLfF7P0I6Esvv3IgDk\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"czqgizebiw80"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"2106da41f9dbd5fdf333182f61d2bbf3"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"2591"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Thu, 02 Apr 2026 13:38:18 GMT"},{"key":"x-served-by","value":"cache-chi-klot8100179-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1775137096.914000,VS0,VE2657"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"alt-svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"764cfef9-74d7-41c3-9b7a-03e065f40163"},{"key":"via","value":"1.1 google, 1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-7062878632822788340\",\n        \"Payment_Type\": \"BUS_USD_Account.Stablecoin_Withdraw\",\n        \"BeneficiaryId\": \"-3946387690682405109\",\n        \"Nickname\": \"solana Instrument\",\n        \"Address\": \"GNoYNXQ66dnTqcR39nKi2QJSizjxvHHAy9GSbNszQuuq\",\n        \"Asset\": \"PYUSD\",\n        \"Blockchain\": \"SOLANA\"\n    }\n}"},{"id":"7b96e735-aa77-4318-a7b8-9320d3bfb338","name":"Create Payment Instrument - AED Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_aed_domestic_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"AED Domestic Beneficiary\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank\",\n    \"value\": \"4609\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"AE070331234567890123456\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Phone\",\n    \"value\": \"+971501234567\"\n  },\n  {\n    \"field\": \"Beneficiary_Identity_Type\",\n    \"value\": \"PASSPORT\"\n  },\n  {\n    \"field\": \"Beneficiary_Identity_Number\",\n    \"value\": \"A12345678\"\n  },\n  {\n    \"field\": \"Beneficiary_Identity_Expiration_Date\",\n    \"value\": \"2030-12-31\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-qzfg8jWYYEaOW3BqJJyJj2APoj4\""},{"key":"x-execution-time","value":"19654"},{"key":"date","value":"Thu, 14 May 2026 09:29:11 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8242821735193858086\"\n    }\n}"},{"id":"fa136c94-3abd-4f0b-9604-f7a68cd62c72","name":"Create Payment Instrument - AED Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_aed_wire_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"AED Wire Beneficiary\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"AE070331234567890123456\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"NBSHAEAS\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"National Bank of Sharjah\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"AE\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-e5m1JoRb1VznJ8ZFU5FcQe5Bug4\""},{"key":"x-execution-time","value":"21081"},{"key":"date","value":"Thu, 14 May 2026 09:33:38 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8215800137429635110\"\n    }\n}"},{"id":"7235814a-0659-4e1a-9a48-a156ddb6ab84","name":"Create Payment Instrument - CAD Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_cad_domestic_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"CAD Domestic Beneficiary\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank\",\n    \"value\": \"4802\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Institution_Number\",\n    \"value\": \"003\"\n  },\n  {\n    \"field\": \"Transit_Number\",\n    \"value\": \"12345\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Royal Bank of Canada\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_State\",\n    \"value\": \"ON\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"CA\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-oaKM0RFFXiqCmoKd94hTBeWVfpQ\""},{"key":"x-execution-time","value":"15961"},{"key":"date","value":"Thu, 14 May 2026 09:37:17 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8224807336684376102\"\n    }\n}"},{"id":"f0641de2-e38e-4136-ad94-99faa9969025","name":"Create Payment Instrument - CAD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_cad_wire_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"CAD Wire Beneficiary\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"ROYCCAT2\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Royal Bank of Canada\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_State\",\n    \"value\": \"ON\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"CA\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiIyZGE4ZGE1MjA1MWIyYTRkMTBhZjQ3MTQ5ZWExOWZmZGUxNmZhOTcyOTVlYjZkNTBjODM1N2M4NTZmM2FkMzdmeHV2MS8vdVJ4SzhoaVBkN0s1cGJVNVpDRjN0YnFpSy9EbmMzeXRKTms3MXU0cTAzQWtMS2FKMzNxWUNCVGNvMk1sNXpkYXQ2UU96N1J2WTFhNUZBUnhYWkZwUWRxa09DYjlmdkpHTXZQbmtoWmU3a1c4bnVBMEYvNmlZeURydGxzamtPZEIyREdSbUNsYyswZHJEYzRoSnNpOEEvL3FPczJBZ2tBRzZlSmRjWVRERVBwM21kMWNmN0N1S1ZtNHk1TC9aS204ajZMb0ZiUStMdDN6VFAray9kYk5PeUQrZzdOK3RTVW40UTFENElDTzEzZkljeGowbzdIaHlKN3A0eWg0OHJvRU1VTm5ydEQ3Y0kyS0hFUHFocmZuRzNNMXdxa1FwTjVWUkZPakk9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg3NTE1NjcsImV4cCI6MTc3ODc1MjQ2N30.AZ9esAtthRSIAf9RhuzP0huDAipBfdgk-lt4M14HqLQ"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-IqBhw7aNekxeCyidt7ZGT4Kwvj8\""},{"key":"x-execution-time","value":"22348"},{"key":"date","value":"Thu, 14 May 2026 09:39:45 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8341900926996008998\"\n    }\n}"},{"id":"fb882095-e0fd-453d-8b12-dcbc73f5cd94","name":"Create Payment Instrument - GBP Faster Payments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_faster_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"GBP Faster 2\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"33232323\"\n  },\n  {\n    \"field\": \"Sort_Code\",\n    \"value\": \"123456\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Barclays Bank UK\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"GB\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-CGqWZT+Wj+AirD8my6gFPHiKh2Y\""},{"key":"x-execution-time","value":"19287"},{"key":"date","value":"Fri, 08 May 2026 13:46:00 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8377929724014972966\"\n    }\n}"},{"id":"d7416088-ddf4-4fe6-a969-17e5643862ab","name":"Create Payment Instrument - GBP Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_gbp_wire_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"GBP Wire 2\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"GB29NWBK60161331926819\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"BARCGB22\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Barclays Bank UK\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"GB\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-qDieluJy/eygg5DadWJwaDNc/uQ\""},{"key":"x-execution-time","value":"21364"},{"key":"date","value":"Fri, 08 May 2026 13:53:22 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8386936923269713958\"\n    }\n}"},{"id":"dc4045ac-df45-4780-b4bc-9bb4b26a1f88","name":"Create Payment Instrument - BRL  Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_brl_domestic_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"BRL Domestic Primary\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank\",\n    \"value\": \"751\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"12345678\"\n  },\n  {\n    \"field\": \"Branch_Number\",\n    \"value\": \"1234\"\n  },\n  {\n    \"field\": \"Account_Type\",\n    \"value\": \"Checking\"\n  },\n  {\n    \"field\": \"Tax_Id\",\n    \"value\": \"12345678901\"\n  },\n  {\n    \"field\": \"Beneficiary_Identity_Type\",\n    \"value\": \"NATIONAL_ID\"\n  },\n  {\n    \"field\": \"Beneficiary_Identity_Number\",\n    \"value\": \"BR1234567\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-w1BUOiHabRh7BczCZosaxsv0usQ\""},{"key":"x-execution-time","value":"18835"},{"key":"date","value":"Tue, 12 May 2026 12:33:44 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8495023314326605862\"\n    }\n}"},{"id":"f80ea390-14bb-44e3-b5b9-898a30a9c421","name":"Create Payment Instrument - HKD Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_hkd_domestic_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"HKD Domestic Primary\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank\",\n    \"value\": \"2735\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Routing_Code\",\n    \"value\": \"004\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"The Hongkong and Shanghai Banking Corporation Limited\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"HK\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Phone\",\n    \"value\": \"+85212345678\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiIwM2QzNmJiYmE2NjQ2OWNiNjRkY2IyNTc0ZDZlYzViOGExMzM2YWRjYmFhNDQ0N2NmODI4NWQxMmEzODFlN2ViK1p3cFV6UDl1YkZ0QkxxZnFKV2xvbFlucmFwQW1zbHhWWW9XNlkwK3hyS0ZENHRSakpiN0w1cXoyS2haWGxleWY4dnlwODlyNFdHZ0FraUx0NkJmTDFuZWJUQ21VWXNISmJqWGdMVjZMWnlLam9GTlNwemlHRjcxSTRPV3JLZ1BRODJKb1hpNTRKdytSTTE5R29iRmRjd2prcXJOUFRmS2tTbkU1OUNReWlIYnlxb2VaU3BLbm5qMUhCS2NSWEZOb1FkTWNTeGEyOWRIT2I0MWw5bkdOelBZQ2todkxHQXhacmFGakliUFlBTk9naVphQ05ESTNhS1NZRmN3djdXOGJMZ25EQkk0cXN6eWl5MENCV2JCRXpzOWlxeEJ4d2JWZkd3WVZCaTRlY3M9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg1ODk4NzYsImV4cCI6MTc3ODU5MDc3Nn0.KsS2p2XP9rl7Sn680-VJl0TgNvJ0ZxO5W8nBqg1_wa4"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-tvTfP5fSL2wH4qAJ5QcJzoP9lBs\""},{"key":"x-execution-time","value":"19524"},{"key":"date","value":"Tue, 12 May 2026 12:44:52 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8468001716562382886\"\n    }\n}"},{"id":"d6150f3d-6db6-4286-a3a2-2e268310d1d3","name":"Create Payment Instrument - HKD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_hkd_wire_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"HKD Wire Primary\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"HSBCHKHHHKH\"\n  },\n  {\n    \"field\": \"Routing_Code\",\n    \"value\": \"004\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"The Hongkong and Shanghai Banking Corporation Limited\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"HK\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-0eLWTaHf/+orlHF2vxOCAEyQMag\""},{"key":"x-execution-time","value":"15368"},{"key":"date","value":"Tue, 12 May 2026 12:50:03 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8477008915817123878\"\n    }\n}"},{"id":"aa1594a3-b7e5-4be4-96bb-b84a4d4f1c3b","name":"Create Payment Instrument - JPY Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_jpy_wire_payments\"\n  },\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"JPY Wire Primary\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567\"\n  },\n  {\n    \"field\": \"Account_Type\",\n    \"value\": \"Checking\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"BOTKJPJT\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"MUFG Bank, Ltd.\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"JP\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiI4ZWFlZTY4ODQxYTlhZDFhZWEzMGUyM2NkZjQ1YTgzNjA0MjMzY2MxM2UzMTk3NzQwNjc3ZWY4ZjFlNWNjOGUwc0J5dFV6YXJwc2lFTE5NWEVFWkVvQ01uVGVMTTRyVENZaGtTNUVOUWNGR3JLTUQwQUtycEpPQWV0Yklka3dVMUpOcGsvUVZkK05jTytoT2hwYW1jNWtVajhXQlVYOTNyNUU2Q3F5UWFpcHkzOFAyWFNHSnhGVUxWUGVjaWc4ck94d2tmRGw4QzE2T3VYNWdYRzFPK3FCYWFRTmYwaksxbWV1ZzZMU0VUWjVrUC9mdi9PN3h1clc1NDJvNVliMzBHa2pIbm5QVGkrMzJmSnd5NTFoVGNTSUxGcDFCWENSaG5GVXh4TVJVdWpLWXJ0dmI2QkM1Zk53MjFrRVpCaThwZE8wNlhPbUFGSWhNVVQ0ZzBMTEhjK3Y4UXJ0djllSFF4czdpdm53eHZnQWM9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg1OTE4MDIsImV4cCI6MTc3ODU5MjcwMn0.eE0m7sPCxeIGoC1P0C34LTYHMJFpN2eYkOfqs93Da4c"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-VWIA1yT2wVKkThqsq1wVVyo0WTo\""},{"key":"x-execution-time","value":"19042"},{"key":"date","value":"Tue, 12 May 2026 13:16:57 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8449987318052900902\"\n    }\n}"},{"id":"d9fe43b7-3d6d-4527-abf4-aff43613295a","name":"Create Payment Instrument - MXN Clable Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.payment_cross_border_clabe\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"MXN Wire Beneficiary\"\n    },\n    {\n        \"field\": \"Clabe_Number\",\n        \"value\": \"032180000118359719\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-sdJNrZDNOGVHOlT6KdubsF4BPUo\""},{"key":"x-execution-time","value":"17543"},{"key":"date","value":"Wed, 13 May 2026 11:53:45 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8431972919543418918\"\n    }\n}"},{"id":"3a9726e3-1cce-426e-aab6-aa2bbe7de2f8","name":"Create Payment Instrument - MXN Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.payment_cross_border_mxn_wire_payments\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"MXN Wire Beneficiary\"\n    },\n    {\n        \"field\": \"Clabe_Number\",\n        \"value\": \"032180000118359719\"\n    },\n    {\n        \"field\": \"Swift_Bic\",\n        \"value\": \"BNMXMXMM\"\n    },\n    {\n        \"field\": \"Tax_Id\",\n        \"value\": \"XAXX010101000\"\n    },\n    {\n        \"field\": \"Beneficiary_Bank_Name\",\n        \"value\": \"BBVA MEXICO\"\n    },\n    {\n        \"field\": \"Beneficiary_Bank_Country\",\n        \"value\": \"MX\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-0Uso1kZHgCMcCodDQToN88opXxI\""},{"key":"x-execution-time","value":"25875"},{"key":"date","value":"Wed, 13 May 2026 11:22:51 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8458994517307641894\"\n    }\n}"},{"id":"50397152-67a1-405b-a8ce-5a9a70ac00af","name":"Create Payment Instrument - SGD Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"BeneficiaryId\",\n        \"value\": \"{{beneficiaryIDV2}}\"\n    },\n    {\n        \"field\": \"Payment_Type\",\n        \"value\": \"BUS_USD_Account.payment_cross_border_sgd_domestic_payments\"\n    },\n    {\n        \"field\": \"Nickname\",\n        \"value\": \"SGD Domestic Beneficiary\"\n    },\n    {\n        \"field\": \"Account_Number\",\n        \"value\": \"123456789012\"\n    },\n    {\n        \"field\": \"Swift_Bic\",\n        \"value\": \"DBSSSGSG\"\n    },\n    {\n        \"field\": \"Routing_Code\",\n        \"value\": \"7171\"\n    },\n    {\n        \"field\": \"Beneficiary_Bank_Name\",\n        \"value\": \"DBS BANK LTD\"\n    },\n    {\n        \"field\": \"Beneficiary_Bank_Country\",\n        \"value\": \"SG\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-DQGtxcVA71f7iRTqbTCu+AVVSBY\""},{"key":"x-execution-time","value":"16075"},{"key":"date","value":"Wed, 13 May 2026 12:54:34 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8269843332958081062\"\n    }\n}"},{"id":"213b12f6-94b1-425f-b30e-29d36c1c0ed3","name":"Create Payment Instrument - SGD Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_sgd_wire_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"SGD Wire Beneficiary\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"123456789012\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"DBSSSGSG\"\n  },\n  {\n    \"field\": \"Routing_Code\",\n    \"value\": \"7171\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"DBS BANK LTD\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"SG\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-15su29YnUXNo6gv8n/UxPU6GPpE\""},{"key":"x-execution-time","value":"15353"},{"key":"date","value":"Wed, 13 May 2026 13:12:33 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8278850532212822054\"\n    }\n}"},{"id":"f7a42702-bbcf-4790-89d2-bdd413952c1a","name":"Create Payment Instrument - EUR SEPA Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_sepa\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"EUR SEPA Beneficiary\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"DE89370400440532013000\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"DEUTDEFF\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Deutsche Bank\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"DE\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-9FJNHXpzEg2NfQYhF+bao9LvNao\""},{"key":"x-execution-time","value":"18296"},{"key":"date","value":"Wed, 13 May 2026 13:43:57 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8260836133703340070\"\n    }\n}"},{"id":"f001fc27-a1ec-4760-95bb-b9b4bea7351e","name":"Create Payment Instrument - EUR Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_eur_wire_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"EUR Wire Beneficiary\"\n  },\n  {\n    \"field\": \"Iban\",\n    \"value\": \"DE89370400440576013000\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"DEUTDEFF\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Deutsche Bank\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"DE\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-389+I6uJDyX0V+ItRg5GmpJH87E\""},{"key":"x-execution-time","value":"15602"},{"key":"date","value":"Wed, 13 May 2026 14:02:38 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8233814535939117094\"\n    }\n}"},{"id":"bde8079b-0237-44f2-8128-8f2f1fa83120","name":"Create Payment Instrument - ZAR Domestic Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n     \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_zar_domestic_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"ZAR Domestic Beneficiary\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank\",\n    \"value\": \"3053\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Phone\",\n    \"value\": \"+27115551234\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"172"},{"key":"etag","value":"W/\"ac-EzI7wkGDyuTNWnGNSaPfo+tH0m4\""},{"key":"x-execution-time","value":"17309"},{"key":"date","value":"Wed, 13 May 2026 13:35:49 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 400,\n    \"ResponseMessage\": \"BadRequest\",\n    \"RequestID\": \"9ce14890-4ed0-11f1-b7d8-e7f8e5d4f3ef\",\n    \"ResponseErrors\": [\n        \"The account you are trying to add already exists\"\n    ]\n}"},{"id":"4676b178-be94-4688-b261-fb09003ba592","name":"Create Payment Instrument - ZAR Wire Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"field\": \"BeneficiaryId\",\n    \"value\": \"{{beneficiaryIDV2}}\"\n  },\n  {\n    \"field\": \"Payment_Type\",\n    \"value\": \"BUS_USD_Account.payment_cross_border_zar_wire_payments\"\n  },\n  {\n    \"field\": \"Nickname\",\n    \"value\": \"ZAR Wire Beneficiary\"\n  },\n  {\n    \"field\": \"Account_Number\",\n    \"value\": \"1234567890\"\n  },\n  {\n    \"field\": \"Swift_Bic\",\n    \"value\": \"SBZAZAJJ\"\n  },\n  {\n    \"field\": \"Routing_Code\",\n    \"value\": \"051001\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Name\",\n    \"value\": \"Standard Bank\"\n  },\n  {\n    \"field\": \"Beneficiary_Bank_Country\",\n    \"value\": \"ZA\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/create"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"x-powered-by","value":"Express"},{"key":"Content-Security-Policy","value":"default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'none';"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"vary","value":"Origin, Accept-Encoding, Authorization, Cookie"},{"key":"access-control-allow-credentials","value":"true"},{"key":"x-refresh-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJTZXNzaW9uVG9rZW4iOiJjMjAwY2YzMWVjNjdlMDRjNDg1MmYxYWMzZmRhOWU2ZTg5NWE5MGU5OWZlZjYwYTAyZWUzZmUyNTcxNjA4NmIybW9Sby9vbzZnalhCSERBR2dYWFpsRGJSdk52TDJYZi94OXhmQUlsamZiQUY5ZmEyTmh2Ny95djdpbTYrcjBjRnp0MUVlWkl1ZzBiWEJOdVRWY242TjMyVnB1T1I1Y0dzbDZqcDludkRnREoyNXdoTk5Fbmc1M3BVcVY4QUV5WEVITVB3UmRzQ21TeDd1U3ovTm5YWTF2K1B6UnppWHhPbllObm5rZkV1TklTYldHRk1vZk85ejdEckwxME4yOXVCWVNlbFdjakhXWnpia24yY0NjZ08yVTMrZGxyYklyV1lEemdaeXh2WmhTT3g5NEU5dXl3QXpqNHZPVFVwTmNLU0pvYmIxZVZSRDZHR0xudmV6ZzJ6a3BhRGZsSlMrT1l2NytXLzNxdHhBVFE9IiwiQ2xpZW50SUQiOiI2OGM0MGRlYi05MzJmLTRmM2EtYTBkZS1lYThkMGUyZjFiODAiLCJpYXQiOjE3Nzg3NTIzNzEsImV4cCI6MTc3ODc1MzI3MX0.Ue57Bf2XMgEiwaGpZ6htc0-Y2Gxn4f0EXD6T_XfK-NI"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"110"},{"key":"etag","value":"W/\"6e-8v2+2ZQJJPz7U7A/+C//2/efpOI\""},{"key":"x-execution-time","value":"25494"},{"key":"date","value":"Thu, 14 May 2026 09:53:12 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"},{"key":"Permissions-Policy","value":"geolocation=(self), microphone=(), camera=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"PaymentInstrumentID\": \"-8350908126250749990\"\n    }\n}"}],"_postman_id":"a05bc58c-29ce-4f20-8e8d-ed7600497e0b"},{"name":"List Payment Instruments","id":"c87b0e2c-79ba-403d-8d39-9e29e04aecbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 100,\n    \"BeneficiaryId\": \"{{beneficiaryIDV2}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/list","description":"<p>This endpoint is used to get the list of payment instruments associated with a particular beneficiary.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PageNumber</td>\n<td>integer</td>\n<td>No</td>\n<td>--</td>\n<td>When results are paginated, this field can be used to obtain the results for the required page number</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>Default PageSize is 40. This can be used to increase or decrease the number of records in a page</td>\n</tr>\n<tr>\n<td>BeneficiaryId</td>\n<td>string</td>\n<td>Yes</td>\n<td></td>\n<td>Unique benenficiary ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>List of all the payment instrument associated with the beneficiary Id provided of the client</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390","id":"863636f7-0488-42ae-834c-dc60b97a8390","name":"Payment Instrument","type":"folder"}},"urlObject":{"path":["v2","payment-instrument","list"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"c0fc6203-c24e-4122-9f9f-8e69d4cbb723","name":"List Payment Instruments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 100,\n    \"BeneficiaryId\": \"{{beneficiaryIDV2}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"430"},{"key":"etag","value":"W/\"1ae-t1+0zDFe0RIPJRfyGVdKWN8PguI\""},{"key":"x-execution-time","value":"1746"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Fri, 09 Dec 2022 06:10:05 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Data\": [\n            {\n                \"CreatedBy\": \"Rishav_Business - Rishav\",\n                \"CreatedOn\": \"2022-12-09T02:01:29.769-04:00\",\n                \"Id\": \"2732450556708040533\",\n                \"payment_type\": \"BUS_USD_Account.BUS_International_Transfer\",\n                \"BeneficiaryId\": \"2705428958943817557\",\n                \"Nickname\": \"Wire-Domestic-Instrument\",\n                \"Account\": \"Account (USD)\",\n                \"Payment_Instrument_Status\": \"active\"\n            }\n        ],\n        \"PageNumber\": 1,\n        \"PageSize\": 100,\n        \"TotalCount\": 1\n    }\n}"}],"_postman_id":"c87b0e2c-79ba-403d-8d39-9e29e04aecbe"},{"name":"Get Payment Instrument Details","id":"a78c4ad7-2234-4057-ad41-e43f30c627cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/payment-instrument/:PaymentInstrumentId","description":"<p>This endpoint is used to get detailed information about a payment instrument.</p>\n<h2 id=\"path-variables\">Path Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PaymentInstrumentId</td>\n<td>string</td>\n<td>true</td>\n<td>--</td>\n<td>ID of the payment instrument</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td>--</td>\n<td>Details of the beneficiary</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390","id":"863636f7-0488-42ae-834c-dc60b97a8390","name":"Payment Instrument","type":"folder"}},"urlObject":{"path":["v2","payment-instrument",":PaymentInstrumentId"],"host":["{{baseURL}}"],"query":[],"variable":[{"id":"4ea22b3d-f1a3-4da9-9199-209fb7a9ce9c","type":"any","value":"{{PaymentInstrumentID}}","key":"PaymentInstrumentId"}]}},"response":[{"id":"b72f5148-ae82-4a99-8e1b-a3e1435b170f","name":"Get Payment Instrument Details","originalRequest":{"method":"GET","header":[],"url":"{{baseURL}}/v2/payment-instrument/{{PaymentInstrumentID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"765"},{"key":"etag","value":"W/\"2fd-a614p6I4eb458XHYGwdR7o0eE6Y\""},{"key":"x-execution-time","value":"1439"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Fri, 09 Dec 2022 06:10:34 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"CreatedBy\": \"Rishav_Business - Rishav\",\n        \"CreatedOn\": \"2022-12-09T02:01:29.769-04:00\",\n        \"PaymentInstrumentID\": \"2732450556708040533\",\n        \"Beneficiary\": \"Earnest-TRF - (rishav.0727@gmail.com)\",\n        \"Account\": \"Account (USD)\",\n        \"Payment_Type\": \"Payment - International Wire\",\n        \"Nickname\": \"Wire-Domestic-Instrument\",\n        \"Supported_Currencies\": \"USD\",\n        \"Payment_Instrument_Status\": \"Active\",\n        \"Account_Number\": \"10000049\",\n        \"Swift_Bic\": \"SCBLUS33XXX\",\n        \"Account_Type\": \"Saving\",\n        \"Beneficiary_Bank_Name\": \"Standard Chartered Bank\",\n        \"Beneficiary_Bank_Address\": \"1095 Avenue of the Americas\",\n        \"Beneficiary_Bank_City\": \"New York\",\n        \"Beneficiary_Bank_State\": \"NY\",\n        \"Beneficiary_Bank_Postal_Code\": \"10036\",\n        \"Beneficiary_Bank_Country\": \"UNITED STATES OF AMERICA\"\n    }\n}"},{"id":"3a51516c-3650-4e72-b15a-6fb01e95d002","name":"Get Payment Instrument Details [USDC Stablecoin]","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/v2/payment-instrument/:PaymentInstrumentId","host":["{{baseURL}}"],"path":["v2","payment-instrument",":PaymentInstrumentId"],"variable":[{"key":"PaymentInstrumentId","value":"{{PaymentInstrumentID}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Length","value":"554"},{"key":"access-control-allow-credentials","value":"true"},{"key":"cache-control","value":"private"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"etag","value":"W/\"22a-nBxRnIIjuP83YhrI17Yk4EqpU38\""},{"key":"expect-ct","value":"max-age=0"},{"key":"function-execution-id","value":"e9d0yfgn6etx"},{"key":"origin-agent-cluster","value":"?1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-cloud-trace-context","value":"fdb7fae6f2a3fd1286aada2347c3924a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-country-code","value":"US"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-execution-time","value":"411"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-powered-by","value":"Express"},{"key":"x-xss-protection","value":"0"},{"key":"accept-ranges","value":"bytes"},{"key":"date","value":"Wed, 01 Apr 2026 13:11:25 GMT"},{"key":"x-served-by","value":"cache-chi-kigq8000144-CHI"},{"key":"x-cache","value":"MISS"},{"key":"x-cache-hits","value":"0"},{"key":"x-timer","value":"S1775049085.734261,VS0,VE474"},{"key":"vary","value":"Origin, Accept-Encoding,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"},{"key":"alt-svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"x-request-id","value":"f869187a-5700-4739-b37a-3d7d9a244e37"},{"key":"via","value":"1.1 google, 1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"CreatedBy\": \"Demo - FV Stable Remit\",\n        \"CreatedOn\": \"2026-03-25T08:03:31.208-04:00\",\n        \"PaymentInstrumentID\": \"-8211296537802264820\",\n        \"BeneficiaryId\": \"-8202289338547523828\",\n        \"From_Account_Name\": \"Account (USD)\",\n        \"Payment_Type\": \"Stablecoin Payment\",\n        \"Nickname\": \"Stablecoin instrument\",\n        \"Supported_Currencies\": \"USDC\",\n        \"Payment_Instrument_Status\": \"Active\",\n        \"Blockchain\": \"ETH (ERC20)\",\n        \"Destination_Address\": \"0x1A493D7C47203970c31B6F7857258De1F7649070\",\n        \"Beneficiary_Payment_Instrument\": \"-8211296537802264820\"\n    }\n}"}],"_postman_id":"a78c4ad7-2234-4057-ad41-e43f30c627cc"},{"name":"Change Status","id":"34f37c0e-1b2e-4bf2-bb8b-270c5ba677e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"PaymentInstrumentId\": \"{{PaymentInstrumentID}}\",\n        \"Status\": \"Disable\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment-instrument/change-status","description":"<p>This endpoint is used to change status of a payment instrument ID</p>\n<h3 id=\"request-body\">Request Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryPaymentInstrumentID</td>\n<td>String</td>\n<td>--</td>\n<td>Id of the payment instrument.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>Active, Disable</td>\n<td>Status of the payment instrument</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>PossibleValues</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>number</td>\n<td>--</td>\n<td>--</td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>ResponseData</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>--</td>\n<td>Message</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: \"Permission Denied\" message is returned with status code 400 when \"Status\" in request body is same as the Payment Instrument status.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390","id":"863636f7-0488-42ae-834c-dc60b97a8390","name":"Payment Instrument","type":"folder"}},"urlObject":{"path":["v2","payment-instrument","change-status"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"af6d18d0-102c-458b-a30e-49f511ce5a1c","name":"Change Status [Enable]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"BeneficiaryId\": \"{{beneficiaryIDV2}}\",\n        \"Status\": \"Active\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/change-status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"125"},{"key":"etag","value":"W/\"7d-ltQTCG9BD7gLU6koSV+BMpZiICo\""},{"key":"x-execution-time","value":"11605"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Tue, 10 Jan 2023 07:36:09 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary has been enabled for transactions successfully.\"\n}"},{"id":"2a65d3cc-d9e5-477d-b62f-f6c01cd6cc09","name":"Change Status [Disable]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n        \"BeneficiaryId\": \"{{beneficiaryIDV2}}\",\n        \"Status\": \"Disable\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/beneficiary/change-status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"126"},{"key":"etag","value":"W/\"7e-w6n4xiKyJ+JzIJ/BS7VEB5HXjpg\""},{"key":"x-execution-time","value":"6143"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Tue, 10 Jan 2023 07:36:59 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": \"Beneficiary has been disabled for transactions successfully.\"\n}"}],"_postman_id":"34f37c0e-1b2e-4bf2-bb8b-270c5ba677e4"}],"id":"863636f7-0488-42ae-834c-dc60b97a8390","description":"<p>Payment instruments comprise different payment types inside a beneficiary. Payment instrument contains information related to bank account and payment type along with information needed to perform a payment.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c94355de-1552-47f6-ba5f-6db577117c65","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"51d11f23-893a-4c4e-87cb-e18e4e8bdaaa","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"863636f7-0488-42ae-834c-dc60b97a8390"},{"name":"Payments","item":[{"name":"Preview - Send Bank Payment","event":[{"listen":"test","script":{"id":"ecb1eb98-eb13-4b34-a6f5-62402ba877e8","exec":["var jsonData = pm.response.json();","pm.environment.set(\"transactionNumber\", jsonData.ResponseData.TransactionNumber);"],"type":"text/javascript","packages":{}}}],"id":"11060ce3-d290-45e3-9cea-53cf8cb4c0a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Purpose\": \"Loan_Payments\",\n    \"Currency\": \"USD\",\n    \"Amount\": \"300\",\n    \"CryptoBuySellActivity\": \"No\",\n    \"SupportingDocument\": \"{{FileId}}\",\n    \"DocumentReferenceNumber\":\"1123123\",\n    \"Intermediary_ABA\": \"026001591\",\n    \"Description\": \"lorem ipsum dummy text\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment/bank/preview","description":"<p>This endpoint requires the same request body as create bank transfer endpoint. The difference between them is the former one validates the request body (provides error message if any), lists the fee involved, and the details of the transaction.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryPaymentInstrumentID</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Payment instrument ID</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Currency for the payment</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Amount to be transfered</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Description about the payment</td>\n</tr>\n<tr>\n<td>Purpose</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Must be one of the value from Get Payment Purpose endpoint</td>\n</tr>\n<tr>\n<td>CryptoBuySellActivity</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>\"Yes\" or \"No\" representing if the transaction is associated with a crypto activity</td>\n</tr>\n<tr>\n<td>SupportingDocument</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>File ID of the document. Multiple file Ids supported in format \"fileId1</td>\n</tr>\n<tr>\n<td>Intermediary_ABA</td>\n<td>string</td>\n<td>Only for International Payments</td>\n<td>--</td>\n<td>ABA number of the intermediary bank</td>\n</tr>\n<tr>\n<td>Additional_Info</td>\n<td>{ Name: Value }</td>\n<td>No</td>\n<td>Refer to \"Additional_Info fields for payments endpoint\" in classes section</td>\n<td>This needs to be send inside the Fields array with field name as Additional_info and value as the object with the information required.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"additonal_info-fields\">Additonal_Info fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Possible Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Beneficiary_DOB</td>\n<td>format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>Beneficiary_Relationship</td>\n<td>AUNT, BROTHER, BROTHER_IN_LAW, COUSIN,  <br />DAUGHTER, FATHER, FATHER_IN_LAW, FRIEND,  <br />GRAND_FATHER, GRAND_MORTHER, HUSBAND, MOTHER, MOTHER_IN_LAW, NEPHEW, NIECE, SELF, SISTER, SISTER_IN_LAW, SON, UNCLE, WIFE, OTHERS</td>\n</tr>\n<tr>\n<td>Beneficiary_ID_Type</td>\n<td>DL, NationalID, Passport</td>\n</tr>\n<tr>\n<td>Beneficiary_ID_No</td>\n<td>string</td>\n</tr>\n<tr>\n<td>Beneficiary_Relationship_Other</td>\n<td>string</td>\n</tr>\n<tr>\n<td>Product_Type</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for request body</td>\n<td></td>\n<td>Object contains all the information about the transaction along with the fess</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"32074d9c-244f-4f31-b342-cecbaacd5977","id":"32074d9c-244f-4f31-b342-cecbaacd5977","name":"Payments","type":"folder"}},"urlObject":{"path":["v2","payment","bank","preview"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"93ecfd8a-8a77-4552-8ee3-fc2b157d2590","name":"Preview - Send Bank Payment [V2]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Purpose\": \"Savings\",\n    \"Description\": \"Test API Payment\",\n    \"Currency\": \"USD\",\n    \"Amount\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment/bank/preview"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"214"},{"key":"etag","value":"W/\"d6-XLNb3MkHOlIgvhVPYw4kmLV0oZ8\""},{"key":"x-execution-time","value":"2540"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Fri, 09 Dec 2022 06:19:56 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Amount\": \"1.00\",\n        \"Currency\": \"USD\",\n        \"Description\": \"Test API Payment\",\n        \"Fee\": \"75.00\",\n        \"From\": \"Rishav_Business - Rishav\",\n        \"To\": \"Earnest-TRF\",\n        \"Total\": \"76.00\"\n    }\n}"}],"_postman_id":"11060ce3-d290-45e3-9cea-53cf8cb4c0a3"},{"name":"Send Bank Payment","event":[{"listen":"test","script":{"id":"ecb1eb98-eb13-4b34-a6f5-62402ba877e8","exec":["var jsonData = pm.response.json();","if(!!jsonData?.ResponseData?.TransactionNumber){","    pm.environment.set(\"transactionNumber\", jsonData.ResponseData.TransactionNumber);","}",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6fa21d0a-2870-4a25-aeda-0238dd7d7cb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Purpose\": \"Loan_Payments\",\n    \"Currency\": \"USD\",\n    \"Amount\": \"40\",\n    \"CryptoBuySellActivity\": \"No\",\n    \"Intermediary_ABA\": \"026001591\",\n    \"SupportingDocument\": \"{{FileId}}\",\n    \"Description\": \"Testing Timeout RAJ2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment/bank","description":"<p>The endpoint is used to make the payment to the beneficiary that was added early using any of the payment instrument Id associated with that beneficiary. The associated beneficiary status must be <code>Enabled</code> to send the payment.</p>\n<p>Note:<br />1. The payment might need one or more authorization from the bank. Merchant partner will be notified on such changes via callbacks to the designated URL.<br />2. Swift code provided while creating payment instrument will also get verfied in this endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryPaymentInstrumentID</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Payment instrument ID</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Currency for the payment</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Amount to be transferred</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Description about the payment</td>\n</tr>\n<tr>\n<td>Purpose</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Must be one of the value from Get Payment Purpose endpoint</td>\n</tr>\n<tr>\n<td>CryptoBuySellActivity</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>\"Yes\" or \"No\" representing if the transaction is associated with a crypto activity</td>\n</tr>\n<tr>\n<td>SupportingDocument</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>File ID of the document. Multiple file Ids supported in format 'fileId1</td>\n</tr>\n<tr>\n<td>Intermediary_ABA</td>\n<td>string</td>\n<td>Only for International Payments</td>\n<td>--</td>\n<td>ABA number of the Intermediary bank</td>\n</tr>\n<tr>\n<td>Additional_Info</td>\n<td>{ Name: Value }</td>\n<td>No</td>\n<td>Refer to \"Additional_Info fields for payments endpoint\" in classes section</td>\n<td>This needs to be send inside the Fields array with field name as Additional_info and value as the object with the information required.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td>--</td>\n<td>Object contains TransactionNumber that can be used in get transaction details endpoint</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"32074d9c-244f-4f31-b342-cecbaacd5977","id":"32074d9c-244f-4f31-b342-cecbaacd5977","name":"Payments","type":"folder"}},"urlObject":{"path":["v2","payment","bank"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"765fb3a0-f345-4af0-9f4a-a005877e1c55","name":"Send Bank Payment [V2]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"2732450556708040533\",\n    \"Purpose\": \"Savings\",\n    \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n    \"Currency\": \"USD\",\n    \"Amount\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/payment/bank"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"99"},{"key":"etag","value":"W/\"63-tgTEpM09BkHq65LSTGhPTuLLb+8\""},{"key":"x-execution-time","value":"3386"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Fri, 09 Dec 2022 06:26:54 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000007938\"\n    }\n}"}],"_postman_id":"6fa21d0a-2870-4a25-aeda-0238dd7d7cb5"}],"id":"32074d9c-244f-4f31-b342-cecbaacd5977","description":"<p>These endpoints are used to create a transaction for fiat payment types using a payment instrument.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9d8b51dd-57a7-4e57-bedd-6be8eb292d45","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"a1ed3b9e-3678-470d-9215-a7d442b643d6","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"32074d9c-244f-4f31-b342-cecbaacd5977"},{"name":"Stablecoin","item":[{"name":"Preview- Stablecoin Withdraw","id":"1a5b8a7b-1b14-4dd2-ac65-a18cc83d8be0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Amount\": \"400\",\n    \"Description\": \"Testing apis\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/stablecoin/withdraw/preview","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"5df8538f-dcee-4975-9fc4-9326a51bed9a","id":"5df8538f-dcee-4975-9fc4-9326a51bed9a","name":"Stablecoin","type":"folder"}},"urlObject":{"path":["v2","stablecoin","withdraw","preview"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a5b8a7b-1b14-4dd2-ac65-a18cc83d8be0"},{"name":"Transfer - Stablecoin Withdraw","id":"1c5d225e-fa81-4b28-ada5-5519714d102e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Amount\": \"0.01\",\n    \"Description\": \"Testing apis\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/stablecoin/withdraw","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"5df8538f-dcee-4975-9fc4-9326a51bed9a","id":"5df8538f-dcee-4975-9fc4-9326a51bed9a","name":"Stablecoin","type":"folder"}},"urlObject":{"path":["v2","stablecoin","withdraw"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c5d225e-fa81-4b28-ada5-5519714d102e"}],"id":"5df8538f-dcee-4975-9fc4-9326a51bed9a","description":"<p>The Stablecoin folder contains APIs for managing stablecoin transactions, including sending funds to blockchain addresses. It enables seamless conversion from USD balances to supported stablecoins like USDC or PYUSD, along with tracking and managing these transactions.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"0d4f154b-a3db-4997-9ffb-46e02b2ec370","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"c03f81e4-1404-4ee9-8774-483e190dfb61","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"5df8538f-dcee-4975-9fc4-9326a51bed9a"},{"name":"Cross Border Payments","item":[{"name":"Preview - Send Cross Border Payment","id":"affcbff5-f01e-495e-b093-11631a2cc3ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Purpose\": \"Savings\",\n    \"Description\": \"Testing Payment endpoint (Business Endpoint)\",\n    \"DestinationAmount\": \"12\",\n    \"DestinationCurrency\": \"EUR\",\n    \"CryptoBuySellActivity\": \"Yes\",\n    \"SupportingDocument\": \"{{FileId}}\",\n    \"DocumentReferenceNumber\": \"234234\"\n}\n\n\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/cross-border/preview","description":"<p>The “Preview - Cross-Border Payment” endpoint provides a pre-submission validation and cost/rate preview for all supported cross-border rails.<br />In the request, clients submit the selected Beneficiary Payment Instrument ID along with payment details such as Purpose, Description, DestinationAmount, and DestinationCurrency (plus any rail-specific required fields, including supporting document where applicable).</p>\n<p>On success, the endpoint returns a detailed payment preview with key transaction data, including applicable fees, FX conversion details (such as rates and source/destination amounts), so the client can confirm the payment before execution.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryPaymentInstrumentID</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Payment instrument ID</td>\n</tr>\n<tr>\n<td>DestinationCurrency</td>\n<td>string</td>\n<td>Yes</td>\n<td>EUR</td>\n<td>Currency of the recepient bank</td>\n</tr>\n<tr>\n<td>DestinationAmount</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Destination Amount</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Description about the payment</td>\n</tr>\n<tr>\n<td>Purpose</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Must be one of the value from Get Payment Purpose endpoint</td>\n</tr>\n<tr>\n<td>CryptoBuySellActivity</td>\n<td></td>\n<td>Yes</td>\n<td>--</td>\n<td>\"Yes\" or \"No\" representing if the transaction is associated with a crypto activity</td>\n</tr>\n<tr>\n<td>SupportingDocument</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>File ID of the document</td>\n</tr>\n<tr>\n<td>DocumentReferenceNumber</td>\n<td>string</td>\n<td>No</td>\n<td>--</td>\n<td>Document number of the supporting file</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>Object contains all the information about the transaction along with the fess</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f79e0ade-7298-48f9-9881-4407ca640cd0","id":"f79e0ade-7298-48f9-9881-4407ca640cd0","name":"Cross Border Payments","type":"folder"}},"urlObject":{"path":["v2","cross-border","preview"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"affcbff5-f01e-495e-b093-11631a2cc3ed"},{"name":"Submit - Send Cross Border Payment","event":[{"listen":"test","script":{"id":"ecb1eb98-eb13-4b34-a6f5-62402ba877e8","exec":["var jsonData = pm.response.json();","if(!!jsonData?.ResponseData?.TransactionNumber){","    pm.environment.set(\"transactionNumber\", jsonData.ResponseData.TransactionNumber);","}",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3b333bc8-40fe-4bd8-a415-2f88b74314f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"BeneficiaryPaymentInstrumentID\": \"{{PaymentInstrumentID}}\",\n    \"Purpose\": \"Savings\",\n    \"Description\": \"Testing SEPA payments\",\n    \"DestinationAmount\": \"830\",\n    \"DestinationCurrency\": \"EUR\",\n    \"CryptoBuySellActivity\": \"Yes\",\n    \"SupportingDocument\": \"{{FileId}}\",\n    \"DocumentReferenceNumber\": \"324324324\"\n}\n\n\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/cross-border","description":"<p>The \"SEND Cross Border Payment\" endpoint offers users the capability to initiate cross-border transactions with precision. Users can input essential transaction details, including the Payment Instrument ID, payment purpose, description, destination amount, destination currency, and CryptoBuySellActivity flag.</p>\n<p>The \"SupportingDocument\" attribute allows for the attachment of relevant documents using the File ID obtained from the \"Upload File\" endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeneficiaryPaymentInstrumentID</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Payment instrument ID</td>\n</tr>\n<tr>\n<td>DestinationCurrency</td>\n<td>string</td>\n<td>Yes</td>\n<td>All cross borde rails currency</td>\n<td>Currency of the recepient bank</td>\n</tr>\n<tr>\n<td>DestinationAmount</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Destination Amount</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Description about the payment</td>\n</tr>\n<tr>\n<td>Purpose</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>Must be one of the value from Get Payment Purpose endpoint</td>\n</tr>\n<tr>\n<td>CryptoBuySellActivity</td>\n<td></td>\n<td>Yes</td>\n<td>Yes, No</td>\n<td>\"Yes\" or \"No\" representing if the transaction is associated with a crypto activity</td>\n</tr>\n<tr>\n<td>SupportingDocument</td>\n<td>string</td>\n<td>Yes</td>\n<td>--</td>\n<td>File ID of the document</td>\n</tr>\n<tr>\n<td>DocumentReferenceNumber</td>\n<td>string</td>\n<td>No</td>\n<td>--</td>\n<td>Document number of the supporting file</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td>--</td>\n<td>--</td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Objet</td>\n<td>--</td>\n<td>Object contains TransactionNumber that can be used in get transaction details endpoint</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f79e0ade-7298-48f9-9881-4407ca640cd0","id":"f79e0ade-7298-48f9-9881-4407ca640cd0","name":"Cross Border Payments","type":"folder"}},"urlObject":{"path":["v2","cross-border"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b333bc8-40fe-4bd8-a415-2f88b74314f9"}],"id":"f79e0ade-7298-48f9-9881-4407ca640cd0","description":"<p>These endpoints are used to create a cross border transaction for different payment types using a payment instrument.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2dab4246-3650-48e8-b7ec-c5403643c448","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"8f01d5cb-f24b-479c-850b-f1afd78cfa91","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"f79e0ade-7298-48f9-9881-4407ca640cd0"},{"name":"Transactions","item":[{"name":"Get Transaction Details","id":"4c310554-dccc-4e79-8e2b-7fa9941fe712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/transactions/details/:transactionNumber","description":"<p>To get the details about a transaction. Transaction number can be any of the response from payment or transfer endpoint.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td><a href=\"#transactiondata\">TransactionData</a></td>\n<td></td>\n<td>The details of the transaction</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f841678a-13c0-495d-a83a-b3fba1058496","id":"f841678a-13c0-495d-a83a-b3fba1058496","name":"Transactions","type":"folder"}},"urlObject":{"path":["v2","transactions","details",":transactionNumber"],"host":["{{baseURL}}"],"query":[],"variable":[{"id":"8fb9a168-6f75-4b04-96d6-f5d857ef51cd","type":"any","value":"{{transactionNumber}}","key":"transactionNumber"}]}},"response":[{"id":"2047233b-37f0-4dea-b680-572714dfc80e","name":"Get Transaction Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/transactions/details/:transactionNumber","host":["{{baseURL}}"],"path":["transactions","details",":transactionNumber"],"variable":[{"key":"transactionNumber","value":"{{transactionNumber}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"362"},{"key":"etag","value":"W/\"16a-6mrDBxKQTXG/wEe+sXn4SjY2Tb4\""},{"key":"x-execution-time","value":"914"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Tue, 13 Sep 2022 10:22:14 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000006187\",\n        \"Status\": \"DENIED_AUTHORIZATION\",\n        \"CreatedAt\": \"2022-09-09T07:42:43.730-04:00\",\n        \"Amount\": \"1.00\",\n        \"From\": \"Rishav_Business - Rishav\",\n        \"To\": \"Rishav_test\",\n        \"Currency\": \"USD\",\n        \"Description\": \"Testing\",\n        \"Type\": {\n            \"value\": \"BUS_USD_Account.Payment_FV_Net\",\n            \"label\": \"Payment - FV Net\"\n        }\n    }\n}"},{"id":"7283643b-fd96-479f-86a9-6e6446de06a6","name":"Get Transaction Details - Deposit Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/transactions/details/:transactionNumber","host":["{{baseURL}}"],"path":["transactions","details",":transactionNumber"],"variable":[{"key":"transactionNumber","value":"{{transactionNumber}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"573"},{"key":"etag","value":"W/\"23d-7uUDKo9yOLeraTsMCH5F9glH8dE\""},{"key":"x-execution-time","value":"444"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Thu, 13 Jan 2022 08:14:19 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"TransactionNumber\": \"FV000005830\",\n        \"Status\": \"COMPLETE\",\n        \"CreatedAt\": \"2022-01-13T00:41:52.835-04:00\",\n        \"UpdatedAt\": \"2022-01-13T02:53:49.065-04:00\",\n        \"Amount\": \"100.00\",\n        \"From\": \"RAJESH\",\n        \"To\": \"MGT India - Anant Anand Gupta\",\n        \"Currency\": \"USD\",\n        \"Description\": \"test\",\n        \"Type\": {\n            \"value\": \"debit.BUS_ACH_Deposit\",\n            \"label\": \"Deposit - Domestic (ACH)\"\n        },\n        \"AdditionalData\": [\n            {\n                \"label\": \"Deposit Originator Name\",\n                \"value\": \"RAJESH\"\n            },\n            {\n                \"label\": \"Deposit Routing Number\",\n                \"value\": \"026001122\"\n            },\n            {\n                \"label\": \"Deposit Account Number\",\n                \"value\": \"98213123\"\n            }\n        ]\n    }\n}"},{"id":"9f1ea924-a967-4944-b112-d5a09c08cabc","name":"Get Transaction Details - Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/transactions/details/:transactionNumber","host":["{{baseURL}}"],"path":["transactions","details",":transactionNumber"],"variable":[{"key":"transactionNumber","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"85"},{"key":"etag","value":"W/\"55-jgZ42k2Mi6YlGmDw3Bx1uK3Smoc\""},{"key":"x-execution-time","value":"975"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Thu, 25 Nov 2021 13:03:34 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 400,\n    \"ResponseMessage\": \"BadRequest\",\n    \"ResponseErrors\": [\n        \"Bad Request.\"\n    ]\n}"},{"id":"158df49c-d7c4-4af9-b114-d1a011bc3689","name":"Get Transaction Details - Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseURL}}/transactions/details/:transactionNumber","host":["{{baseURL}}"],"path":["transactions","details",":transactionNumber"],"variable":[{"key":"transactionNumber","value":null}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"81"},{"key":"etag","value":"W/\"51-VzXwA8WA2qlmS33ST5Z6wpu23/k\""},{"key":"x-execution-time","value":"337"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Thu, 25 Nov 2021 13:02:07 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 404,\n    \"ResponseMessage\": \"NotFound\",\n    \"ResponseErrors\": [\n        \"Not Found.\"\n    ]\n}"}],"_postman_id":"4c310554-dccc-4e79-8e2b-7fa9941fe712"},{"name":"Get Incomplete Transaction History","id":"a5d5dd1a-6f16-45f8-829f-09fccb5dfa05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 50\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/transactions/history","description":"<p>Returns all the transactions that were incomplete, rejected, canceled, or failed.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Direction</td>\n<td>string</td>\n<td>No</td>\n<td>debit, credit</td>\n<td></td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>No</td>\n<td>DENIED, PENDING, EXPIRED,  <br />CANCELLED</td>\n<td></td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td>string</td>\n<td>No</td>\n<td>Transaction types in the system</td>\n<td></td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>string</td>\n<td>No</td>\n<td></td>\n<td>Date in 'YYYY-MM-DD' format</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>string</td>\n<td>No</td>\n<td></td>\n<td>Date in YYYY-MM-DD format</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>When results are paginated, this field can be used to obtain the results for the required page number</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>Default PageSize is 40. This can be used to increase or decrease the number of records in a page</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td><a href>TransactionData</a></td>\n<td></td>\n<td>contains all the transactions that were incomplete, rejected, cancelled, or failed.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f841678a-13c0-495d-a83a-b3fba1058496","id":"f841678a-13c0-495d-a83a-b3fba1058496","name":"Transactions","type":"folder"}},"urlObject":{"path":["v2","transactions","history"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"8af41365-75c5-43f8-b2fe-76ffe8b76b3a","name":"Get Transaction History","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n    \"PageNumber\": 1,\n    \"PageSize\": 50\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/transactions/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"437f-XgsERtzf+8OBqvN6T863JWn0gDY\""},{"key":"x-execution-time","value":"1693"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 13 Sep 2022 10:25:56 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Data\": [\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T06:09:23.245-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006265\",\n                \"Type\": {\n                    \"label\": \"Deposit - International Wire\",\n                    \"value\": \"debit.Business_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T06:09:05.008-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006264\",\n                \"Type\": {\n                    \"label\": \"Deposit - Domestic Wire\",\n                    \"value\": \"debit.Deposit_Domestic_Wire\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:54:35.063-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006263\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:52:26.235-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006261\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:02:29.724-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006259\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:01:33.192-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006258\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:01:04.171-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006256\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T04:31:25.396-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006250\",\n                \"Type\": {\n                    \"label\": \"Deposit - Domestic Wire\",\n                    \"value\": \"debit.Deposit_Domestic_Wire\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-09-09T08:32:25.729-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"\",\n                \"Direction\": \"Credit\",\n                \"From\": \"kesav m's business - Kesav M Business\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006194\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-09T07:42:43.730-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006187\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-09-09T07:40:34.439-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006184\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-30T03:17:22.791-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006044\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-30T03:15:31.201-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006043\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-30T03:10:50.136-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006042\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"10.00\",\n                \"CreatedAt\": \"2022-08-26T06:06:59.348-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000006026\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-26T06:05:08.540-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006023\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-26T01:46:49.390-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006021\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-26T01:08:23.280-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006018\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T08:41:26.766-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006011\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T08:26:57.263-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006004\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T08:18:57.120-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006003\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T05:45:22.681-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Individual_International_Wire)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000005996\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T03:07:09.889-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005990\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T02:44:32.381-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Individual_International_Wire Individual_International_Wire Doe\",\n                \"TransactionNumber\": \"FV000005981\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T02:26:35.827-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005976\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-24T15:22:28.658-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005959\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-24T08:44:33.186-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005947\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-24T07:26:34.328-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005942\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-24T05:48:00.769-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005922\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-24T05:47:00.956-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005921\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-23T02:33:10.274-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005901\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-23T01:59:21.821-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005899\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-23T01:56:44.100-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005896\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-23T01:55:41.757-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005893\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-23T01:35:10.882-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005889\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-23T01:31:49.996-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005886\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-22T15:26:26.047-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"PENDING_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005882\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"10.00\",\n                \"CreatedAt\": \"2022-07-26T06:09:47.004-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"random\",\n                \"Direction\": \"Credit\",\n                \"From\": \"leorio\",\n                \"Status\": \"EXPIRED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005542\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"10.00\",\n                \"CreatedAt\": \"2022-07-25T08:02:13.278-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Originator name\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005541\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"21.00\",\n                \"CreatedAt\": \"2022-07-25T04:42:05.975-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing deposit\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Bon_Iver\",\n                \"Status\": \"EXPIRED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005540\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-30T02:52:41.287-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005398\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-29T02:09:32.943-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005395\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-28T07:54:54.816-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"EXPIRED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005393\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-28T07:41:21.580-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"EXPIRED\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005389\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-06-28T03:32:05.069-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Test API Payment\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"EXPIRED\",\n                \"To\": \"Company Name\",\n                \"TransactionNumber\": \"FV000005381\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"20.00\",\n                \"CreatedAt\": \"2022-06-27T07:42:09.478-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005370\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"20.00\",\n                \"CreatedAt\": \"2022-06-27T07:41:24.476-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"CANCELLED\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005369\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-27T07:39:45.800-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_Business - Rishav\",\n                \"TransactionNumber\": \"FV000005368\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-27T07:36:10.173-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005362\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-06-27T07:35:46.716-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing API for transfer\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business - Rishav\",\n                \"Status\": \"DENIED_AUTHORIZATION\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005361\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            }\n        ],\n        \"PageNumber\": 1,\n        \"PageSize\": 50,\n        \"TotalCount\": 170\n    }\n}"}],"_postman_id":"a5d5dd1a-6f16-45f8-829f-09fccb5dfa05"},{"name":"Get Completed Transactions History","id":"f0f2d330-f73b-4fe8-9c5a-b9658258079e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 30\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/transactions/history/completed","description":"<p>Returns all the completed transactions of the client.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Direction</td>\n<td>string</td>\n<td>No</td>\n<td>debit, credit</td>\n<td></td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td>String</td>\n<td>No</td>\n<td>Transaction types in the system</td>\n<td></td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>string</td>\n<td>No</td>\n<td></td>\n<td>Date in 'YYYY-MM-DD' format</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>string</td>\n<td>No</td>\n<td></td>\n<td>Date in YYYY-MM-DD format</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>When results are paginated, this field can be used to obtain the results for the required page number</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>integer</td>\n<td>No</td>\n<td></td>\n<td>Default PageSize is 40. This can be used to increase or decrease the number of records in a page</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>No</td>\n<td></td>\n<td>Filter the completed transactions on the basis of description</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Possible Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td>integer</td>\n<td></td>\n<td>HTTP Response code (result of the API call)</td>\n</tr>\n<tr>\n<td>ResponseMessage</td>\n<td>string</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Response Data</td>\n<td>Refer to examples attached for response body</td>\n<td></td>\n<td>Object contains a list of all the completed transactions</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f841678a-13c0-495d-a83a-b3fba1058496","id":"f841678a-13c0-495d-a83a-b3fba1058496","name":"Transactions","type":"folder"}},"urlObject":{"path":["v2","transactions","history","completed"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"04ddd6bb-42b1-4bbd-b7e5-cde40386cd70","name":"Get Completed Transactions History","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"PageNumber\": 1,\n    \"PageSize\": 30,\n    \"Description\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/transactions/history/completed"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"27f8-szdd28f+4bN6mBnlIm/k/z8Plds\""},{"key":"x-execution-time","value":"1071"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Tue, 13 Sep 2022 10:26:18 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"transfer-encoding","value":"chunked"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"Data\": [\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T06:10:03.029-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006266\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:50:42.657-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006260\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-13T05:00:43.259-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006252\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-09T07:43:46.535-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006189\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-09-09T07:42:07.867-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006186\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-09-09T07:42:07.867-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"AUTHORIZED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006185\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-01T07:43:43.394-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006102\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-09-01T07:43:43.394-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006103\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-09-01T07:42:20.694-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006101\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-09-01T07:42:20.694-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006100\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-30T03:09:15.027-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"AUTHORIZED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006040\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-30T03:09:15.027-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006041\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"10.00\",\n                \"CreatedAt\": \"2022-08-26T06:07:35.828-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006027\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-26T06:06:38.260-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006025\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-26T06:06:38.260-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006024\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-25T08:40:57.282-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006010\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T08:40:57.282-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"AUTHORIZED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000006009\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T08:39:24.347-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000006007\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T08:14:51.972-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000006001\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-25T08:14:51.972-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006002\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-25T05:49:08.743-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000006000\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T05:49:08.743-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_test\",\n                \"TransactionNumber\": \"FV000005999\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T05:46:46.029-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"AUTHORIZED\",\n                \"To\": \"test_company\",\n                \"TransactionNumber\": \"FV000005997\",\n                \"Type\": {\n                    \"label\": \"Payment - Domestic (ACH)\",\n                    \"value\": \"BUS_USD_Account.Business_ACH\"\n                }\n            },\n            {\n                \"Amount\": \"5.00\",\n                \"CreatedAt\": \"2022-08-25T05:46:46.029-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Business Endpoint)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000005998\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"10.00\",\n                \"CreatedAt\": \"2022-08-25T03:18:03.376-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Dummy Deposit For Test\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Test Sender\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000005991\",\n                \"Type\": {\n                    \"label\": \"CREDIT – ACH DOMESTIC TRANSACTION\",\n                    \"value\": \"debit.BUS_ACH_Deposit\"\n                }\n            },\n            {\n                \"Amount\": \"1.00\",\n                \"CreatedAt\": \"2022-08-25T02:50:27.133-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"test request payment\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Rishav_test\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000005987\",\n                \"Type\": {\n                    \"label\": \"Payment - FV Net\",\n                    \"value\": \"BUS_USD_Account.Payment_FV_Net\"\n                }\n            },\n            {\n                \"Amount\": \"75.00\",\n                \"CreatedAt\": \"2022-08-25T02:47:54.900-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"\",\n                \"Direction\": \"Credit\",\n                \"From\": \"FV Bank\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000005985\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T02:47:54.888-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Returned item for Testing Beneficiary Payment for Transaction Details endpoint (Individual_International_Wire)\",\n                \"Direction\": \"Credit\",\n                \"From\": \"Individual_International_Wire Individual_International_Wire Doe\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Rishav_Business\",\n                \"TransactionNumber\": \"FV000005984\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            },\n            {\n                \"Amount\": \"75.00\",\n                \"CreatedAt\": \"2022-08-25T02:46:18.787-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Individual_International_Wire)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"FV Bank\",\n                \"TransactionNumber\": \"FV000005983\",\n                \"Type\": {\n                    \"label\": \"Transaction Fee\",\n                    \"value\": \"BUS_USD_Account.Transaction_Fee\"\n                }\n            },\n            {\n                \"Amount\": \"7.00\",\n                \"CreatedAt\": \"2022-08-25T02:46:18.787-04:00\",\n                \"Currency\": \"USD\",\n                \"Description\": \"Testing Beneficiary Payment for Transaction Details endpoint (Individual_International_Wire)\",\n                \"Direction\": \"Debit\",\n                \"From\": \"Rishav_Business\",\n                \"Status\": \"COMPLETE\",\n                \"To\": \"Individual_International_Wire Individual_International_Wire Doe\",\n                \"TransactionNumber\": \"FV000005982\",\n                \"Type\": {\n                    \"label\": \"Payment - International Wire\",\n                    \"value\": \"BUS_USD_Account.BUS_International_Transfer\"\n                }\n            }\n        ],\n        \"PageNumber\": 1,\n        \"PageSize\": 30,\n        \"TotalCount\": 173\n    }\n}"}],"_postman_id":"f0f2d330-f73b-4fe8-9c5a-b9658258079e"},{"name":"Re-Send Webhook","id":"b881413f-1da3-4044-beb9-e30de6c6834f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"TransactionNumber\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/v2/transactions/send-webhook","description":"<p>Use the Send Webhook endpoint to easily trigger the webhook for the the latest transaction state by providing the transaction number in the request body,</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"f841678a-13c0-495d-a83a-b3fba1058496","id":"f841678a-13c0-495d-a83a-b3fba1058496","name":"Transactions","type":"folder"}},"urlObject":{"path":["v2","transactions","send-webhook"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"7213fb74-bc04-4d74-ab84-bb8e8d1c97da","name":"Re-Send Webhook (Success)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"TransactionNumber\": \"FV000020154\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURL}}/transactions/send-webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"cross-origin-embedder-policy","value":"require-corp"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"116"},{"key":"etag","value":"W/\"74-RM6pp/NbpR72hc7o6I/mYvikHNU\""},{"key":"x-execution-time","value":"1076"},{"key":"vary","value":"Accept-Encoding, Authorization, Cookie"},{"key":"date","value":"Wed, 08 Nov 2023 09:25:24 GMT"},{"key":"connection","value":"keep-alive"},{"key":"keep-alive","value":"timeout=5"},{"key":"cache-control","value":"private"}],"cookie":[],"responseTime":null,"body":"{\n    \"ResponseCode\": 200,\n    \"ResponseMessage\": \"Success\",\n    \"ResponseData\": {\n        \"WebhookId\": \"7bdeb64f-50b2-4624-87ea-4fa111282e8e\"\n    }\n}"}],"_postman_id":"b881413f-1da3-4044-beb9-e30de6c6834f"}],"id":"f841678a-13c0-495d-a83a-b3fba1058496","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"eeb14c5e-49b7-4b91-9f83-973b33680510","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"843be248-299e-496e-9079-dd4a6ef05360","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"f841678a-13c0-495d-a83a-b3fba1058496","description":""},{"name":"Files","item":[{"name":"Get File","id":"95935b9b-cbcc-4ab5-a6ee-450cd422a1de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/files/:FileId","description":"<p>This endpoint takes a temp file ID as a path variable and returns the image or document that was previously uploaded using the Upload File endpoint. The response will contain the file in its original format.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","name":"Files","type":"folder"}},"urlObject":{"path":["v2","files",":FileId"],"host":["{{baseURL}}"],"query":[],"variable":[{"id":"3b6352d6-189b-4161-873c-07e70feacfa9","type":"any","value":"{{FileId}}","key":"FileId"}]}},"response":[],"_postman_id":"95935b9b-cbcc-4ab5-a6ee-450cd422a1de"},{"name":"Get File Details","id":"6cce6a24-3ebd-4411-98a5-5a0b3c796517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseURL}}/v2/files/details/:FileId","description":"<p>This endpoint takes a temp file ID as a path variable and returns details about the file such as its name and format. The response will contain metadata about the file that was previously uploaded using the Upload File endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","name":"Files","type":"folder"}},"urlObject":{"path":["v2","files","details",":FileId"],"host":["{{baseURL}}"],"query":[],"variable":[{"id":"14eaeb4b-9dc3-463f-98ae-ee697b6ba0f2","type":"any","value":"{{FileId}}","key":"FileId"}]}},"response":[],"_postman_id":"6cce6a24-3ebd-4411-98a5-5a0b3c796517"},{"name":"Upload File","event":[{"listen":"test","script":{"id":"20830f33-a27f-4e0d-a818-2958b4ab1058","exec":["var jsonData = pm.response.json();","if(!!jsonData?.ResponseData?.ID){","    pm.environment.set(\"FileId\", jsonData.ResponseData.ID);","}",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"301b6634-8cb9-4ee9-b8bc-a5ef1bde06fb","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"file","file":{"src":"/Users/rajesh/Downloads/dummy-pdf_2.pdf"}},"url":"{{baseURL}}/v2/files/upload?customField=Payment_Invoice&fileName=Ducket.pdf","description":"<h2 id=\"📄-upload-file\">📄 Upload File</h2>\n<p>The <strong>Upload File</strong> endpoint allows you to upload documents and retrieve a <strong>File ID</strong>, which can then be used across different APIs wherever file-type parameters are required.</p>\n<p>This is a <strong>foundational endpoint</strong> used in multiple flows such as:</p>\n<ul>\n<li><p>Outbound <strong>Bank Payments</strong> (e.g., invoices, supporting documents)</p>\n</li>\n<li><p><strong>Virtual Account creation</strong> (KYC/identity documents)</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚙️-how-it-works\">⚙️ How It Works</h3>\n<ul>\n<li><p>You upload a file using this endpoint</p>\n</li>\n<li><p>The system returns a <strong>File ID</strong></p>\n</li>\n<li><p>This File ID is then passed in other API requests wherever required</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔑-query-parameters\">🔑 Query Parameters</h3>\n<ul>\n<li><p><code>customField</code> → Defines <strong>where this file will be used</strong></p>\n</li>\n<li><p><code>fileName</code> → Name of the file (must include correct extension, e.g., <code>.pdf</code>, <code>.png</code>)</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔗-usage-mapping\">🔗 Usage Mapping</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint</th>\n<th>Parameter</th>\n<th>customField</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Payments</td>\n<td>SupportingDocument</td>\n<td>Payment_Invoice</td>\n</tr>\n<tr>\n<td>Add Virtual Account (Business Beneficiary)</td>\n<td>Document_File</td>\n<td>Document_File</td>\n</tr>\n<tr>\n<td>Add Virtual Account (Individual Beneficiary)</td>\n<td>Front_Document</td>\n<td>Front_Document</td>\n</tr>\n<tr>\n<td>Add Virtual Account (Individual Beneficiary)</td>\n<td>Back_Document</td>\n<td>Back_Document</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"🧠-key-notes\">🧠 Key Notes</h3>\n<ul>\n<li><p>The <strong>File ID is mandatory</strong> for any file-type field</p>\n</li>\n<li><p>Ensure <code>customField</code> matches the exact field where the file will be used</p>\n</li>\n<li><p><code>fileName</code> must match the actual file type being uploaded</p>\n</li>\n<li><p>Files uploaded here are <strong>reusable across flows</strong></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚠️-file-constraints\">⚠️ File Constraints</h3>\n<ul>\n<li><p>Maximum file size: <strong>5 MB</strong></p>\n</li>\n<li><p>Maximum file name length: <strong>100 characters</strong></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-example-usage\">📌 Example Usage</h3>\n<ul>\n<li><p>Upload invoice → use File ID in <code>SupportingDocument</code> while creating payment</p>\n</li>\n<li><p>Upload ID proof → use File ID in <code>Front_Document</code> / <code>Back_Document</code> during beneficiary creation</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🚀-summary\">🚀 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;file-upload-summary&quot;\">Upload File → Get File ID → Use in Payments / Beneficiary / Virtual Account APIs\n\n</code></pre>\n<p>This ensures a <strong>consistent and reusable document handling mechanism</strong> across the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":true,"source":{"_postman_id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","name":"Files","type":"folder"}},"urlObject":{"path":["v2","files","upload"],"host":["{{baseURL}}"],"query":[{"key":"customField","value":"Payment_Invoice"},{"key":"fileName","value":"Ducket.pdf"}],"variable":[]}},"response":[],"_postman_id":"301b6634-8cb9-4ee9-b8bc-a5ef1bde06fb"}],"id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee","description":"<p>The \"Files\" section of this API provides functionality to upload and retrieve files in various formats such as png, jpg, jpeg and pdf. This section contains three endpoints which are described below:</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{sessionToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"14947baf-6f42-4dcb-9a28-a436d079cd7c","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"7b2c6442-41b1-4955-abd6-62094c18e332","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"9cf860b8-0688-4b63-a9f7-d01a9d34afee"}],"id":"3879924f-a111-441f-b4c9-5f6a05ec7f07","description":"<p>The API Reference section provides a <strong>comprehensive list of all available endpoints</strong> in the FV Merchant API suite, organized by functional categories.</p>\n<p>Each endpoint includes:</p>\n<ul>\n<li><p>Request structure and required parameters</p>\n</li>\n<li><p>Sample request/response examples</p>\n</li>\n<li><p>Field-level details for accurate integration</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🧭-how-to-use-this-section\">🧭 How to Use This Section</h3>\n<ul>\n<li><p>Use this section as a <strong>technical reference</strong> while building your integration</p>\n</li>\n<li><p>Follow the <strong>Use Cases</strong> section for end-to-end flows, and refer here for exact API details</p>\n</li>\n<li><p>Identify the relevant category (e.g., Beneficiaries, Payments, Transactions) and explore the endpoints within it</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🧩-api-categories\">🧩 API Categories</h3>\n<p>The APIs are grouped based on their functionality:</p>\n<ul>\n<li><p><strong>Beneficiaries</strong> → Create and manage recipients</p>\n</li>\n<li><p><strong>Payment Methods</strong> → Add and manage payment instruments</p>\n</li>\n<li><p><strong>Payments</strong> → Initiate outbound transactions (bank &amp; stablecoin)</p>\n</li>\n<li><p><strong>Transactions</strong> → Retrieve transaction details and history</p>\n</li>\n<li><p><strong>Accounts</strong> → View balances and deposit instructions</p>\n</li>\n<li><p><strong>Files</strong> → Upload and manage supporting documents</p>\n</li>\n</ul>\n<hr />\n","_postman_id":"3879924f-a111-441f-b4c9-5f6a05ec7f07"},{"name":"Webhooks","item":[{"name":"Payment Webhooks","item":[],"id":"31393443-17b8-4399-a1ec-139d6305e506","description":"<p>These webhooks notify you about <strong>outbound transaction lifecycle events</strong> in the FV Bank system—from creation to final status updates.</p>\n<hr />\n<h3 id=\"📌-transaction-event-types\">📌 Transaction Event Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TRANSACTION_CREATED</code></td>\n<td>Triggered when a transaction is created in the FV Bank system. The payment is not yet processed and requires compliance review before funds transfer begins.</td>\n</tr>\n<tr>\n<td><code>TRANSACTION_DENIED</code></td>\n<td>Triggered when a transaction is rejected by the compliance team. The payment will not be processed further.</td>\n</tr>\n<tr>\n<td><code>TRANSACTION_AUTHORIZED</code></td>\n<td>Triggered when a transaction receives approval from the compliance team. Some transactions may require multiple approvals before processing.</td>\n</tr>\n<tr>\n<td><code>TRANSACTION_STATUS</code></td>\n<td>Triggered when there is an update to the transaction status after funds transfer has been initiated. This includes updates from intermediary or receiving banks.</td>\n</tr>\n<tr>\n<td><code>TRANSACTION_CANCELLED</code></td>\n<td>Triggered when a transaction is cancelled by the compliance team before completion.</td>\n</tr>\n<tr>\n<td><code>TRANSACTION_EXPIRED</code></td>\n<td>Triggered when a transaction expires due to no action or approval from the compliance team within a defined timeframe.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"⚠️-important-note-on-transaction_status\">⚠️ Important Note on <code>TRANSACTION_STATUS</code></h3>\n<p>The <code>TRANSACTION_STATUS</code> webhook has a <strong>different payload structure</strong> compared to other transaction events.</p>\n<ul>\n<li><p>It includes status changes from the beneficiary bank side</p>\n</li>\n<li><p>Should be used to track <strong>progress after initiation</strong></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📦-example-transaction-webhook-all-events-except-transaction_status\">📦 Example: Transaction Webhook (All Events Except <code>TRANSACTION_STATUS</code>)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Date\": \"2023-06-15T07:46:18\",\n  \"Data\": {\n    \"CreatedDate\": \"2023-06-15T07:46:18.150Z\",\n    \"TransactionNumber\": \"FV000017423\",\n    \"Type\": \"Payment - Domestic (ACH)\",\n    \"Amount\": \"1.00\",\n    \"From\": \"Rishav_Business - Rishav\",\n    \"To\": \"Johnie Rogan\",\n    \"Currency\": \"USD\",\n    \"Description\": \"Rent payment\",\n    \"Purpose\": \"Savings\",\n    \"AdditionalData\": [\n      { \"label\": \"Routing Number\", \"value\": \"026001591\" },\n      { \"label\": \"Account Number\", \"value\": \"118877665101\" },\n      { \"label\": \"Bank_Account_Type\", \"value\": \"Saving\" },\n      { \"label\": \"Beneficiary First Name\", \"value\": \"Johnie\" },\n      { \"label\": \"Beneficiary Last Name\", \"value\": \"Johnie Rogan\" }\n    ]\n  },\n  \"Event\": \"TRANSACTION_CREATED\",\n  \"Id\": \"03539a28-4453-425d-9720-15037d0ef027\",\n  \"Message\": \"Transaction created\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"📦-example-transaction-status-webhook\">📦 Example: Transaction Status Webhook</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Date\": \"2022-05-18T07:32:22\",\n  \"Data\": {\n    \"CreatedDate\": \"2022-05-18T07:30:44.863Z\",\n    \"NewStatus\": \"COMPLETED\",\n    \"OldStatus\": \"IN PROCESS\",\n    \"TransactionNumber\": \"FV000004645\",\n    \"Type\": \"Payment - Domestic Wire\"\n  },\n  \"AdditionalData\": [\n      { \"label\": \"Routing Number\", \"value\": \"026001591\" },\n      { \"label\": \"Account Number\", \"value\": \"118877665101\" },\n      { \"label\": \"Bank_Account_Type\", \"value\": \"Saving\" },\n      { \"label\": \"Beneficiary First Name\", \"value\": \"Johnie\" },\n      { \"label\": \"Beneficiary Last Name\", \"value\": \"Johnie Rogan\" }\n   ],\n  \"Event\": \"TRANSACTION_STATUS\",\n  \"Message\": \"The member transaction status changed\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🧠-how-to-use-these-events-payments\">🧠 How to Use These Events (Payments)</h3>\n<ul>\n<li><p>Use <code>TRANSACTION_CREATED</code> to detect that an outbound payment has been initiated and is awaiting compliance review</p>\n</li>\n<li><p>Use <code>TRANSACTION_AUTHORIZED</code> to confirm the payment has passed compliance checks and is approved for processing</p>\n</li>\n<li><p>Use <code>TRANSACTION_STATUS</code> to track real-time updates once funds movement has begun (e.g., processing, completed)</p>\n</li>\n<li><p>Use <code>TRANSACTION_DENIED</code>, <code>TRANSACTION_CANCELLED</code>, and <code>TRANSACTION_EXPIRED</code> as failure or terminal states requiring attention or retry logic</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚠️-best-practices\">⚠️ Best Practices</h3>\n<ul>\n<li><p>Always verify webhook signatures before processing</p>\n</li>\n<li><p>Handle duplicate events (idempotency)</p>\n</li>\n<li><p>Use <code>TransactionNumber</code> to reconcile with your system</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;txn-summary&quot;\">Compliance Flow → CREATED → AUTHORIZED / DENIED → CANCELLED / EXPIRED  \nExecution Flow → STATUS (IN PROCESS → COMPLETED / FAILED)\n\n</code></pre>\n<p>These webhooks allow you to build <strong>real-time tracking and reconciliation</strong> for all outbound payments.</p>\n","_postman_id":"31393443-17b8-4399-a1ec-139d6305e506"},{"name":"Deposit Webhooks","item":[],"id":"d4d3ba53-19ec-4298-8a30-b2682e7e7b41","description":"<p>These webhooks notify you about <strong>incoming deposits</strong> to your FV Bank account, including their compliance lifecycle and final outcome.</p>\n<hr />\n<h3 id=\"📌-deposit-event-types\">📌 Deposit Event Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>DEPOSIT_RECEIVED</code></td>\n<td>Triggered when FV Bank receives a deposit against your deposit instructions. The funds are not yet credited and require compliance review.</td>\n</tr>\n<tr>\n<td><code>DEPOSIT_AUTHORIZED</code></td>\n<td>Triggered when the deposit is approved by compliance and funds are successfully credited to your account.</td>\n</tr>\n<tr>\n<td><code>DEPOSIT_DENIED</code></td>\n<td>Triggered when a deposit is rejected by the compliance team and will not be credited.</td>\n</tr>\n<tr>\n<td><code>DEPOSIT_CANCELLED</code></td>\n<td>Triggered when a deposit is cancelled by the compliance team before completion.</td>\n</tr>\n<tr>\n<td><code>DEPOSIT_RETURNED</code></td>\n<td>Triggered when the deposit is returned back to the original sender of funds.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"📦-example-deposit-webhook\">📦 Example: Deposit Webhook</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Date\": \"2022-01-13T04:41:53\",\n  \"Data\": {\n    \"CreatedDate\": \"2023-02-17T11:09:31.609Z\",\n    \"TransactionNumber\": \"FV000014212\",\n    \"Type\": \"Deposit - Domestic Wire\",\n    \"Amount\": \"3999600.00\",\n    \"From\": \"FALCONX LIMITED\",\n    \"To\": \"Raj Biz Co - Raj Biz\",\n    \"Currency\": \"USD\",\n    \"Description\": \"DEPOSIT REFERENCE: 7801000107\",\n    \"AdditionalData\": [\n      {\n        \"label\": \"Originator Name\",\n        \"value\": \"FALCONX LIMITED\"\n      },\n      {\n        \"label\": \"Originator Account Number\",\n        \"value\": \"5090013995\"\n      },\n      {\n        \"label\": \"Originator Address\",\n        \"value\": \"LEVEL G, OFFICE 1/1191, QUANTUM HOUSE 75 ABATE RIGORD STREET\"\n      },\n      {\n        \"label\": \"IMAD\",\n        \"value\": \"20220913MMQFMPUR001023\"\n      },\n      {\n        \"label\": \"OMAD\",\n        \"value\": \"20220913GMQFMP0101552709131240\"\n      },\n      {\n        \"label\": \"Import Key\",\n        \"value\": \"2ac616d6-9a7c-4bae-8aeb-ea6d494f6fdb\"\n      }\n    ]\n  },\n  \"Event\": \"DEPOSIT_RECEIVED\",\n  \"Message\": \"Deposit created\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🧾-virtual-account-deposits\">🧾 Virtual Account Deposits</h3>\n<p>If a deposit is made to a <strong>virtual account mapped to a beneficiary</strong>, an additional field will be included in the webhook payload:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Date\": \"2022-01-13T04:41:53\",\n  \"Data\": {\n    \"CreatedDate\": \"2023-02-17T11:14:25.634Z\",\n    \"TransactionNumber\": \"FV000014214\",\n    \"Type\": \"Deposit - Domestic Wire\",\n    \"Amount\": \"400000\",\n    \"From\": \"FALCONX LIMITED\",\n    \"To\": \"Raj Biz Co - Raj Biz\",\n    \"Currency\": \"USD\",\n    \"Description\": \"780008000006\",\n    \"AdditionalData\": [\n      {\n        \"label\": \"Originator Name\",\n        \"value\": \"FALCONX LIMITED\"\n      },\n      {\n        \"label\": \"Originator Account Number\",\n        \"value\": \"5090013995\"\n      },\n      {\n        \"label\": \"Originator Address\",\n        \"value\": \"LEVEL G, OFFICE 1/1191, QUANTUM HOUSE 75 ABATE RIGORD STREET\"\n      },\n      {\n        \"label\": \"IMAD\",\n        \"value\": \"20220913MMQFMPUR001023\"\n      },\n      {\n        \"label\": \"OMAD\",\n        \"value\": \"20220913GMQFMP0101552709131240\"\n      },\n      {\n        \"label\": \"Import Key\",\n        \"value\": \"2ac616d6-9a7c-4bae-8aeb-ea6d494f6fdb\"\n      },\n      {\n        \"label\": \"Virtual Account\",\n        \"value\": \"780008000006\"\n      }\n    ]\n  },\n  \"Event\": \"DEPOSIT_RECEIVED\",\n  \"Message\": \"Deposit created\"\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🧠-how-to-use-these-events\">🧠 How to Use These Events</h3>\n<ul>\n<li><p>Use <code>DEPOSIT_RECEIVED</code> to detect incoming funds awaiting approval</p>\n</li>\n<li><p>Use <code>DEPOSIT_AUTHORIZED</code> as the <strong>final success state</strong> (funds credited)</p>\n</li>\n<li><p>Handle <code>DENIED</code>, <code>CANCELLED</code>, and <code>RETURNED</code> as failure scenarios</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"⚠️-important-notes\">⚠️ Important Notes</h3>\n<ul>\n<li><p>Deposits follow a <strong>compliance-driven lifecycle</strong> similar to payments</p>\n</li>\n<li><p>Funds are <strong>only available after</strong> <strong><code>DEPOSIT_AUTHORIZED</code></strong></p>\n</li>\n<li><p>Always use <code>TransactionNumber</code> for reconciliation</p>\n</li>\n<li><p>Additional details (originator info, bank references) are available in <code>AdditionalData</code></p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-id=&quot;deposit-summary&quot;\">RECEIVED → AUTHORIZED (Success)  \n         → DENIED / CANCELLED / RETURNED (Failure)\n\n</code></pre>\n<p>These webhooks enable <strong>real-time tracking and reconciliation of incoming funds</strong> into your FV account.</p>\n","_postman_id":"d4d3ba53-19ec-4298-8a30-b2682e7e7b41"}],"id":"22842df9-8d9d-4cd5-a4ee-43679c8a6eb5","description":"<p>Webhooks allow you to receive <strong>real-time notifications</strong> about important events related to <strong>outbound</strong> and <strong>inbound</strong> transactions in your FV Merchant account, eliminating the need to continuously poll APIs.</p>\n<hr />\n<h3 id=\"📡-how-webhooks-work\">📡 How Webhooks Work</h3>\n<p>When an event occurs (e.g., payment status update or deposit confirmation), FV Bank sends an <strong>HTTP POST request</strong> to your configured webhook URL with event details.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-text\">Event Occurs → FV System → Webhook POST → Your Server → Process Event\n\n</code></pre>\n<hr />\n<h3 id=\"⚙️-webhook-setup\">⚙️ Webhook Setup</h3>\n<p>To receive webhooks, you must provide a <strong>publicly accessible HTTPS endpoint</strong>.</p>\n<ul>\n<li><p>The endpoint must accept <strong>POST requests</strong></p>\n</li>\n<li><p>It should return a <strong>200 OK response</strong> to acknowledge successful receipt</p>\n</li>\n<li><p>Non-200 responses will trigger retries</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🔐-webhook-security-signature-verification\">🔐 Webhook Security (Signature Verification)</h3>\n<p>Each webhook request includes a signature header to verify authenticity.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">x-webhook-signature: &lt;signature&gt;\n\n</code></pre>\n<h4 id=\"how-to-verify\">How to verify:</h4>\n<ol>\n<li><p>Use your <strong>webhook secret key</strong></p>\n</li>\n<li><p>Compute HMAC SHA256 of the request payload</p>\n</li>\n<li><p>Compare with the signature header</p>\n</li>\n</ol>\n<p>Example (Node.js):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const crypto = await import('crypto');\nconst signature = res.headers['x-signature'];\nconst hmac = crypto.createHmac('sha256', CLIENT_SECRET);\nconst expectedSignature = hmac.update(JSON.stringify(res.body?.Data)).digest('hex');\nconst a = Buffer.from(signature);\nconst b = Buffer.from(expectedSignature);\nif (crypto.timingSafeEqual(a, b)) {\n    console.log('Matched');\n} else {\n    console.log('Signature Not Matched');\n}\n\n</code></pre>\n<hr />\n<h3 id=\"🔁-retry-mechanism\">🔁 Retry Mechanism</h3>\n<p>If your server does not return a <code>200 OK</code> response:</p>\n<ul>\n<li><p>The webhook will be retried automatically</p>\n</li>\n<li><p>Multiple retry attempts will be made with increasing intervals</p>\n</li>\n</ul>\n<blockquote>\n<p>Ensure your endpoint is idempotent to safely handle duplicate events </p>\n</blockquote>\n<hr />\n<h3 id=\"📌-best-practices\">📌 Best Practices</h3>\n<ul>\n<li><p>Verify webhook signatures before processing</p>\n</li>\n<li><p>Store processed event IDs to prevent duplication</p>\n</li>\n<li><p>Use webhooks for real-time updates and APIs for reconciliation</p>\n</li>\n<li><p>Always return <code>200 OK</code> quickly, then process asynchronously</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<p>Webhooks provide a reliable way to stay updated on:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-text\">Payments → Status Updates  \nDeposits → Confirmation Events  \n\n</code></pre>\n<p>They are essential for building <strong>real-time, event-driven integrations</strong>.</p>\n","_postman_id":"22842df9-8d9d-4cd5-a4ee-43679c8a6eb5"},{"name":"Errors","item":[],"id":"5b3c5a4e-f477-4618-aa9e-511d59f1d139","description":"<p>The FV Merchant APIs use <strong>standard HTTP status codes</strong> along with a structured response body to indicate success or failure of a request.</p>\n<hr />\n<h3 id=\"🧾-error-response-structure\">🧾 Error Response Structure</h3>\n<p>All error responses follow a consistent format:</p>\n<hr />\n<h3 id=\"🔢-http-status-codes\">🔢 HTTP Status Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Request successful</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request / validation error</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized (invalid or expired token)</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden (insufficient permissions)</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Resource not found</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal server error</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"🚨-common-error-types\">🚨 Common Error Types</h3>\n<h4 id=\"1-authentication-errors\">1. Authentication Errors</h4>\n<ul>\n<li><p>Invalid or expired SessionToken</p>\n</li>\n<li><p>Missing <code>Authorization</code>header</p>\n</li>\n</ul>\n<p>👉 <strong>Fix:</strong> Regenerate token via <code>/auth</code></p>\n<hr />\n<h4 id=\"2-validation-errors\">2. Validation Errors</h4>\n<ul>\n<li><p>Missing required fields</p>\n</li>\n<li><p>Incorrect field formats (email, amount, etc.)</p>\n</li>\n<li><p>Invalid enum values</p>\n</li>\n</ul>\n<p>👉 <strong>Fix:</strong> Validate request body against API specs</p>\n<hr />\n<h4 id=\"3-business-logic-errors\">3. Business Logic Errors</h4>\n<ul>\n<li><p>Invalid Beneficiary / Payment Instrument ID</p>\n</li>\n<li><p>Insufficient balance</p>\n</li>\n<li><p>Compliance rejection</p>\n</li>\n</ul>\n<p>👉 <strong>Fix:</strong> Verify data and transaction eligibility</p>\n<hr />\n<h4 id=\"4-file-upload-errors\">4. File Upload Errors</h4>\n<ul>\n<li><p>File size exceeds limit (5 MB)</p>\n</li>\n<li><p>Invalid file type or name</p>\n</li>\n<li><p>Incorrect <code>customField</code> mapping</p>\n</li>\n</ul>\n<p>👉 <strong>Fix:</strong> Follow file constraints and mapping rules</p>\n<hr />\n<h2 id=\"⚠️-error-response-format\">⚠️ Error Response Format</h2>\n<p>All APIs in the system return errors in a <strong>consistent structure</strong>, making it easier to debug and handle failures programmatically.</p>\n<hr />\n<h3 id=\"🧾-error-structure\">🧾 Error Structure</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 400,\n  \"ResponseMessage\": \"BadRequest\",\n  \"RequestID\": \"unique-request-id\",\n  \"ResponseErrors\": [\n    \"Detailed error message\"\n  ]\n}\n\n</code></pre>\n<p><strong>Fields:</strong></p>\n<ul>\n<li><p><code>ResponseCode</code> → HTTP status code</p>\n</li>\n<li><p><code>ResponseMessage</code> → High-level error type</p>\n</li>\n<li><p><code>RequestID</code> → Unique identifier for tracing the request</p>\n</li>\n<li><p><code>ResponseErrors</code> → List of detailed error messages</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🧩-types-of-errors-in-response\">🧩 Types of Errors In Response</h3>\n<h4 id=\"1-validation-errors\">1. Validation Errors</h4>\n<p>Occurs when request input is missing or invalid.</p>\n<p><strong>Examples:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 400,\n  \"ResponseMessage\": \"BadRequest\",\n  \"RequestID\": \"3af1ad70-3e57-11f1-af90-b99d00c047b3\",\n  \"ResponseErrors\": [\n    \"body[Address]: Mandatory Fields are Missing.\"\n  ]\n}\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 400,\n  \"ResponseMessage\": \"BadRequest\",\n  \"RequestID\": \"5e922930-3e57-11f1-af90-b99d00c047b3\",\n  \"ResponseErrors\": [\n    \"body[Address]: Invalid Data.\"\n  ]\n}\n\n</code></pre>\n<p>👉 <strong>How to handle:</strong></p>\n<ul>\n<li><p>Ensure all required fields are provided</p>\n</li>\n<li><p>Validate data formats before sending requests</p>\n</li>\n</ul>\n<hr />\n<h4 id=\"2-business-logic-errors\">2. Business Logic Errors</h4>\n<p>Occurs when the request is valid but violates system rules.</p>\n<p><strong>Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ResponseCode\": 400,\n  \"ResponseMessage\": \"BadRequest\",\n  \"RequestID\": \"7f8e38e0-3e57-11f1-af90-b99d00c047b3\",\n  \"ResponseErrors\": [\n    \"The account you are trying to add already exists\"\n  ]\n}\n\n</code></pre>\n<p>👉 <strong>How to handle:</strong></p>\n<ul>\n<li><p>Check existing data before creating new records</p>\n</li>\n<li><p>Avoid duplicate or conflicting operations</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"🧠-best-practices\">🧠 Best Practices</h3>\n<ul>\n<li><p>Always log the <code>RequestID</code> for debugging and support</p>\n</li>\n<li><p>Parse <code>ResponseErrors</code> to display meaningful messages to users</p>\n</li>\n<li><p>Do not retry requests without fixing the underlying issue</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"📌-summary\">📌 Summary</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>400 Error → Check ResponseErrors → Fix Input / Data → Retry\n\n</code></pre><p>This structure ensures <strong>clear, traceable, and actionable error handling</strong> across all APIs.</p>\n<hr />\n<h3 id=\"🔁-handling-token-expiry\">🔁 Handling Token Expiry</h3>\n<ul>\n<li><p>If API returns <strong>401 Unauthorized</strong>, regenerate SessionToken</p>\n</li>\n<li><p>If <code>x-refresh-token</code> is returned in headers:</p>\n<ul>\n<li><p>Replace existing token</p>\n</li>\n<li><p>Continue without re-authentication</p>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n<h3 id=\"🧠-best-practices-1\">🧠 Best Practices</h3>\n<ul>\n<li><p>Always log <code>ResponseCode</code> and <code>ResponseMessage</code></p>\n</li>\n<li><p>Use <strong>Webhooks</strong> to track transaction failures</p>\n</li>\n<li><p>Implement <strong>retry logic</strong> only for safe operations</p>\n</li>\n<li><p>Avoid retrying failed payments without validation</p>\n</li>\n</ul>\n","_postman_id":"5b3c5a4e-f477-4618-aa9e-511d59f1d139"},{"name":"LLM Documentation","item":[],"id":"b7c56d25-ad1e-45b4-81e4-3464ce89e7e4","description":"<p>This API collection includes an AI/LLM-readable documentation file in Markdown (<code>.md</code>) format.</p>\n<p>LLMs, AI agents, and developer tools can use this document to:</p>\n<ul>\n<li><p>Understand API workflows</p>\n</li>\n<li><p>Build endpoint relationships</p>\n</li>\n<li><p>Infer request sequencing</p>\n</li>\n<li><p>Generate integration code</p>\n</li>\n<li><p>Answer implementation questions</p>\n</li>\n<li><p>Create contextual knowledge for automation</p>\n</li>\n</ul>\n<p>The Markdown documentation contains:</p>\n<ul>\n<li><p>API workflow explanations</p>\n</li>\n<li><p>Endpoint relationships</p>\n</li>\n<li><p>Request/response context</p>\n</li>\n<li><p>Business logic descriptions</p>\n</li>\n<li><p>Validation rules</p>\n</li>\n<li><p>Entity definitions</p>\n</li>\n<li><p>Integration examples</p>\n</li>\n</ul>\n<p>LLM Documentation File: <a href=\"https://github.com/fvbank/fvbank-api-llm/blob/main/llm-context.md\">https://github.com/fvbank/fvbank-api-llm/blob/main/llm-context.md</a>  </p>\n<p>Recommended Usage:</p>\n<ul>\n<li><p>Use this file as a knowledge source for AI assistants</p>\n</li>\n<li><p>Index this file into vector databases/RAG systems</p>\n</li>\n<li><p>Crawl this file for API context generation</p>\n</li>\n<li><p>Use alongside OpenAPI/Postman schemas for better semantic understanding</p>\n</li>\n</ul>\n<p>This documentation is optimized for:</p>\n<ul>\n<li><p>Retrieval-Augmented Generation (RAG)</p>\n</li>\n<li><p>AI coding assistants</p>\n</li>\n<li><p>Autonomous agents</p>\n</li>\n<li><p>API copilots</p>\n</li>\n<li><p>Semantic search systems</p>\n</li>\n</ul>\n","_postman_id":"b7c56d25-ad1e-45b4-81e4-3464ce89e7e4"}],"event":[{"listen":"prerequest","script":{"id":"5053cc55-f155-4f58-b964-15180da420e6","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"0c919639-1ac8-4be7-937c-db675b3064f5","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"https://docs.apis.fvbank.us/v2"},{"key":"transaction_id","value":"sample-transaction-id"},{"key":"client_id","value":"your_client_id"},{"key":"client_secret","value":"your_client_secret"},{"key":"jwt_token","value":""},{"key":"session_token","value":""}]}