{"info":{"_postman_id":"881be6e6-e3bb-4f7c-a377-dacd3cf5e53c","name":"VamosPago.com.en_us","description":"<html><head></head><body><h1 id=\"environment\">Environment</h1>\n<p>We only have one production environment, and all functions can be verified in the production environment.</p>\n<ul>\n<li><p><strong>API Gateway URL:</strong></p>\n<ul>\n<li><p>Latin America-API（BRL-Brazil、MXN-Mexico、PEN-Peru、CLP-Chile、COL-Colombia）：<a href=\"https://apis.vamospago.com/gateway/base/biz\">https://apis.vamospago.com/gateway/base/biz</a></p>\n</li>\n<li><p>Asia-API（INR-India、IDR-Indonesia）：<a href=\"https://api.vamospago.com/gateway/base/biz\">https://api.vamospago.com/gateway/base/biz</a></p>\n</li>\n<li><p>Africa-API（KES-Kenya、NGN-Nigeria、TZS-Tanzania）：<a href=\"https://afapi.vamospago.com/gateway/base/biz\">https://afapi.vamospago.com/gateway/base/biz</a></p>\n</li>\n</ul>\n</li>\n<li><p><strong>OMS Gateway URL:</strong></p>\n<ul>\n<li><p>Latin America-OMS：<a href=\"https://mchsla.vamospago.com\">mchsla.vamospago.com</a></p>\n</li>\n<li><p>Asia-OMS：<a href=\"https://mchsin.vamospago.com\">mchsin.vamospago.com</a></p>\n</li>\n<li><p>Africa-OMS：<a href=\"https://mchsaf.vamospago.com\">mchsaf.vamospago.com</a></p>\n</li>\n</ul>\n</li>\n<li><p><strong>Production Servers IPs：</strong></p>\n<ul>\n<li><p>Latin America-IPs：<code>18.228.164.232、18.228.73.43、54.233.252.236、54.94.8.45</code></p>\n</li>\n<li><p>Asia-IPs：<code>13.200.70.4、15.207.47.92、3.108.48.106、43.205.72.188</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"api-common-request-format\">API Common-Request format</h1>\n<blockquote>\n<p>API Method：<strong>HTTPS POST（Not support GET method）</strong>，The API based on HTTPS. Request and Response are JSON data format.we using merchant key + SHA512 signature + IP whitelist to ensure request data security and network security.<br>API idempotent control：Existence generation active callbacks and passive callbacks in the system, the merchant may be called back multiple times in one order. Please do a good job of anti-repetition processing to avoid transaction exceptions.<br>“+”：When assembling strings in the case, the plus sign means connection . </p>\n</blockquote>\n<h2 id=\"api-request-header-parameter-description（all-api-requests-need-to-add-the-following-header-parameters）\">API Request Header parameter description（All API requests need to add the following Header parameters）</h2>\n<ul>\n<li><p>The request parameters are composed of common header parameters and each function's APIs parameters.</p>\n</li>\n<li><p>General header, please specify the parameters (the following parameters are put into the http header)</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Filed Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serviceName</td>\n<td>API service name</td>\n<td>String</td>\n<td>required</td>\n<td>api.pay</td>\n</tr>\n<tr>\n<td>method</td>\n<td>Business method name</td>\n<td>String</td>\n<td>required</td>\n<td>Payment:pay;  <br>Payout:payOut;  <br>Order inquiry:verifyStatus;</td>\n</tr>\n<tr>\n<td>mchId</td>\n<td>Merchant No; <strong>assigned by the OMS platform;</strong></td>\n<td>String</td>\n<td>required</td>\n<td>202301171615200307257738653</td>\n</tr>\n<tr>\n<td>signType</td>\n<td>Signature type</td>\n<td>String</td>\n<td>required</td>\n<td>SHA512</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Timestamp（s）</td>\n<td>String</td>\n<td>required</td>\n<td>SHA512</td>\n</tr>\n<tr>\n<td>sign</td>\n<td>Signature string；Generation rule reference to <strong>[Generate signature string Case]</strong></td>\n<td>String</td>\n<td>required</td>\n<td>ae3daa4e6739a3955d67981f521d4f7e5adefbc999d0205442fb320c8de10026e60660d378ae803fc02837fe7c6b2997c263df67115bd8cb871d80e992e10daa</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"generate-signature-string-case\">Generate signature string Case</h3>\n<blockquote>\n<p>Signature Body Rule: <code>mchId + serviceName + method + timestamp + signType + data + key</code> </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\">// Order inquiry API request demo\n curl --location 'https://afapi.vamospago.com/gateway/base/biz' \\\n--header 'method: verifyStatus' \\\n--header 'signType: SHA512' \\\n--header 'serviceName: api.pay' \\\n--header 'mchId: 1416010331032883201' \\\n--header 'timestamp: 1631671670' \\\n--header 'sign: e5954685d9642303c1f230c7da95a423907875fb60d2f9810793fa1a834c38f32e99769260ec2e789a55d4118d887783c35d708f5f00740c8ee6f14f556dc97a' \\\n--header 'Content-Type: application/json' \\\n--data '{\"orderId\":\"202304201648929145423233024\"}'\n// This case,signatureBodyData = 1416010331032883201api.payverifyStatus1631671670SHA512{\"orderId\":\"202304201648929145423233024\"}tRnSmaqmdJLb22\nString signatureBodyData = mchId + serviceName + method + timestamp + signType + data + key\nDigester d = DigestUtil.digester(DigestAlgorithm.SHA512);\n// This case,signatureString = e5954685d9642303c1f230c7da95a423907875fb60d2f9810793fa1a834c38f32e99769260ec2e789a55d4118d887783c35d708f5f00740c8ee6f14f556dc97a\nString signatureString = d.digestHex(signatureBodyData);\n\n</code></pre>\n<ul>\n<li><p>Note that sign does not participate in the signature</p>\n</li>\n<li><p><code>data</code> is a JSON string of API payload body.</p>\n</li>\n<li><p><code>timestamp</code> consistent with the timestamp parameter of HTTP Header.</p>\n</li>\n<li><p><code>URL：</code></p>\n</li>\n<li><p>Latin America-OMS：<a href=\"https://mchsla.vamospago.com/login\">https://mchsla.vamospago.com/login</a></p>\n</li>\n<li><p>Asia-OMS：<a href=\"https://mchsin.vamospago.com/login\">https://mchsin.vamospago.com/login</a></p>\n</li>\n<li><p>Africa-OMS：<a href=\"https://mchsaf.vamospago.com/login\">https://mchsaf.vamospago.com/login</a></p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/22745727-b6f1-40aa-88d6-2af06307fab8/aW1hZ2UucG5n\" width=\"3618\" height=\"666\">\n\n<h1 id=\"api-common-response-format\">API Common-Response format</h1>\n<blockquote>\n<p>The response data is in JSON format </p>\n</blockquote>\n<h2 id=\"api-response-parameter-description-all-api-responses-are-returned-in-the-following-format\">API Response parameter description (All API responses are returned in the following format)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>resultCode</td>\n<td>Status Code</td>\n<td>String</td>\n<td>required</td>\n<td>Success:000000;  <br>Failed:XXXXXX;</td>\n</tr>\n<tr>\n<td>errorCode</td>\n<td>Error Code</td>\n<td>String</td>\n<td>required</td>\n<td>Success:000000;  <br>Failed:XXXXXX;</td>\n</tr>\n<tr>\n<td>errorMsg</td>\n<td>Error Message</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>Response body data</td>\n<td>Object</td>\n<td>optional</td>\n<td>JSON format data</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>Timestamp（s）</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"api-webhook-callback\">API Webhook (Callback)</h1>\n<blockquote>\n<p>If the webhook function needs to be enabled, the customer fills in the webhook address in the Http parameter callbackUrl of the request when placing an order through the API, otherwise no notification will be made, and the system will notify the customer through the POST JSON data callback.<br>Webhooks When the collection and payment order status has final data, an HTTP callback will be initiated. </p>\n</blockquote>\n<h2 id=\"webhook-parameter-description（http-post）\">Webhook parameter description（Http POST）</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Code</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mchOrderId</td>\n<td>Merchant order number</td>\n<td>String</td>\n<td>required</td>\n<td>Deffe998283</td>\n</tr>\n<tr>\n<td>orderId</td>\n<td>Platform order number</td>\n<td>String</td>\n<td>required</td>\n<td>202304141646943827467169734</td>\n</tr>\n<tr>\n<td>bankId</td>\n<td>Bank order number</td>\n<td>String</td>\n<td>optional</td>\n<td>DF55BA0F441A</td>\n</tr>\n<tr>\n<td>orderStatus</td>\n<td>Order Status;  <br>SUCCESS;  <br>FAILED;  <br>REVERSED;  <br>PAYING;  <br>CLOSED;</td>\n<td>String</td>\n<td>required</td>\n<td>SUCCESS</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Order amount; Maxim 2 decimals</td>\n<td>String</td>\n<td>required</td>\n<td>1.00</td>\n</tr>\n<tr>\n<td>realAmount</td>\n<td>actual amount; Maxim 2 decimals</td>\n<td>String</td>\n<td>required</td>\n<td>1.00</td>\n</tr>\n<tr>\n<td>orderType</td>\n<td>Order Type;  <br>PAYMENT:  <br>PAYOUT;</td>\n<td>String</td>\n<td>required</td>\n<td>PAYMENT</td>\n</tr>\n<tr>\n<td>failMessage</td>\n<td>failure reason</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>createTime</td>\n<td>Creation time (zero time zone);  <br>format:yyyyMMddHHmmss;</td>\n<td>String</td>\n<td>required</td>\n<td>20230307000000</td>\n</tr>\n<tr>\n<td>transIds</td>\n<td>Extended order number</td>\n<td>String</td>\n<td>optional</td>\n<td>EDF55BA0F441A</td>\n</tr>\n<tr>\n<td>payMethod</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>PIX</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"parameter-format：\">Parameter format：</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\"> String data = \"{\\\"orderType\\\":\\\"PAYOUT\\\",\\\"bankId\\\":\\\"1495251170_celcoin\\\",\\\"amount\\\":\\\"462.15\\\",\\\"createTime\\\":\\\"20230415151200\\\",\\\"orderId\\\":\\\"202304151647256461949132800\\\",\\\"payMethod\\\":\\\"PIX\\\",\\\"transIds\\\":\\\"E1393589320230415151200159477877\\\",\\\"orderStatus\\\":\\\"SUCCESS\\\",\\\"mchOrderId\\\":\\\"TD20230415231158509529434\\\",\\\"failMessage\\\":\\\"\\\"}\";\n\n</code></pre>\n<h2 id=\"webhook-signature-description\">Webhook signature description</h2>\n<ul>\n<li><p>The merchant key used for signature is assigned by the OMS platform</p>\n</li>\n<li><p>The callback signature sign parameter is included in the HTTP header</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sign</td>\n<td>Signature string，return http header</td>\n<td>String</td>\n<td>required</td>\n<td>ae3daa4e6739a3955d67981f521d4f7e5adefbc999d0205442fb320c8de10026e60660d378ae803fc02837fe7c6b2997c263df67115bd8cb871d80e992e10daa</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"webhook-header-signature-verification-case\">Webhook Header Signature verification case</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\">String signBody = data + key\nDigester d = DigestUtil.digester(DigestAlgorithm.SHA512);  \nString sign = d.digestHex(signBody);\nBoolean verifyResult=StrUtil.equals(sign,request.getHeader('sign'))\n\n</code></pre>\n<ul>\n<li><p><code>data</code> it is the JSON string of the callback data, and key is the merchant key assigned by the platform, which can be obtained from the merchant management menu key query on the OMS platform.</p>\n</li>\n<li><p><strong>Must respond</strong> <strong><code>success</code></strong> <strong>Indicates that the request was accepted successfully，Otherwise not</strong> <strong><code>success</code></strong> <strong>，callback will be initiated to retry, and the retry time callback will be tried 7</strong> <strong><code>times</code></strong> <strong>in increments of 5</strong> <strong><code>min</code></strong> <strong>callback times</strong></p>\n</li>\n</ul>\n<h1 id=\"webhook-test-signaturet\">Webhook test signaturet</h1>\n<ul>\n<li>After login OMS platform, the order is completed through the API, you can query the orders in the processing, click Mock Success and Mock Fail buttons to simulate the successful and failed notice of the order of Webhook URL address, which is verification signatures and messages. And this action only mock not settle order.</li>\n</ul>\n<img src=\"https://content.pstmn.io/679b866c-38aa-4970-9fe7-cd8a421b225c/aW1hZ2UucG5n\" width=\"814\" height=\"227\">\n\n<h1 id=\"ip-whitelist\">IP whitelist</h1>\n<ul>\n<li><p>API Access must provide the public IP address of the server that initiates the production request.</p>\n</li>\n<li><p>Each access provider can bind up to 20 IP addresses, separated by commas, e.g. <code>192.168.1.1, 192.168.1.2</code>.</p>\n</li>\n</ul>\n<h2 id=\"order-fee\">Order Fee</h2>\n<ul>\n<li>Our order fee is only reserved 2 decimal places, and the order fee is rounded up</li>\n</ul>\n<h1 id=\"api-response-code\">API Response code</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>000000</td>\n<td>success</td>\n</tr>\n<tr>\n<td>999999</td>\n<td>System error</td>\n</tr>\n<tr>\n<td>999998</td>\n<td>Network error</td>\n</tr>\n<tr>\n<td>999997</td>\n<td>Params are wrong</td>\n</tr>\n<tr>\n<td>999996</td>\n<td>mch balance is not enough.</td>\n</tr>\n<tr>\n<td>999995</td>\n<td>callback wrong api.</td>\n</tr>\n<tr>\n<td>999994</td>\n<td>Business error</td>\n</tr>\n<tr>\n<td>999993</td>\n<td>Illegal requested parameters</td>\n</tr>\n<tr>\n<td>999992</td>\n<td>Digital signature check failure</td>\n</tr>\n<tr>\n<td>999991</td>\n<td>Unauthorized service</td>\n</tr>\n<tr>\n<td>999990</td>\n<td>Illegal data types</td>\n</tr>\n<tr>\n<td>999989</td>\n<td>Mch information does not exist</td>\n</tr>\n<tr>\n<td>999988</td>\n<td>Illegal request method</td>\n</tr>\n<tr>\n<td>999987</td>\n<td>Incorrect coding</td>\n</tr>\n<tr>\n<td>999986</td>\n<td>Sign is missed</td>\n</tr>\n<tr>\n<td>999985</td>\n<td>Sign type is missed</td>\n</tr>\n<tr>\n<td>999984</td>\n<td>MchId is missed</td>\n</tr>\n<tr>\n<td>999983</td>\n<td>Timestamp is missed</td>\n</tr>\n<tr>\n<td>999982</td>\n<td>Sign type is illegal</td>\n</tr>\n<tr>\n<td>999979</td>\n<td>Method not exist</td>\n</tr>\n<tr>\n<td>999978</td>\n<td>vo is missed</td>\n</tr>\n<tr>\n<td>999977</td>\n<td>illegal pro ip</td>\n</tr>\n<tr>\n<td>999976</td>\n<td>illegal test ip</td>\n</tr>\n<tr>\n<td>999975</td>\n<td>no enable mch</td>\n</tr>\n<tr>\n<td>999974</td>\n<td>illegal mch ips</td>\n</tr>\n<tr>\n<td>100000</td>\n<td>%s is illegal，%s will been fixed by param name。</td>\n</tr>\n<tr>\n<td>200000</td>\n<td>Get payu token failed.</td>\n</tr>\n<tr>\n<td>200001</td>\n<td>mch route bank can not been found.</td>\n</tr>\n<tr>\n<td>200002</td>\n<td>beneficiary name is mandatory.</td>\n</tr>\n<tr>\n<td>200003</td>\n<td>vpa and channel are mandatory.</td>\n</tr>\n<tr>\n<td>200004</td>\n<td>recipient CardNo is mandatory.</td>\n</tr>\n<tr>\n<td>200005</td>\n<td>beneficiary accountNum and IfscCode are mandatory.</td>\n</tr>\n<tr>\n<td>200006</td>\n<td>payout failed.</td>\n</tr>\n<tr>\n<td>200007</td>\n<td>payment type must be a same one in a batch payout request.</td>\n</tr>\n<tr>\n<td>200008</td>\n<td>exceed the max size in a batch payout reqeust.</td>\n</tr>\n<tr>\n<td>300000</td>\n<td>payr pay request failed.</td>\n</tr>\n<tr>\n<td>400000</td>\n<td>please do not submit the same order again.</td>\n</tr>\n<tr>\n<td>400001</td>\n<td>order have been done.</td>\n</tr>\n<tr>\n<td>400002</td>\n<td>mch account do not exist.</td>\n</tr>\n<tr>\n<td>400003</td>\n<td>payout request failed.</td>\n</tr>\n<tr>\n<td>400004</td>\n<td>order does not exist.</td>\n</tr>\n<tr>\n<td>400005</td>\n<td>mch balance is not enough.</td>\n</tr>\n<tr>\n<td>400006</td>\n<td>callback wrong api.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"order-state-mechanism\">Order State Mechanism</h1>\n<ul>\n<li><p><em><strong>The status of collection and payment is subject to the result of the final callback notification;</strong></em></p>\n</li>\n<li><p><em><strong>When the order status is successful, it may be updated to cancel due to actions such as cancellation initiated by the upstream;</strong></em></p>\n</li>\n<li><p><em><strong>When the order status is failed, if it is closed due to a timeout</strong></em> <code>_**(over 1 hours),**_</code> <em><strong>the system will notify the merchant that the timeout failed. If the customer pays again later, the order may be converted to success and successfully credited at this time, and the merchant will be notified;</strong></em></p>\n</li>\n<li><p><em><strong>Sometimes payout status will also change from failed to success, please</strong></em> <strong>reduce customers balance again.</strong></p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SUCCESS</td>\n<td>Success</td>\n<td></td>\n</tr>\n<tr>\n<td>FAILED</td>\n<td>Failed</td>\n<td></td>\n</tr>\n<tr>\n<td>REVERSED</td>\n<td>Revoke</td>\n<td>After the payment is successfully received, if it is withdrawn due to external reasons, the order will be reversed accordingly, such as refunding the payment.</td>\n</tr>\n<tr>\n<td>PAYING</td>\n<td>Processing</td>\n<td>Initial status of order</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"repeat-order-description\">Repeat Order Description</h1>\n<ul>\n<li><em><strong>In view of the current characteristics of payment collection in the some countries market, there may be legal duplication of payments. The system has manually intervened in customer complaint orders for such orders. If the customer requests duplicate income, the system can duplicate income (online) and notify the merchant. If the customer needs a refund, then refund processing (offline). After confirmation of repeated income, the notification message is the same as the normal notification message, but the number of repeated payment is added after all orders. For example, the normal order number is 123456789, then the order number is \"123456789_1\" when the income is confirmed for repeated payment.</strong></em></li>\n</ul>\n<h1 id=\"code-case\">Code case</h1>\n<ul>\n<li><p>JAVA SDK：<a href=\"https://github.com/todaypay-it/todaypay-sdk\">https://github.com/todaypay-it/todaypay-sdk</a></p>\n</li>\n<li><p>PHP demo</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> Request Assembly Case                                       \n  $data = '{\"a\":\"b\"}';\n     $curl = curl_init();\n        curl_setopt($curl,CURLOPT_URL, 'http://x407844r38.qicp.vip/gateway/base/biz');\n        curl_setopt($curl, CURLOPT_POST, 1); // Send a regular Post request\n        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);\n        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);\n        curl_setopt($curl, CURLOPT_POSTFIELDS, $data);\n        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);\n        curl_setopt($curl, CURLOPT_HTTPHEADER, array('serviceName:api.pay',\n             'method:pay',\n             'mchId:1539210393320419328',\n             'signType:SHA512',\n             'timestamp:4535443534',\n             'sign:jfkj4j3fj3hjkhuhfui4h3u',\n            'Content-type:application/json'));\n        $output = curl_exec($curl);\n        curl_close($curl);\n        echo $output;\n?&gt;\n General encryption algorithm                                       \nimport \"crypto/sha512\"\necho hash('sha512','1416010331032883201api.paypay4535443534SHA512{\"a\":\"b\"}tRnSmmdJLbTev');\n?&gt;\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Environment","slug":"environment"},{"content":"API Common-Request format","slug":"api-common-request-format"},{"content":"API Common-Response format","slug":"api-common-response-format"},{"content":"API Webhook (Callback)","slug":"api-webhook-callback"},{"content":"Webhook test signaturet","slug":"webhook-test-signaturet"},{"content":"IP whitelist","slug":"ip-whitelist"},{"content":"API Response code","slug":"api-response-code"},{"content":"Order State Mechanism","slug":"order-state-mechanism"},{"content":"Repeat Order Description","slug":"repeat-order-description"},{"content":"Code case","slug":"code-case"}],"owner":"10814992","collectionId":"881be6e6-e3bb-4f7c-a377-dacd3cf5e53c","publishedId":"2sA35A6QEp","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"337ab7","highlight":"337ab7"},"publishDate":"2024-03-21T10:49:47.000Z"},"item":[{"name":"Common-API","item":[{"name":"INQUIRY-Account Balance-API","event":[{"listen":"test","script":{"id":"f83a0f33-6d63-4d26-aaa7-64d180d3513c","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9dd39139-f05f-4ea9-b758-998bec6b156f","exec":[""],"type":"text/javascript"}}],"id":"2230a626-fce0-4ee3-906f-59adaa3f4435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"method","value":"balance","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"currency\":\"BRL\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Business method name</td>\n<td>String</td>\n<td>required</td>\n<td>balance</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Request parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>Currency;  <br />default INR currency;  <br />three-character code currency</td>\n<td>String</td>\n<td>optional</td>\n<td>BRL</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>Currency;</td>\n<td>String</td>\n<td>optional</td>\n<td>BRL</td>\n</tr>\n<tr>\n<td>balance</td>\n<td>balance;</td>\n<td>Number</td>\n<td>optional</td>\n<td>10.00</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"2bbf7cd7-6c1d-4f5e-a8b9-227f3a14b002","name":"IINQUIRY-Account Balance-API-invalid currency","originalRequest":{"method":"POST","header":[{"key":"method","value":"balance","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"currency\":\"IDR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Sat, 15 Apr 2023 16:46:06 GMT"},{"key":"content-length","value":"266"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"999999\",\n    \"sign\": \"ff673f0827697c578008fd8538e5a30ae21cd24e433011284c5dcffeef2067cfedf9959f79c115a91729be2b8c16299a177e6eabb5c3affcf38dd9b72421aba1\",\n    \"errorCode\": \"999972\",\n    \"signType\": \"SHA512\",\n    \"errorMsg\": \"illegal mch currency IDR\",\n    \"timestamp\": 1681577167351\n}"},{"id":"143a0450-5750-4ef6-ac3a-76b7a4623b98","name":"IINQUIRY-Account Balance-API-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"balance","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"currency\":\"IDR\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Sat, 15 Apr 2023 16:46:06 GMT"},{"key":"content-length","value":"266"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"balance\": 148.81,\n            \"currency\": \"BRL\"\n        }\n    ]\n}"}],"_postman_id":"2230a626-fce0-4ee3-906f-59adaa3f4435"},{"name":"INQUIRY-Order Status-API","event":[{"listen":"test","script":{"id":"f83a0f33-6d63-4d26-aaa7-64d180d3513c","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9dd39139-f05f-4ea9-b758-998bec6b156f","exec":[""],"type":"text/javascript"}}],"id":"07321071-8894-4eb1-a19d-cdac0ce60208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"method","value":"verifyStatus","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"orderId\":\"202304091645071110434316238\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Business method name</td>\n<td>String</td>\n<td>required</td>\n<td>verifyStatus</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Request parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>Platform order number</td>\n<td>String</td>\n<td>required</td>\n<td>It can be filled with one or multiple orders，for example, \"202304091645071110434316288,202304091645071110434316287\"</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameter （data is a entity Array, entity details like the below .）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>Platform order number</td>\n<td>String</td>\n<td>required</td>\n<td>202304091645071110434316288</td>\n</tr>\n<tr>\n<td>mchOrderId</td>\n<td>Merchant order number</td>\n<td>String</td>\n<td>required</td>\n<td>71110434316288</td>\n</tr>\n<tr>\n<td>orderType</td>\n<td>Order Type</td>\n<td>String</td>\n<td>required</td>\n<td>PAYMENT  <br />PAYOUT</td>\n</tr>\n<tr>\n<td>createTime</td>\n<td>Creation time (zero time zone);  <br />format:yyyyMMddHHmmss;</td>\n<td>String</td>\n<td>required</td>\n<td>20230409142812</td>\n</tr>\n<tr>\n<td>notifyTime</td>\n<td>notification time (zero time zone);  <br />format:yyyyMMddHHmmss;</td>\n<td>String</td>\n<td>optional</td>\n<td>20230409142812</td>\n</tr>\n<tr>\n<td>failMessage</td>\n<td>failure reason</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>bankId</td>\n<td>Bank order number</td>\n<td>String</td>\n<td>optional</td>\n<td>DF55BA0F441A，when order is successful, it is required.If one order is paid many times, this field value is different in every webhook.</td>\n</tr>\n<tr>\n<td>orderStatus</td>\n<td>Order Status;  <br />SUCCESS;  <br />FAILED;  <br />REVERSED;  <br />PAYING;</td>\n<td>String</td>\n<td>required</td>\n<td>SUCCESS</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Order amount; Maxim 2 decimals</td>\n<td>String</td>\n<td>required</td>\n<td>1.00</td>\n</tr>\n<tr>\n<td>realAmount</td>\n<td>actual amount; Maxim 2 decimals</td>\n<td>String</td>\n<td>required</td>\n<td>1.00</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>currency code</td>\n<td>String</td>\n<td>required</td>\n<td>MXN</td>\n</tr>\n<tr>\n<td>payMethod</td>\n<td>payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>PIX</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"128468be-2e9d-4685-bb70-20434ace054b","name":"INQUIRY-Order Status-API-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"balance","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"orderId\":\"202304091645071110434316288\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Sat, 15 Apr 2023 16:46:06 GMT"},{"key":"content-length","value":"266"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderType\": \"PAYMENT\",\n            \"amount\":1,\n            \"realAmount\":2,\n            \"bankId\":\"433234234234\",\n            \"createTime\": \"20230409142812\",\n            \"orderId\": \"202304091645071110434316288\",\n            \"notifyTime\": \"20230409165600\",\n            \"orderStatus\": \"SUCCESS\",\n            \"mchOrderId\": \"12325343243244375\"\n        }\n    ]\n}"},{"id":"53d740ba-ef37-406e-8c2a-c38840feed9f","name":"INQUIRY-Order Status-API-invalid order","originalRequest":{"method":"POST","header":[{"key":"method","value":"balance","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"orderId\":\"202304091645071110434316238\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Sat, 15 Apr 2023 16:46:06 GMT"},{"key":"content-length","value":"266"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"999999\",\n    \"sign\": \"5e9174cdcf21ecc74ebeb076707787942942dd3694817ff7b54946908709fd8107f64c56d1888d380ad07244824bcd7f52845ab0a840941e9d5fc91c53bdd312\",\n    \"errorCode\": \"400004\",\n    \"signType\": \"SHA512\",\n    \"errorMsg\": \"order does not exist.\",\n    \"timestamp\": 1681577254142\n}"}],"_postman_id":"07321071-8894-4eb1-a19d-cdac0ce60208"}],"id":"8a1a2cbd-6e18-42f4-963a-ce0ca319e57c","_postman_id":"8a1a2cbd-6e18-42f4-963a-ce0ca319e57c","description":""},{"name":"Transaction-common API","item":[{"name":"MXN-Mexico-API","item":[{"name":"PAYMENT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"c7c9b7ff-8349-4977-a0c3-95f6b1573e37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"20\",\n    \"callbackUrl\": \"http://localhost:8082/india-merchant/core/callback\",\n    \"currency\": \"MXN\",\n    \"dynamic\":2,\n    \"email\": \"angengyu123@gmail.com\",\n    \"firstname\": \"AN GENGYU\",\n    \"lastname\": \"\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"+525535571415\",\n    \"productinfo\": \"your pro simple desc\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"#\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>dynamic: It is not required in request, if you want accept the amount that is not equal with the order amount, you can filled dynamic = 4.So, the order is possible to paid with any amount and many times. When payment system recieved the pay success notify from bank , it will send a wehbook to merchant system with a real amount and a different bankId immediately.</li>\n</ul>\n<img src=\"https://content.pstmn.io/f0f062ac-71eb-42f4-b1d3-affcb44f18d0/aW1hZ2UucG5n\" width=\"3852\" height=\"1206\" />\n\n<ul>\n<li>dynamic = 4，when customer multi-transfer amount to clabe，will received callback follow e.g:</li>\n</ul>\n<p>{\"realAmount\":\"15.0\",\"orderType\":\"PAYMENT\",\"bankId\":\"CUS_375a18092921:ACC_4ef39ec5c22_1\",\"amount\":\"15.0\",\"createTime\":\"20240226031455\",\"orderId\":\"202402251761952537422222222F\",\"transIds\":\"TRX\",\"orderStatus\":\"SUCCESS\",\"mchOrderId\":\"M0023\",\"failMessage\":\"Create F-pay order for the real amount. \"}</p>\n<p>{\"realAmount\":\"10.0\",\"orderType\":\"PAYMENT\",\"bankId\":\"CUS_375a18092921:ACC_4ef39ec5c22_2\",\"amount\":\"10.0\",\"createTime\":\"20240226031954\",\"orderId\":\"2024022517619525374222233232F\",\"transIds\":\"TRX\",\"orderStatus\":\"SUCCESS\",\"mchOrderId\":\"M0023\",\"failMessage\":\"Create F-pay order for the real amount. \"}</p>\n<ul>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dynamic</td>\n<td>order model</td>\n<td>String</td>\n<td>optiaonal</td>\n<td>1:common model  <br />4:repeat model</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>paymentType</td>\n<td>String</td>\n<td>required</td>\n<td>SPEI：clabe account  <br />NET_BANKING: bank account</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryAccountNumber</td>\n<td>Transfer Account</td>\n<td>String</td>\n<td>required</td>\n<td>706180301020025438</td>\n</tr>\n<tr>\n<td>beneficiaryName</td>\n<td>Transfer Name</td>\n<td>String</td>\n<td>required</td>\n<td>MXNLIQUIDO SA DE CV</td>\n</tr>\n<tr>\n<td>beneficiaryAccountType</td>\n<td>Transfer Acoount Type</td>\n<td>String</td>\n<td>required</td>\n<td>CLABE</td>\n</tr>\n<tr>\n<td>beneficiaryBankName</td>\n<td>Transfer Bank Name</td>\n<td>String</td>\n<td>optiaonal</td>\n<td>ARCUS</td>\n</tr>\n<tr>\n<td>beneficiaryBankBranchId</td>\n<td>Transfer Bank Id</td>\n<td>String</td>\n<td>optiaonal</td>\n<td></td>\n</tr>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Transfer Bank Code</td>\n<td>String</td>\n<td>optiaonal</td>\n<td></td>\n</tr>\n<tr>\n<td>refNumber</td>\n<td>Serial number</td>\n<td>String</td>\n<td>optiaonal</td>\n<td>5708749</td>\n</tr>\n<tr>\n<td>expirationTime</td>\n<td>Expired time</td>\n<td>String</td>\n<td>optiaonal</td>\n<td>2023-03-10 08:01:43 UTC</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"provide-success-rate-suggestions：\">Provide success rate suggestions：</h2>\n<ul>\n<li>Fframe is the nested page may cause the cash register to copy and paste function cannot be used. The browser version of Mexican users is relatively low. This is also the primary problem to reduce the success rate.</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;iframe  allow=\"clipboard-read; clipboard-write\"&gt;&lt;/iframe&gt;\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"219ca81d-8efc-4265-a7c2-17d9400870a4","name":"PAYMENT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"20\",\n    \"callbackUrl\": \"http://localhost:8082/india-merchant/core/callback\",\n    \"currency\": \"MXN\",\n    \"dynamic\":2,\n    \"email\": \"angengyu123@gmail.com\",\n    \"firstname\": \"AN GENGYU\",\n    \"lastname\": \"\",\n    \"mchOrderId\": \"1690031559\",\n    \"phone\": \"+525535571415\",\n    \"productinfo\": \"your pro simple desc\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://apis.tdaypay.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"beneficiaryAccountNumber\": \"706180301020025438\",\n            \"orderId\": \"202303031631565423603609600\",\n            \"refNumber\": \"5708749\",\n            \"expirationTime\": \"2023-03-10 08:01:43 UTC\",\n            \"beneficiaryName\": \"MXNLIQUIDO SA DE CV\",\n            \"beneficiaryAccountType\": \"CLABE\",\n            \"beneficiaryBankName\": \"ARCUS\",\n            \"beneficiaryBankBranchId\": null,\n            \"document\": null,\n            \"beneficiaryBankCode\": \"90706\",\n            \"ispb\": null,\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbcceed60a7d5e0ac45ac8cda97f671b8b29d30e389c3628a7b6cd5c983b8e36455d2abe91dd5837c7f584cc7d989def1f7f\"\n        }\n    ]\n}"}],"_postman_id":"c7c9b7ff-8349-4977-a0c3-95f6b1573e37"},{"name":"PAYOUT-SPEI-CLABEL","event":[{"listen":"test","script":{"id":"8f5207e4-3d97-4794-8c77-7d25ff5b0cb0","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript","packages":{}}}],"id":"14060909-e5e4-4ecf-8f48-cec808817778","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"method","value":"payOut","description":"<p>Business method name</p>\n","type":"text"},{"key":"signType","value":"SHA512","description":"<p>Signature type</p>\n","type":"text"},{"key":"serviceName","value":"api.pay","description":"<p>API service name</p>\n","type":"text"},{"key":"mchId","value":"1416010331032883200","description":"<p>Merchant ID; assigned by the OMS platform</p>\n","type":"text"},{"key":"timestamp","value":"1631671670","description":"<p>Timestamp（s）</p>\n","type":"text"},{"key":"sign","value":"32554324534545432543","description":"<p>Signature string</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"1779467696\",\n    \"amount\": \"1.00\",\n    \"currency\":\"MXN\",\n    \"purpose\": \"pro test\",\n    \"paymentType\":\"SPEI\",\n    \"beneficiaryName\":\"AN GENGYU\",\n    \"beneficiaryEmail\":\"angeng123@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"012180015679304263\",\n    \"beneficiaryBankCode\":\"90012\",\n    \"callbackUrl\": \"http://localhost:8082/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>beneficiaryAccountNumber ：CLABEL number or bank account no.</p>\n</li>\n<li><p>paymentType: SPEI or NET_BANKING. When it is SPEI, beneficiaryAccountNumber must be CLABEL number, and when it is NET_BANKING, beneficiaryAccountNumber must be a bank account no, and beneficiaryBankCode is required.</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Payee's bank code</td>\n<td>String</td>\n<td>optional</td>\n<td>012，when paymentType is NET_BANKING, it is requied</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>payout type</td>\n<td>String</td>\n<td>required</td>\n<td>SPEI: default, CLABEL number  <br />NET_BANKING: bank card</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"supported-bankid\">Supported BankId</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>BankCode</th>\n<th>BankName</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>37006</td>\n<td>BANCOMEXT</td>\n</tr>\n<tr>\n<td>37009</td>\n<td>BANOBRAS</td>\n</tr>\n<tr>\n<td>37019</td>\n<td>BANJERCITO</td>\n</tr>\n<tr>\n<td>37135</td>\n<td>NAFIN</td>\n</tr>\n<tr>\n<td>37166</td>\n<td>BANSEFI</td>\n</tr>\n<tr>\n<td>37168</td>\n<td>HIPOTECARIA FED</td>\n</tr>\n<tr>\n<td>40002</td>\n<td>BANAMEX</td>\n</tr>\n<tr>\n<td>40012</td>\n<td>BBVA MEXICO</td>\n</tr>\n<tr>\n<td>40014</td>\n<td>SANTANDER</td>\n</tr>\n<tr>\n<td>40021</td>\n<td>HSBC</td>\n</tr>\n<tr>\n<td>40030</td>\n<td>BAJIO</td>\n</tr>\n<tr>\n<td>40036</td>\n<td>INBURSA</td>\n</tr>\n<tr>\n<td>40042</td>\n<td>MIFEL</td>\n</tr>\n<tr>\n<td>40044</td>\n<td>SCOTIABANK</td>\n</tr>\n<tr>\n<td>40058</td>\n<td>BANREGIO</td>\n</tr>\n<tr>\n<td>40059</td>\n<td>INVEX</td>\n</tr>\n<tr>\n<td>40060</td>\n<td>BANSI</td>\n</tr>\n<tr>\n<td>40062</td>\n<td>AFIRME</td>\n</tr>\n<tr>\n<td>40072</td>\n<td>BANORTE</td>\n</tr>\n<tr>\n<td>40106</td>\n<td>BANK OF AMERICA</td>\n</tr>\n<tr>\n<td>40108</td>\n<td>MUFG</td>\n</tr>\n<tr>\n<td>40110</td>\n<td>JP MORGAN</td>\n</tr>\n<tr>\n<td>40112</td>\n<td>BMONEX</td>\n</tr>\n<tr>\n<td>40113</td>\n<td>VE POR MAS</td>\n</tr>\n<tr>\n<td>40126</td>\n<td>CREDIT SUISSE</td>\n</tr>\n<tr>\n<td>40127</td>\n<td>AZTECA</td>\n</tr>\n<tr>\n<td>40128</td>\n<td>AUTOFIN</td>\n</tr>\n<tr>\n<td>40129</td>\n<td>BARCLAYS</td>\n</tr>\n<tr>\n<td>40130</td>\n<td>COMPARTAMOS</td>\n</tr>\n<tr>\n<td>40132</td>\n<td>MULTIVA BANCO</td>\n</tr>\n<tr>\n<td>40133</td>\n<td>ACTINVER</td>\n</tr>\n<tr>\n<td>40136</td>\n<td>INTERCAM BANCO</td>\n</tr>\n<tr>\n<td>40137</td>\n<td>BANCOPPEL</td>\n</tr>\n<tr>\n<td>40138</td>\n<td>ABC CAPITAL</td>\n</tr>\n<tr>\n<td>40140</td>\n<td>CONSUBANCO</td>\n</tr>\n<tr>\n<td>40141</td>\n<td>VOLKSWAGEN</td>\n</tr>\n<tr>\n<td>40143</td>\n<td>CIBANCO</td>\n</tr>\n<tr>\n<td>40145</td>\n<td>BBASE</td>\n</tr>\n<tr>\n<td>40147</td>\n<td>BANKAOOL</td>\n</tr>\n<tr>\n<td>40148</td>\n<td>PAGATODO</td>\n</tr>\n<tr>\n<td>40150</td>\n<td>INMOBILIARIO</td>\n</tr>\n<tr>\n<td>40151</td>\n<td>DONDE</td>\n</tr>\n<tr>\n<td>40152</td>\n<td>BANCREA</td>\n</tr>\n<tr>\n<td>40154</td>\n<td>BANCO FINTERRA</td>\n</tr>\n<tr>\n<td>40155</td>\n<td>ICBC</td>\n</tr>\n<tr>\n<td>40156</td>\n<td>SABADELL</td>\n</tr>\n<tr>\n<td>40157</td>\n<td>SHINHAN</td>\n</tr>\n<tr>\n<td>40158</td>\n<td>MIZUHO BANK</td>\n</tr>\n<tr>\n<td>40160</td>\n<td>BANCO S3</td>\n</tr>\n<tr>\n<td>90600</td>\n<td>MONEXCB</td>\n</tr>\n<tr>\n<td>90601</td>\n<td>GBM</td>\n</tr>\n<tr>\n<td>90602</td>\n<td>MASARI</td>\n</tr>\n<tr>\n<td>90605</td>\n<td>VALUE</td>\n</tr>\n<tr>\n<td>90608</td>\n<td>VECTOR</td>\n</tr>\n<tr>\n<td>90613</td>\n<td>MULTIVA CBOLSA</td>\n</tr>\n<tr>\n<td>90616</td>\n<td>FINAMEX</td>\n</tr>\n<tr>\n<td>90617</td>\n<td>VALMEX</td>\n</tr>\n<tr>\n<td>90620</td>\n<td>PROFUTURO</td>\n</tr>\n<tr>\n<td>90630</td>\n<td>CB INTERCAM</td>\n</tr>\n<tr>\n<td>90631</td>\n<td>CI BOLSA</td>\n</tr>\n<tr>\n<td>90634</td>\n<td>FINCOMUN</td>\n</tr>\n<tr>\n<td>90638</td>\n<td>AKALA</td>\n</tr>\n<tr>\n<td>90642</td>\n<td>REFORMA</td>\n</tr>\n<tr>\n<td>90646</td>\n<td>STP</td>\n</tr>\n<tr>\n<td>90648</td>\n<td>EVERCORE</td>\n</tr>\n<tr>\n<td>90652</td>\n<td>CREDICAPITAL</td>\n</tr>\n<tr>\n<td>90653</td>\n<td>KUSPIT</td>\n</tr>\n<tr>\n<td>90656</td>\n<td>UNAGRA</td>\n</tr>\n<tr>\n<td>90659</td>\n<td>ASP INTEGRA OPC</td>\n</tr>\n<tr>\n<td>90670</td>\n<td>LIBERTAD</td>\n</tr>\n<tr>\n<td>90677</td>\n<td>CAJA POP MEXICA</td>\n</tr>\n<tr>\n<td>90680</td>\n<td>CRISTOBAL COLON</td>\n</tr>\n<tr>\n<td>90683</td>\n<td>CAJA TELEFONIST</td>\n</tr>\n<tr>\n<td>90684</td>\n<td>TRANSFER</td>\n</tr>\n<tr>\n<td>90685</td>\n<td>FONDO (FIRA)</td>\n</tr>\n<tr>\n<td>90686</td>\n<td>INVERCAP</td>\n</tr>\n<tr>\n<td>90689</td>\n<td>FOMPED</td>\n</tr>\n<tr>\n<td>90902</td>\n<td>INDEVAL</td>\n</tr>\n<tr>\n<td>90903</td>\n<td>CoDi Valida</td>\n</tr>\n<tr>\n<td>90706</td>\n<td>ARCUS</td>\n</tr>\n<tr>\n<td>91802</td>\n<td>BANAMEX2</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"1cff0c20-d3c7-4b26-ba9a-e2a1fc90c7bc","name":"PAYOUT-SPEI-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"1779467696\",\n    \"amount\": \"1.00\",\n    \"currency\":\"MXN\",\n    \"purpose\": \"pro test\",\n    \"paymentType\":\"SPEI\",\n    \"beneficiaryName\":\"AN GENGYU\",\n    \"beneficiaryEmail\":\"angeng123@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"012180015679304263\",\n    \"beneficiaryBankId\":\"BBVA\",\n    \"beneficiaryBankCode\":\"012\",\n    \"callbackUrl\": \"http://localhost:8082/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"14060909-e5e4-4ecf-8f48-cec808817778"}],"id":"226d540e-9a95-409b-ba06-eb3f150f2d23","_postman_id":"226d540e-9a95-409b-ba06-eb3f150f2d23","description":""},{"name":"BRL-Brazil-API","item":[{"name":"PAYMENT-PIX","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"fd521ad7-1222-4bc1-bf1f-a4e0e0a86de4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"5.00\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"currency\": \"BRL\",\n    \"dynamic\": \"1\",\n    \"email\": \"demo@gmail.com\",\n    \"firstname\": \"Murilo Azeredo\",\n    \"lastname\": \"your lasttname\",\n    \"mchOrderId\": \"1232434324324366\",\n    \"phone\": \"+5511967164733\",\n    \"docNumber\": \"14868845801\",\n    \"docType\": \"CPF\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dynamic</td>\n<td>Dynamic code flag  <br />Default static code, dynamic  <br />Code pass 1, may produce  <br />Additional fee</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>docType</td>\n<td>Extension type; currently only supports PIX;  <br />PIX: bank transfer;  <br />PIXN: bank transfer;</td>\n<td>String</td>\n<td>required</td>\n<td>PIX</td>\n</tr>\n<tr>\n<td>docNumber</td>\n<td>Tax code: PIX correspondence  <br />CPF number  <br />PIXN corresponds to CNPJ  <br />Number</td>\n<td>String</td>\n<td>required</td>\n<td>79595049468</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"df20fa48-44b8-4746-ada2-6efe20418005","name":"PAYMENT-PIX-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"5.00\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"currency\": \"BRL\",\n    \"dynamic\": \"1\",\n    \"email\": \"demo@gmail.com\",\n    \"firstname\": \"Murilo Azeredo\",\n    \"lastname\": \"your lasttname\",\n    \"mchOrderId\": \"1232434324324366\",\n    \"phone\": \"+5511967164733\",\n    \"docNumber\": \"14868845801\",\n    \"docType\": \"PIX\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"qrCodeString\": \"00020101021226910014br.gov.bcb.pix2569api.developer.btgpactual.com/v1/p/v2/5ef8ec7172034688909253ad3a17f8465204000053039865802BR5922Bellapay Negocios Ltda6009Sao Paulo61080120100562070503***6304FAF9\",\n            \"orderId\": \"202304091645003465894780928\",\n            \"checkoutUrl\": \"https://apis.tdaypay.com/gateway/base/pay/adedebfa1287f741369540e2798dbbccc39e3fa221762b927a5c2cd35722e44a20e54f9ce14a25363f28a47d149cd54e9ab27a88dc14f2e6880449a1b5291df99a517d5128c20cf59689bc16a61b92c7\"\n        }\n    ]\n}"}],"_postman_id":"fd521ad7-1222-4bc1-bf1f-a4e0e0a86de4"},{"name":"PAYOUT-PIX","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"884e91c0-3524-4287-8bac-e40361bc7aa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"2.00\",\n    \"currency\": \"BRL\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"docType\": \"PIX\",\n    \"docNumber\": \"14868845822\",\n    \"beneficiaryEmail\": \"demo@gmail.com\",\n    \"beneficiaryName\": \"Murilo Azeredo\",\n    \"beneficiaryAccountNumber\": \"demo@gmail.com\",\n    \"mchOrderId\": \"22324343243243233\",\n    \"beneficiaryMobile\": \"+5511967164733\",\n    \"purpose\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra），<strong>currently only support docType = PIX，paymentType not needed</strong></li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankType</td>\n<td>Beneficiary Bank Type  <br />CHECKING:checking account  <br />SAVING:saving account;  <br />Required for docType = BRBAN</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKING</td>\n</tr>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Beneficiary Bank Type;  <br />Required for docType = BRBAN</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>beneficiaryBankBranch</td>\n<td>Beneficiary Bank branch;  <br />Required for docType = BRBAN</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>docType</td>\n<td>Extended Payment Type:：  <br />PIX or PIXN or BRBANK</td>\n<td>String</td>\n<td>required</td>\n<td>PIX</td>\n</tr>\n<tr>\n<td>docNumber</td>\n<td>Extended number：  <br />Tax number: PIX corresponds to CPF  <br />PIXN corresponds to CNPJ</td>\n<td>String</td>\n<td>required</td>\n<td>79595049468</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"db7395e9-8b89-429a-806f-7df8ac2e7059","name":"PAYOUT-PIX-成功","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"接口方法"},{"key":"signType","value":"SHA512","type":"text","description":"签名类型"},{"key":"serviceName","value":"api.pay","type":"text","description":"服务名称"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"商户编号"},{"key":"timestamp","value":"1631671670","type":"text","description":"时间戳（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"签名"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"2.00\",\n    \"currency\": \"BRL\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"docType\": \"PIX\",\n    \"docNumber\": \"14868845822\",\n    \"beneficiaryEmail\": \"demo@gmail.com\",\n    \"beneficiaryName\": \"Murilo Azeredo\",\n    \"beneficiaryAccountNumber\": \"demo@gmail.com\",\n    \"mchOrderId\": \"22324343243243233\",\n    \"beneficiaryMobile\": \"+5511967164733\",\n    \"purpose\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"884e91c0-3524-4287-8bac-e40361bc7aa7"}],"id":"db48423b-41ad-4162-8a30-743048c72514","description":"<h1 id=\"note\">Note</h1>\n<ul>\n<li>The tax number rules are as follows: the tax number of the receipt can be random; the tax number of the payment (docNumber) cannot be random, and the correct format and real tax number must be passed. To follow the rules of the tax number：<a href=\"https://www.oishare.com/tools/cpfdesc.html\">https://www.oishare.com/tools/cpfdesc.html</a></li>\n<li>Payou: beneficiaryBankType, beneficiaryBankCode, and docType do not support BRBANK,now. docType only supports PIX</li>\n<li>PIX account number：support email、tax key，phone、random key，the phone value should be add +55 zone code</li>\n</ul>\n","_postman_id":"db48423b-41ad-4162-8a30-743048c72514"},{"name":"COP-Columbia-API","item":[{"name":"PAYMENT-PSE","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"16062ab8-170b-4919-b546-0c845b5b6c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 1500,\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"currency\": \"COP\",\n    \"email\": \"username@liquido.com\",\n    \"firstname\": \"username\",\n     \"lastname\": \"Lee\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"+573991111111\",\n    \"productinfo\": \"your pro simple desc\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>Colombian payin and payout amounts do not support decimals</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th>Required</th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><h2 id=\"financial-code\">Financial Code</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>financialCode</th>\n<th>financialName</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1558</td>\n<td>BAN100</td>\n</tr>\n<tr>\n<td>1059</td>\n<td>BANCAMIA S.A.</td>\n</tr>\n<tr>\n<td>1040</td>\n<td>BANCO AGRARIO</td>\n</tr>\n<tr>\n<td>1052</td>\n<td>BANCO AV VILLAS</td>\n</tr>\n<tr>\n<td>1013</td>\n<td>BANCO BBVA COLOMBIA S.A.</td>\n</tr>\n<tr>\n<td>1032</td>\n<td>BANCO CAJA SOCIAL</td>\n</tr>\n<tr>\n<td>1066</td>\n<td>BANCO COOPERATIVO COOPCENTRAL</td>\n</tr>\n<tr>\n<td>1051</td>\n<td>BANCO DAVIVIENDA</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>BANCO DE BOGOTA</td>\n</tr>\n<tr>\n<td>1023</td>\n<td>BANCO DE OCCIDENTE</td>\n</tr>\n<tr>\n<td>1062</td>\n<td>BANCO FALABELLA</td>\n</tr>\n<tr>\n<td>1063</td>\n<td>BANCO FINANDINA S.A. BIC</td>\n</tr>\n<tr>\n<td>1012</td>\n<td>BANCO GNB SUDAMERIS</td>\n</tr>\n<tr>\n<td>1006</td>\n<td>BANCO ITAU</td>\n</tr>\n<tr>\n<td>1060</td>\n<td>BANCO PICHINCHA S.A.</td>\n</tr>\n<tr>\n<td>1002</td>\n<td>BANCO POPULAR</td>\n</tr>\n<tr>\n<td>1065</td>\n<td>BANCO SANTANDER COLOMBIA</td>\n</tr>\n<tr>\n<td>1069</td>\n<td>BANCO SERFINANZA</td>\n</tr>\n<tr>\n<td>1303</td>\n<td>BANCO UNION antes GIROS</td>\n</tr>\n<tr>\n<td>1007</td>\n<td>BANCOLOMBIA</td>\n</tr>\n<tr>\n<td>1061</td>\n<td>BANCOOMEVA S.A.</td>\n</tr>\n<tr>\n<td>1283</td>\n<td>CFA COOPERATIVA FINANCIERA</td>\n</tr>\n<tr>\n<td>1009</td>\n<td>CITIBANK</td>\n</tr>\n<tr>\n<td>1370</td>\n<td>COLTEFINANCIERA</td>\n</tr>\n<tr>\n<td>1292</td>\n<td>CONFIAR COOPERATIVA FINANCIERA</td>\n</tr>\n<tr>\n<td>1291</td>\n<td>COOFINEP COOPERATIVA FINANCIERA</td>\n</tr>\n<tr>\n<td>1289</td>\n<td>COTRAFA</td>\n</tr>\n<tr>\n<td>1097</td>\n<td>DALE</td>\n</tr>\n<tr>\n<td>1551</td>\n<td>DAVIPLATA</td>\n</tr>\n<tr>\n<td>1637</td>\n<td>IRIS</td>\n</tr>\n<tr>\n<td>1070</td>\n<td>LULO BANK</td>\n</tr>\n<tr>\n<td>1801</td>\n<td>MOVII S.A.</td>\n</tr>\n<tr>\n<td>1507</td>\n<td>NEQUI</td>\n</tr>\n<tr>\n<td>1811</td>\n<td>RAPPIPAY</td>\n</tr>\n<tr>\n<td>1151</td>\n<td>RAPPIPAY DAVIPLATA</td>\n</tr>\n<tr>\n<td>1019</td>\n<td>SCOTIABANK COLPATRIA</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"74ef4ad5-a7e8-4e59-9811-0b696a5bc369","name":"PAYMENT-PSE-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 1500,\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"currency\": \"COP\",\n    \"email\": \"username@liquido.com\",\n    \"firstname\": \"username\",\n    \"lastname\": \"Lee\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"phone\": \"+573991111111\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"16062ab8-170b-4919-b546-0c845b5b6c0e"},{"name":"PAYOUT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"05ef127d-d954-4014-9d11-4439e35bc6eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"1779467696\",\n    \"amount\": \"100\",\n    \"currency\": \"COP\",\n    \"purpose\": \"ONaJMGh\",\n    \"paymentType\": \"NET_BANKING\",\n    \"beneficiaryName\": \"testname\",\n    \"beneficiaryEmail\": \"testa@liquido.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"0000000001\",\n    \"beneficiaryBankName\": \"BANCOLOMBIA\",\n    \"beneficiaryAccountType\": \"SAVINGS\",\n    \"beneficiaryBankCode\": \"1040\",\n    \"beneficiaryBankBranch\": \"3\",\n    \"docNumber\": \"0000000\",\n    \"docType\": \"CC\",\n    \"callbackUrl\": \"http://dailount.com/api/callback_today/notify_putout\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>phone：+57xxxxxxxxx</li>\n<li>Colombian payin and payout amounts do not support decimals</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankName</td>\n<td>Beneficiary bank name</td>\n<td>String</td>\n<td>required</td>\n<td>ALLIANCE</td>\n</tr>\n<tr>\n<td>beneficiaryAccountType</td>\n<td>Beneficiary account type;  <br />CHECKING;  <br />SAVINGS;</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>docNumber</td>\n<td>Extension Code; Identity ID</td>\n<td>String</td>\n<td>required</td>\n<td>0000000</td>\n</tr>\n<tr>\n<td>docType</td>\n<td>Extension type;  <br />CC:Adult Colombia Citizen ID;  <br />CE:Colombia Foreigner ID;  <br />TI:Child Colombia Citizen ID;  <br />COLOMBIA_PASSPORT_ID:Passport;</td>\n<td>String</td>\n<td>required</td>\n<td>CC</td>\n</tr>\n</tbody>\n</table>\n</div><p>beneficiaryBankName 取值：</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Bancos</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALLIANCE</td>\n</tr>\n<tr>\n<td>ALLIANZ</td>\n</tr>\n<tr>\n<td>ALMACENES EXITO</td>\n</tr>\n<tr>\n<td>ALPINA</td>\n</tr>\n<tr>\n<td>AV VILLAS</td>\n</tr>\n<tr>\n<td>BANCAMIA</td>\n</tr>\n<tr>\n<td>BANCO AGRARIO</td>\n</tr>\n<tr>\n<td>BANCO BTG PACTUAL</td>\n</tr>\n<tr>\n<td>BANCO CAJA SOCIAL</td>\n</tr>\n<tr>\n<td>BANCO COOPERATIVO COOPCENTRAL</td>\n</tr>\n<tr>\n<td>BANCO CREDIFINANCIERA</td>\n</tr>\n<tr>\n<td>DAVIVIENDA</td>\n</tr>\n<tr>\n<td>BANCO DE BOGOTA</td>\n</tr>\n<tr>\n<td>BANCO DE COMERCIO EXTERIOR</td>\n</tr>\n<tr>\n<td>BANCO DE LA REPUBLICA</td>\n</tr>\n<tr>\n<td>BANCO DE OCCIDENTE</td>\n</tr>\n<tr>\n<td>BANCO FALABELLA</td>\n</tr>\n<tr>\n<td>BANCO FINANDINA</td>\n</tr>\n<tr>\n<td>BANCO J.P. MORGAN COLOMBIA</td>\n</tr>\n<tr>\n<td>BANCO MULTIBANK</td>\n</tr>\n<tr>\n<td>BANCO MUNDO MUJER</td>\n</tr>\n<tr>\n<td>BANCO POPULAR</td>\n</tr>\n<tr>\n<td>BANCO SANTANDER DE NEGOCIOS</td>\n</tr>\n<tr>\n<td>BANCO SERFINANZA</td>\n</tr>\n<tr>\n<td>BANCO W</td>\n</tr>\n<tr>\n<td>BANCO_GNB_SUDAMERIS</td>\n</tr>\n<tr>\n<td>BANCOLDEX</td>\n</tr>\n<tr>\n<td>BANCOLOMBIA</td>\n</tr>\n<tr>\n<td>BANCOOMEVA</td>\n</tr>\n<tr>\n<td>BBVA</td>\n</tr>\n<tr>\n<td>BBVA ASSET MANAGEMENT SOCIEDAD FIDUCIARIA</td>\n</tr>\n<tr>\n<td>BNP PARIBAS COLOMBIA</td>\n</tr>\n<tr>\n<td>BTG PACTUAL</td>\n</tr>\n<tr>\n<td>CAMARA DE COMPENSACION DE DIVISAS DE COLOMBIA</td>\n</tr>\n<tr>\n<td>CARVAJAL SERVICIOS</td>\n</tr>\n<tr>\n<td>CENIT</td>\n</tr>\n<tr>\n<td>CITIBANK</td>\n</tr>\n<tr>\n<td>COLSUBSIDIO</td>\n</tr>\n<tr>\n<td>COLTEFINANCIERA</td>\n</tr>\n<tr>\n<td>CONFIAR</td>\n</tr>\n<tr>\n<td>COOFINEP</td>\n</tr>\n<tr>\n<td>COOTRAFA</td>\n</tr>\n<tr>\n<td>CORPORACION FINANCIERA DEL VALLE</td>\n</tr>\n<tr>\n<td>CORREDORES DAVIVIENDA</td>\n</tr>\n<tr>\n<td>CREDICORP CAPITAL COLOMBIA</td>\n</tr>\n<tr>\n<td>CREDICORP_CAPITAL_COLOMBIA</td>\n</tr>\n<tr>\n<td>DAVIPLATA</td>\n</tr>\n<tr>\n<td>ECOFERTIL</td>\n</tr>\n<tr>\n<td>ECOPETROL</td>\n</tr>\n<tr>\n<td>EMPRESA DE TELECOMUNICACIONES DE BOGOTA</td>\n</tr>\n<tr>\n<td>FIDUCIARIA BANCOLOMBIA</td>\n</tr>\n<tr>\n<td>FIDUCIARIA BOGOTA</td>\n</tr>\n<tr>\n<td>FIDUCIARIA CORFICOLOMBIANA</td>\n</tr>\n<tr>\n<td>FIDUCIARIA DE OCCIDENTE</td>\n</tr>\n<tr>\n<td>FINANCIERA DE DESARROLLO NACIONAL</td>\n</tr>\n<tr>\n<td>FONDO DE GARANTIAS DE INSTITUCIONES FINANCIERAS</td>\n</tr>\n<tr>\n<td>FONDO LATINOAMERICANO DE RESERVAS</td>\n</tr>\n<tr>\n<td>FONDO VOLUNTARIO DE PENSIONES ALLIANZ SEGUROS</td>\n</tr>\n<tr>\n<td>GIROS Y FINANZAS CF</td>\n</tr>\n<tr>\n<td>GIROS Y FINANZAS CFC</td>\n</tr>\n<tr>\n<td>HOCOL</td>\n</tr>\n<tr>\n<td>IRIS</td>\n</tr>\n<tr>\n<td>ISAGEN</td>\n</tr>\n<tr>\n<td>ITAU</td>\n</tr>\n<tr>\n<td>JURISCOOP</td>\n</tr>\n<tr>\n<td>LULO BANK</td>\n</tr>\n<tr>\n<td>MAPFRE SEGUROS GENERALES</td>\n</tr>\n<tr>\n<td>MIBANCO</td>\n</tr>\n<tr>\n<td>MONOMEROS COLOMBO VENEZOLANOS</td>\n</tr>\n<tr>\n<td>MOVII</td>\n</tr>\n<tr>\n<td>MUNICIPIO DE MEDELLIN</td>\n</tr>\n<tr>\n<td>MUNICIPIO SANTIAGO DE CALI</td>\n</tr>\n<tr>\n<td>NEQUI</td>\n</tr>\n<tr>\n<td>OLEODUCTO BICENTENARIO</td>\n</tr>\n<tr>\n<td>OLEODUCTO CENTRAL</td>\n</tr>\n<tr>\n<td>OLEODUCTO_DE_LOS_LLANOS_ORIENTALES</td>\n</tr>\n<tr>\n<td>PICHINCHA</td>\n</tr>\n<tr>\n<td>POLIPROPILENO DEL CARIBE</td>\n</tr>\n<tr>\n<td>PORVENIR</td>\n</tr>\n<tr>\n<td>RAPPIPAY</td>\n</tr>\n<tr>\n<td>REFINERIA DE CARTAGENA</td>\n</tr>\n<tr>\n<td>SCOTIABANK COLPATRIA</td>\n</tr>\n<tr>\n<td>UALA</td>\n</tr>\n<tr>\n<td>UNE EPM TELECOMUNICACIONES</td>\n</tr>\n<tr>\n<td>VALORES BANCOLOMBIA</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>error message</th>\n<th></th>\n<th>Error parameter</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>CUENTA Y NIT NO CORRESPONDEN</td>\n<td>beneficiaryType or beneficiaryId error</td>\n</tr>\n<tr>\n<td>CUENTA INACTIVA O BLOQUEADA</td>\n<td>CUENTA INACTIVA O BLOQUEADA</td>\n<td>beneficiaryAccountNumber or beneficiaryBankCode or beneficiaryBankType error</td>\n</tr>\n<tr>\n<td>NUMERO CUENTA INVALIDO</td>\n<td>NUMERO CUENTA INVALIDO</td>\n<td>beneficiaryAccountNumber or beneficiaryBankCode or beneficiaryBankType error</td>\n</tr>\n<tr>\n<td>PAGO RECHAZADO EN ACH, CUENTA NO EXISTE</td>\n<td>PAGO RECHAZADO EN ACH, CUENTA NO EXISTE</td>\n<td>beneficiaryAccountNumber error</td>\n</tr>\n<tr>\n<td>IDENTIFICACION NO COINCIDE CON CUENTA CLIENTE</td>\n<td>IDENTIFICACION NO COINCIDE CON CUENTA CLIENTE</td>\n<td>beneficiaryType or beneficiaryId error</td>\n</tr>\n<tr>\n<td>NUMERO CUENTA NO EXISTE</td>\n<td>IDENTIFICACION NO COINCIDE CON CUENTA CLIENTE</td>\n<td>beneficiaryAccountNumber or beneficiaryBankCode or beneficiaryBankType error</td>\n</tr>\n<tr>\n<td>TIPO DE CUENTA NO VALIDO PARA BANCO DESTINO</td>\n<td>TIPO DE CUENTA NO VALIDO PARA BANCO DESTINO</td>\n<td>beneficiaryBankCode error</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"3d1178e0-6bf8-4a6c-9da5-f8e07e4528d0","name":"PAYOUT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"1779467696\",\n    \"amount\": \"100\",\n    \"currency\": \"COP\",\n    \"purpose\": \"ONaJMGh\",\n    \"paymentType\": \"NET_BANKING\",\n    \"beneficiaryName\": \"testname\",\n    \"beneficiaryEmail\": \"testa@liquido.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"0000000001\",\n    \"beneficiaryBankName\": \"BANCOLOMBIA\",\n    \"beneficiaryAccountType\": \"SAVINGS\",\n    \"beneficiaryBankCode\": \"1040\",\n    \"beneficiaryBankBranch\": \"3\",\n    \"docNumber\": \"0000000\",\n    \"docType\": \"CC\",\n    \"callbackUrl\": \"http://dailount.com/api/callback_today/notify_putout\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"05ef127d-d954-4014-9d11-4439e35bc6eb"}],"id":"9d5aab17-b406-470e-9222-a89a9ba9c07e","_postman_id":"9d5aab17-b406-470e-9222-a89a9ba9c07e","description":""},{"name":"PEN-Peruvian-API","item":[{"name":"PAYMENT-CASH","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"668e1b80-8863-4edf-a14c-96da4afae9c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10.00\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"PEN\",\n    \"paymentType\": \"CASH\",\n    \"beneficiaryId\": \"242112412\",\n    \"beneficiaryType\": \"DNI\",\n    \"email\": \"9325sas21@gmail.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254112018639\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>1. The user information and bank account information entered by the user when jumping to the payment page must be correct and consistent with the information of the bank account owner.</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryType</td>\n<td>User identity type</td>\n<td>String</td>\n<td>required</td>\n<td>DNI</td>\n</tr>\n<tr>\n<td>beneficiaryId</td>\n<td>Identity type number</td>\n<td>String</td>\n<td>required</td>\n<td>242112412</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>payment method;  <br />CASH (cash)  <br />NET_BANKING (bank transfer)  <br />Do not pass the default NET_BANKING (bank transfer)</td>\n<td>String</td>\n<td>optional</td>\n<td>NET_BANKING</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKOUT_URL</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryType and beneficiaryId parameters</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Country</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DNI</td>\n<td>Identity Document</td>\n<td>Peru and Argentina (8 digits)</td>\n</tr>\n<tr>\n<td>CE</td>\n<td>Foreign resident Card</td>\n<td>Peru (8-10 digits)</td>\n</tr>\n<tr>\n<td>RUC</td>\n<td>Tax Id Number</td>\n<td>Peru (9-10 digits)</td>\n</tr>\n<tr>\n<td>PAS</td>\n<td>Passport</td>\n<td>Peru (9-10 digits)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"245d05e1-b52a-49c6-b841-9719ac03aa21","name":"PAYMENT-CASH","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10.00\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"PEN\",\n    \"paymentType\": \"CASH\",\n    \"beneficiaryId\": \"242112412\",\n    \"beneficiaryType\": \"DNI\",\n    \"email\": \"9325sas21@gmail.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254112018639\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"668e1b80-8863-4edf-a14c-96da4afae9c9"},{"name":"PAYOUT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"24ccec7f-77b6-4845-8f68-c3928e27fa9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1.00\",\n    \"currency\": \"PEN\",\n    \"beneficiaryId\": \"40405304\",\n    \"beneficiaryType\": \"1\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryBankCode\": \"Banco Continental\",\n    \"beneficiaryBankType\": \"1\",\n    \"beneficiaryName\": \"Gonzalo Sanchez\",\n    \"beneficiaryAccountNumber\": \"001101190100051890\",\n    \"recipientCardNo\": \"01111900010005189050\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"9324324352\",\n    \"beneficiaryEmail\": \"test@test.com\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>Peru payout optimization suggestions</li>\n<li>1. The bank (beneficiaryBankCode) and account type (beneficiaryBankType) corresponding to the withdrawal account information (beneficiaryAccountNumber) must be correct (the user can be guided to enter the correct user information)</li>\n<li>2. The identity type (beneficiaryType) and identity number (beneficiaryId) of the payer must correspond and be correct</li>\n<li>3. The identity information of the payer (beneficiaryId) must be consistent with the information of the owner of the bank account.</li>\n<li>4. When the user's beneficiary bank is Interbank, recipientCardNo (Código de Cuenta Interbancaria (CCI) is related to the bank account (field \"beneficiaryAccountNumber\")). The bank account information and recipientCardNo are different.</li>\n<li>5. The user name (beneficiaryName) must be entered in its entirety</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryType</td>\n<td>iIdentity type</td>\n<td>String</td>\n<td>required</td>\n<td>1</td>\n</tr>\n<tr>\n<td>beneficiaryId</td>\n<td>Identity number</td>\n<td>String</td>\n<td>required</td>\n<td>40405304</td>\n</tr>\n<tr>\n<td>beneficiaryBankType</td>\n<td>Account Type</td>\n<td>String</td>\n<td>required</td>\n<td>1</td>\n</tr>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Bank code or Institution number</td>\n<td>String</td>\n<td>required</td>\n<td>Banco Continental</td>\n</tr>\n<tr>\n<td>recipientCardNo</td>\n<td>(CCI) or Relates to a bank account (field \"Payee Account Number\"). This information must be sent.</td>\n<td>String</td>\n<td>required</td>\n<td>01111900010005189050</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment type;  <br />NET_BANKING：bank transfer</td>\n<td>String</td>\n<td>required</td>\n<td>NET_BANKING</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryType and beneficiaryId （filled value）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>ID Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>DNI (8 digits)</td>\n</tr>\n<tr>\n<td>2</td>\n<td>PAS (9 digits or more)</td>\n</tr>\n<tr>\n<td>3</td>\n<td>CE (9 digits or more)</td>\n</tr>\n<tr>\n<td>4</td>\n<td>RUC (11 digits)</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankType (filled value)</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Living account</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Saving account</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankCode (filled Bank Name)</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Bank Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0001</td>\n<td>Banco Continental</td>\n</tr>\n<tr>\n<td>0002</td>\n<td>Banco de Credito</td>\n</tr>\n<tr>\n<td>0003</td>\n<td>Interbank</td>\n</tr>\n<tr>\n<td>0004</td>\n<td>Scotiabank</td>\n</tr>\n<tr>\n<td>0005</td>\n<td>Banco de Comercio</td>\n</tr>\n<tr>\n<td>0006</td>\n<td>Banco Interamericano de Finanzas (BanBif)</td>\n</tr>\n<tr>\n<td>0007</td>\n<td>Banco Pichincha</td>\n</tr>\n<tr>\n<td>0008</td>\n<td>Citibank</td>\n</tr>\n<tr>\n<td>0009</td>\n<td>MiBanco</td>\n</tr>\n<tr>\n<td>0010</td>\n<td>Scotiabank</td>\n</tr>\n<tr>\n<td>0011</td>\n<td>Banco GNB</td>\n</tr>\n<tr>\n<td>0012</td>\n<td>Banco Falabella</td>\n</tr>\n<tr>\n<td>0013</td>\n<td>Banco Ripley</td>\n</tr>\n<tr>\n<td>0014</td>\n<td>Banco Santander</td>\n</tr>\n<tr>\n<td>0015</td>\n<td>Banco Azteca</td>\n</tr>\n<tr>\n<td>0016</td>\n<td>Banco Cencosud</td>\n</tr>\n<tr>\n<td>0017</td>\n<td>ICBC PERU BANK</td>\n</tr>\n<tr>\n<td>0018</td>\n<td>Banco de la Nación</td>\n</tr>\n<tr>\n<td>0019</td>\n<td>Caja Arequipa</td>\n</tr>\n<tr>\n<td>0020</td>\n<td>Caja Cusco</td>\n</tr>\n<tr>\n<td>0021</td>\n<td>Caja Huancayo</td>\n</tr>\n<tr>\n<td>0022</td>\n<td>Caja Maynas</td>\n</tr>\n<tr>\n<td>0023</td>\n<td>Caja Metropolitana</td>\n</tr>\n<tr>\n<td>0024</td>\n<td>Caja Municipal Ica</td>\n</tr>\n<tr>\n<td>0025</td>\n<td>Caja Piura</td>\n</tr>\n<tr>\n<td>0026</td>\n<td>Caja Sullana</td>\n</tr>\n<tr>\n<td>0027</td>\n<td>Caja Tacna</td>\n</tr>\n<tr>\n<td>0028</td>\n<td>Caja Trujillo</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"d985995f-6711-48ce-99eb-7676215e5ce4","name":"PAYOUT-BANKTRANSFER-sucess","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1.00\",\n    \"mchId\": \"1416010331032883200\",\n    \"currency\": \"PEN\",\n    \"beneficiaryId\": \"40405304\",\n    \"beneficiaryType\": \"1\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryBankCode\": \"Banco Continental\",\n    \"beneficiaryBankType\": \"1\",\n    \"beneficiaryName\": \"Gonzalo Sanchez\",\n    \"beneficiaryAccountNumber\": \"001101190100051890\",\n    \"recipientCardNo\": \"01111900010005189050\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"9324324352\",\n    \"beneficiaryEmail\": \"test@test.com\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"24ccec7f-77b6-4845-8f68-c3928e27fa9e"}],"id":"328a4b39-503f-437c-a1df-5ca11ef2ce41","_postman_id":"328a4b39-503f-437c-a1df-5ca11ef2ce41","description":""},{"name":"CLP-Chile-API","item":[{"name":"PAYMENT-CASH","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"b6096ade-dde3-4f46-82b2-76d088969f3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10.00\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"CLP\",\n    \"paymentType\": \"CASH\",\n    \"beneficiaryId\": \"242112412\",\n    \"beneficiaryType\": \"RUT\",\n    \"email\": \"9325sas21@gmail.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254112018639\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>1. The user information entered by the user when making payment must be correct and consistent with the information of the bank account owner.</p>\n</li>\n<li><p>2. When the account type is RUT, the bank account must be the first eight digits of the RUT type ID.</p>\n</li>\n<li><p>In Chile, users must fill in real email information. This is the email address where the bank sends payment vouchers.</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardNumber</td>\n<td>Card number or wallet account number</td>\n<td>String</td>\n<td>required</td>\n<td>0738222112</td>\n</tr>\n<tr>\n<td>beneficiaryType</td>\n<td>Identity type</td>\n<td>String</td>\n<td>required</td>\n<td>RUT</td>\n</tr>\n<tr>\n<td>beneficiaryId</td>\n<td>Identity number</td>\n<td>String</td>\n<td>required</td>\n<td>242112412</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>payment method;  <br />CASH (cash)  <br />NET_BANKING (bank transfer)  <br />Do not pass the default</td>\n<td>String</td>\n<td>required</td>\n<td>TC</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKOUT_URL</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryType and beneficiaryId parameters</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Country</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RUT</td>\n<td>Tax Id Number</td>\n<td>Chile (7-9 digits)</td>\n</tr>\n<tr>\n<td>PP</td>\n<td>Passport</td>\n<td>Chile (9-10 digits)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"c33b5775-15f8-4ddb-bf65-ed680973ca1f","name":"PAYMENT-CASH","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10.00\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"CLP\",\n    \"paymentType\": \"CASH\",\n    \"beneficiaryId\": \"242112412\",\n    \"beneficiaryType\": \"RUT\",\n    \"email\": \"9325sas21@gmail.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254112018639\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"b6096ade-dde3-4f46-82b2-76d088969f3d"},{"name":"PAYOUT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"6d5e7fcd-75df-4866-9c89-aa778ca6f7d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"currency\": \"CLP\",\n    \"beneficiaryId\": \"27344777-6\",\n    \"beneficiaryType\": \"1\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryBankCode\": \"Banco Santander\",\n    \"beneficiaryBankType\": \"1\",\n    \"beneficiaryName\": \"Test\",\n    \"beneficiaryAccountNumber\": \"000087095983\",\n    \"recipientCardNo\": \"12345678911234567890\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"9324324352\",\n    \"beneficiaryEmail\": \"test@test.com\",\n    \"paymentType\": \"NET_BANKING\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>Chile payout optimization</li>\n<li>1. The bank (beneficiaryBankCode) and account type (beneficiaryBankType) corresponding to the withdrawal account information (beneficiaryAccountNumber) must be correct (the user can be guided to enter the correct user information)</li>\n<li>2. The identity type (beneficiaryType) and identity number (beneficiaryId) of the payer must correspond and be correct</li>\n<li>3. The identity information of the payer (beneficiaryId) must be consistent with the information of the owner of the bank account.</li>\n<li>4. When the account type is RUT, the bank account must be the first eight digits of the RUT type ID.</li>\n<li>5. Beneficiaryname's name should be fill full name. Don't just fill LastName. which will affect the success rate</li>\n<li>6. When benefitiaryBankType is 3 (rut account type), the user’s payment account benefitiaryAccountNumber directly takes the first eight digits of the benefitiaryId parameter.</li>\n<li>7. When benefitiaryBankType is 3 (rut account type) and user identity type benefitiaryType is 1 (identity type is RUT), the payment account benefitiaryAccountNumber passed by the merchant is automatically intercepted by the system. The first eight digits of the benefitiaryId parameter are used as the user's payment account (beneficiaryAccountNumber). )</li>\n<li>Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryType</td>\n<td>Identity Type</td>\n<td>String</td>\n<td>required</td>\n<td>1</td>\n</tr>\n<tr>\n<td>beneficiaryId</td>\n<td>Identity number</td>\n<td>String</td>\n<td>required</td>\n<td>40405304</td>\n</tr>\n<tr>\n<td>beneficiaryBankType</td>\n<td>Account type</td>\n<td>String</td>\n<td>required</td>\n<td>1</td>\n</tr>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Bank code or Institution number</td>\n<td>String</td>\n<td>required</td>\n<td>Banco Continental</td>\n</tr>\n<tr>\n<td>recipientCardNo</td>\n<td>(CCI) or Bank account (field \"Payee account number\") related. This information must be sent.  <br />（beneficiaryAccountNumber has the same value）</td>\n<td>String</td>\n<td>required</td>\n<td>01111900010005189050</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Types;  <br />MPESA: mpesa wallet  <br />AIRTEL: airtel wallet  <br />NET_BANKING: bank transfer</td>\n<td>String</td>\n<td>required</td>\n<td>MPESA</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryType and beneficiaryId params（ used Parameter value,will valid length）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>ID Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>RUT (7-9 digits)</td>\n</tr>\n<tr>\n<td>2</td>\n<td>RUN (9 digits)</td>\n</tr>\n<tr>\n<td>3</td>\n<td>PAS (9 digits or more)</td>\n</tr>\n<tr>\n<td>4</td>\n<td>CE (9 digits or more)</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankType (filled value )</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Living account</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Saving account</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Vista</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Rut</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Salary Account</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankCode (filled bank name)</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Bank Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>001</td>\n<td>Banco de Chile - Edwards</td>\n</tr>\n<tr>\n<td>009</td>\n<td>Banco Internacional</td>\n</tr>\n<tr>\n<td>012</td>\n<td>Banco Estado (Banco del Estado de Chile)</td>\n</tr>\n<tr>\n<td>014</td>\n<td>Scotiabank</td>\n</tr>\n<tr>\n<td>016</td>\n<td>BCI (Bco de Credito e Inv)</td>\n</tr>\n<tr>\n<td>017</td>\n<td>Banco do Brasil</td>\n</tr>\n<tr>\n<td>027</td>\n<td>Itau-Corpbanca</td>\n</tr>\n<tr>\n<td>028</td>\n<td>Banco Bice</td>\n</tr>\n<tr>\n<td>031</td>\n<td>Hsbc Bank</td>\n</tr>\n<tr>\n<td>035</td>\n<td>Banco Santiago</td>\n</tr>\n<tr>\n<td>037</td>\n<td>Banco Santander</td>\n</tr>\n<tr>\n<td>039</td>\n<td>Itau Chile</td>\n</tr>\n<tr>\n<td>041</td>\n<td>JP Morgan Chase Bank N.A.</td>\n</tr>\n<tr>\n<td>043</td>\n<td>Banco de La Nacion Argentina</td>\n</tr>\n<tr>\n<td>045</td>\n<td>The bank of Tokio-Mitsubishi UFJ, LTD</td>\n</tr>\n<tr>\n<td>049</td>\n<td>Banco Security</td>\n</tr>\n<tr>\n<td>051</td>\n<td>Banco Falabella</td>\n</tr>\n<tr>\n<td>052</td>\n<td>Deutsche Bank (Chile)</td>\n</tr>\n<tr>\n<td>053</td>\n<td>Banco Ripley</td>\n</tr>\n<tr>\n<td>054</td>\n<td>Rabobank</td>\n</tr>\n<tr>\n<td>055</td>\n<td>Banco Consorcio</td>\n</tr>\n<tr>\n<td>056</td>\n<td>Banco Penta</td>\n</tr>\n<tr>\n<td>057</td>\n<td>Banco Paris</td>\n</tr>\n<tr>\n<td>059</td>\n<td>Banco Ptg Pactual</td>\n</tr>\n<tr>\n<td>099</td>\n<td>Banco Nuevo</td>\n</tr>\n<tr>\n<td>152</td>\n<td>Prepago Los Heroes</td>\n</tr>\n<tr>\n<td>504</td>\n<td>BBVA (Bco Bilbao Vizcaya Arg)</td>\n</tr>\n<tr>\n<td>507</td>\n<td>Banco del Desarrollo</td>\n</tr>\n<tr>\n<td>672</td>\n<td>Coopeuch</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"e2ac1f53-5124-4582-89e8-07d146508f2d","name":"PAYOUT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"mchId\": \"1416010331032883200\",\n    \"currency\": \"CLP\",\n    \"beneficiaryId\": \"27344777-6\",\n    \"beneficiaryType\": \"1\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryBankCode\": \"Banco Santander\",\n    \"beneficiaryBankType\": \"1\",\n    \"beneficiaryName\": \"Test\",\n    \"beneficiaryAccountNumber\": \"000087095983\",\n    \"recipientCardNo\": \"12345678911234567890\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"9324324352\",\n    \"beneficiaryEmail\": \"test@test.com\",\n    \"paymentType\": \"NET_BANKING\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"6d5e7fcd-75df-4866-9c89-aa778ca6f7d7"}],"id":"72712f28-46f4-4cdc-8d8d-e4b7162015ec","_postman_id":"72712f28-46f4-4cdc-8d8d-e4b7162015ec","description":""},{"name":"USD-America-API","item":[{"name":"PAYMENT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"d154f29d-52e6-4579-ad4b-f9a50c2cee81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"16813971308HUdd\",\n    \"amount\": \"5.00\",\n    \"currency\": \"USD\",\n    \"productinfo\": \"tdaypay\",\n    \"firstname\": \"Dungala Bhaskar\",\n    \"lastname\": \"Dungala Bhaskar\",\n    \"email\": \"demo@gmail.com\",\n    \"phone\": \"7006838444\",\n    \"paymentType\":\"CASH\",\n    \"callbackUrl\": \"https://127.0.0.1/api/\",\n    \"jsonObject\": {\n        \"ipAddress\": \"52.200.78.126\",\n        \"device\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36\",\n        \"productName\": \"iPhone\",\n        \"sku\": \"tGToQs\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>paymentType：CASH</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th>Type</th>\n<th>Required</th>\n<th><strong>e.g</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jsonObject</td>\n<td>Supplementary information object</td>\n<td>JsonObject</td>\n<td>required</td>\n<td>\"jsonObject\": {  <br />\"ipAddress\": \"52.200.78.126\",  <br />\"device\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36\",  <br />\"productName\": \"iPhone\",  <br />\"sku\": \"tGToQs\"  <br />}</td>\n</tr>\n<tr>\n<td>jsonObject.ipAddress</td>\n<td>user ip Address</td>\n<td></td>\n<td>required</td>\n<td>52.200.78.126</td>\n</tr>\n<tr>\n<td>jsonObject.device</td>\n<td>use device</td>\n<td></td>\n<td>required</td>\n<td>iphone11</td>\n</tr>\n<tr>\n<td>jsonObject.productName</td>\n<td>product Name</td>\n<td></td>\n<td>required</td>\n<td>iPhone</td>\n</tr>\n<tr>\n<td>jsonObject.sku</td>\n<td>product SKU</td>\n<td>String</td>\n<td>required</td>\n<td>tGToQs</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d154f29d-52e6-4579-ad4b-f9a50c2cee81"},{"name":"PAYOUT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"3a5853ae-d340-4d6c-890f-1468f3574ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"22324343243243289\",\n    \"amount\": \"5.00\",\n    \"currency\":\"USD\",\n    \"purpose\": \"ONaJMGh\",\n    \"beneficiaryName\":\"testname\",\n    \"beneficiaryEmail\":\"12342567776@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"12342576@gmail.com\",\n    \"beneficiaryBankName\":\"JP Morgan Chase Bank\",\n    \"beneficiaryIfscCode\":\"021000021\",\n    \"state\":\"NY\",\n    \"city\":\"Flushing\",\n    \"zip\":\"11355\",\n    \"address\":\"412 5th Avenue\",\n    \"paymentType\": \"CASH\",\n    \"callbackUrl\": \"http://www.baidu.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryIfscCode</td>\n<td>When paymentType is PAYCARD, this field filled with Routing code of the card bank, only for ABA（ACH）, it is a 9-digit numbers, For example：021000021 ;  <br />When paymentType is Cash, this field keep empty</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>state</td>\n<td>state</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>city</td>\n<td>city</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>address</td>\n<td>address details</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>zip</td>\n<td>post code</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment method:  <br />CASH, PAY_CARD</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>paymentType：</strong>CASH or PAY_CARD<br />  CASH：cashapp<br />  PAY_CARD：bank card<br />  * Different amounts correspond to different payment methods. Please confirm with the platform.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"3b1dbd68-bc29-42fa-a4e0-2c943dea56c4","name":"PAYOUT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchId\": \"202301171615310660083904512\",\n    \"mchOrderId\": \"PAYFOR1681734488L4UQV\",\n    \"amount\": \"300.00\",\n    \"currency\": \"INR\",\n    \"purpose\": \"PAYFOR1681734488L422\",\n    \"beneficiaryName\": \"Lakkoji Sai\",\n    \"beneficiaryEmail\": \"demo@gmail.com\",\n    \"beneficiaryMobile\": \"8003003010\",\n    \"callbackUrl\": \"https://localhost\",\n    \"beneficiaryAccountNumber\": \"464781743333\",\n    \"beneficiaryIfscCode\": \"KKBK0007861\",\n    \"paymentType\": \"IMPS\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"3a5853ae-d340-4d6c-890f-1468f3574ae0"}],"id":"2a0ec34f-936f-4ba6-96f5-0b10e8732758","description":"<p><strong>paymentType:</strong> This is a required parameter in payin and payout request. There are two values, CASH or PAY_CARD</p>\n<p>CASH：cashapp</p>\n<p>PAY_CARD：bank card</p>\n<p>* Different amounts correspond to different payment methods. Please confirm with the platform.</p>\n","_postman_id":"2a0ec34f-936f-4ba6-96f5-0b10e8732758"},{"name":"IDR-Indonesia-API","item":[{"name":"PAYMENT-WALLET-QRIS-VICTURALACCOUNT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"f5b52987-2c17-497f-a16f-0968393e77b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1000\",\n    \"callbackUrl\": \" https://9491-183-12-101-73.ap.ngrok.io/india-service/core/payhereback/payhere1\",\n    \"currency\": \"IDR\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@gmail.com\",\n    \"phone\": \"088229588432\",\n    \"mchOrderId\": \"1779467696\",\n    \"expiration\":3600,\n    \"productinfo\": \"test info\",\n    \"productTitle\": \"test title\",\n    \"paymentType\":\"VIRTUAL_ACCOUNT\",\n    \"paymentMethod\":\"\",\n    \"paymentChannel\":\"CIMB\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productTitle</td>\n<td>Order title</td>\n<td>String</td>\n<td>required</td>\n<td>shopping</td>\n</tr>\n<tr>\n<td><br />  <br />paymentType  <br />  <br /></td>\n<td>Payment method:  <br />VIRTUAL_ACCOUNT:bank payment;  <br />WALLET:wallet;  <br />QRIS:QRIS qr code;  <br />If you fill in the value, paymentChannel is also required;</td>\n<td>String</td>\n<td>optional</td>\n<td>VIRTUAL_ACCOUNT</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment Type (Default Cashier);  <br />CHECKOUT_URL: Place an order at the cashier;  <br />API: interface to place an order;</td>\n<td>String</td>\n<td>required</td>\n<td>CHECKOUT_URL  <br />  <br /></td>\n</tr>\n<tr>\n<td>paymentChannel</td>\n<td>Payment institution;</td>\n<td>String</td>\n<td>optional</td>\n<td>SHOPEEPAY</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>qrCodeString</td>\n<td>QRIS qr code;  <br />when paymentMethod=API;  <br />paymentType=QRIS return;</td>\n<td>String</td>\n<td>optional</td>\n<td>shopping</td>\n</tr>\n<tr>\n<td><br />  <br />links  <br />  <br /></td>\n<td>Deeplink url;  <br />when paymentMethod=API;  <br />paymentType=WALLET turn ;  <br />OVO order does not exist, OVO is mobile push payment order</td>\n<td>String</td>\n<td>optional</td>\n<td>VIRTUAL_ACCOUNT</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td>Account number;  <br />when paymentMethod=API;  <br />paymentType=VIRTUAL_ACCOUNT  <br />return;</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>accountType</td>\n<td>Account Type；  <br />when paymentMethod=API;  <br />paymentType=VIRTUAL_ACCOUNT  <br />return;</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Support Pyament Type、Payment Channel：</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Payment Type</strong></th>\n<th><strong>Payment Channel</strong></th>\n<th><strong>Remark</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>VIRTUAL_ACCOUNT</td>\n<td>BRI</td>\n<td>Bank Rakyat Indonesia</td>\n</tr>\n<tr>\n<td></td>\n<td>BNI</td>\n<td>Bank Negara Indonesia</td>\n</tr>\n<tr>\n<td></td>\n<td>MANDIRI</td>\n<td>Bank Mandiri (Persero) Tbk</td>\n</tr>\n<tr>\n<td></td>\n<td>PERMATA</td>\n<td>PT Bank Permata Tbk</td>\n</tr>\n<tr>\n<td></td>\n<td>BSS</td>\n<td>Bank sahabat sampoerna</td>\n</tr>\n<tr>\n<td></td>\n<td>BSI</td>\n<td>Bank syariah indonesia</td>\n</tr>\n<tr>\n<td></td>\n<td>CIMB</td>\n<td>PT Bank CIMB Niaga Tbk</td>\n</tr>\n<tr>\n<td></td>\n<td>BCA</td>\n<td>Bank Central Asia Tbk</td>\n</tr>\n<tr>\n<td></td>\n<td>BNC</td>\n<td>Bank neo commerce</td>\n</tr>\n<tr>\n<td>WALLET</td>\n<td>OVO</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>DANA</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>LINKAJA</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>SHOPEEPAY</td>\n<td></td>\n</tr>\n<tr>\n<td>QRIS</td>\n<td>QRIS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"9281290a-5478-4258-bec2-d87f7a009630","name":"PAYMENT-WALLET-QRIS-VICTURALACCOUNT-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1000\",\n    \"callbackUrl\": \" https://9491-183-12-101-73.ap.ngrok.io/india-service/core/payhereback/payhere1\",\n    \"currency\": \"IDR\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@gmail.com\",\n    \"phone\": \"088229588432\",\n    \"mchOrderId\": \"1779467696\",\n    \"mchId\":\"\",\n    \"model\": 0,\n    \"expiration\":3600,\n    \"productinfo\": \"test info\",\n    \"productTitle\": \"test title\",\n    \"paymentType\":\"VIRTUAL_ACCOUNT\",\n    \"paymentMethod\":\"\",\n    \"paymentChannel\":\"CIMB\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"f5b52987-2c17-497f-a16f-0968393e77b3"},{"name":"PAYOUT-DISBURSEMENTS","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"2db98a90-7a3c-42dc-86cd-26020c2d5c62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"1779467696\",\n    \"amount\": \"100\",\n    \"currency\": \"COP\",\n    \"purpose\": \"ONaJMGh\",\n    \"paymentType\":\"DISBURSEMENTS\",\n    \"beneficiaryName\":\"Yonatan\",\n    \"beneficiaryMobile\":\"234234234234234\",\n    \"beneficiaryAccountNumber\": \"085879887888\",\n    \"beneficiaryBankCode\": \"014\",\n    \"callbackUrl\": \"http://dailount.com/api/callback_today/notify_putout\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to Transaction-API [PAYOUT-API])</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Beneficiary bank code</td>\n<td>String</td>\n<td>required</td>\n<td>012</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment method：  <br />DISBURSEMENTS  <br />  <br /></td>\n<td>String</td>\n<td>required</td>\n<td>DISBURSEMENTS</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankCode（Bank codes）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Bank Name</th>\n<th>Bank Codes</th>\n<th>Bank Fullname</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank BRI</td>\n<td>002</td>\n<td>Bank Rakyat Indonesia</td>\n</tr>\n<tr>\n<td>Bank Mandiri</td>\n<td>008</td>\n<td>Bank Mandiri (Persero) Tbk</td>\n</tr>\n<tr>\n<td>Bank BNI</td>\n<td>009</td>\n<td>Bank Negara Indonesia</td>\n</tr>\n<tr>\n<td>Bank Danamon</td>\n<td>011</td>\n<td>Bank Danamon Indonesia Tbk</td>\n</tr>\n<tr>\n<td>Bank Permata</td>\n<td>013</td>\n<td>PT Bank Permata Tbk</td>\n</tr>\n<tr>\n<td>Bank Permata Syariah</td>\n<td>013</td>\n<td>PT Bank Permata Tbk Syariah</td>\n</tr>\n<tr>\n<td>Bank BCA</td>\n<td>014</td>\n<td>Bank Central Asia Tbk</td>\n</tr>\n<tr>\n<td>BII Maybank</td>\n<td>016</td>\n<td>PT Bank Internasional Indonesia Tbk</td>\n</tr>\n<tr>\n<td>Bank Panin</td>\n<td>019</td>\n<td>PT Bank Panin Tbk</td>\n</tr>\n<tr>\n<td>CIMB Niaga</td>\n<td>022</td>\n<td>PT Bank CIMB Niaga Tbk</td>\n</tr>\n<tr>\n<td>Bank UOB INDONESIA</td>\n<td>023</td>\n<td>PT Bank UOB Buana Tbk</td>\n</tr>\n<tr>\n<td>Bank OCBC NISP</td>\n<td>028</td>\n<td>PT Bank OCBC NISP Tbk</td>\n</tr>\n<tr>\n<td>CITIBANK</td>\n<td>031</td>\n<td>Citibank N.A.</td>\n</tr>\n<tr>\n<td>Bank Windu Kentjana International</td>\n<td>036</td>\n<td>PT Bank Windu Kentjana International Tbk</td>\n</tr>\n<tr>\n<td>Bank ARTHA GRAHA</td>\n<td>037</td>\n<td>PT Bank Artha Graha Internasional Tbk</td>\n</tr>\n<tr>\n<td>Bank TOKYO MITSUBISHI UFJ</td>\n<td>042</td>\n<td>Bank of Tokyo-Mitsubishi UFJ, Ltd.</td>\n</tr>\n<tr>\n<td>Bank DBS</td>\n<td>046</td>\n<td>DBS Bank Ltd.</td>\n</tr>\n<tr>\n<td>Standard Chartered</td>\n<td>050</td>\n<td>Standard Chartered Bank</td>\n</tr>\n<tr>\n<td>Bank CAPITAL</td>\n<td>054</td>\n<td>PT Bank Capital Indonesia Tbk</td>\n</tr>\n<tr>\n<td>ANZ Indonesia</td>\n<td>061</td>\n<td>PT ANZ Panin Bank</td>\n</tr>\n<tr>\n<td>Bank OF CHINA</td>\n<td>069</td>\n<td>Bank of China Limited</td>\n</tr>\n<tr>\n<td>Bank Bumi Arta</td>\n<td>076</td>\n<td>PT Bank Bumi Arta Tbk</td>\n</tr>\n<tr>\n<td>Bank HSBC</td>\n<td>087</td>\n<td>HSBC Bank (Indonesia)</td>\n</tr>\n<tr>\n<td>Bank Antardaerah</td>\n<td>088</td>\n<td>Bank ANTAR DAERAH</td>\n</tr>\n<tr>\n<td>Bank Rabobank</td>\n<td>089</td>\n<td>PT Bank Rabobank International Indonesia</td>\n</tr>\n<tr>\n<td>Bank JTRUST INDONESIA</td>\n<td>095</td>\n<td>PT Bank JTrust Indonesia</td>\n</tr>\n<tr>\n<td>Bank MAYAPADA</td>\n<td>097</td>\n<td>PT Bank Mayapada Internasional Tbk</td>\n</tr>\n<tr>\n<td>Bank Jawa Barat</td>\n<td>110</td>\n<td>Bank Jawa Barat dan Banten Tbk</td>\n</tr>\n<tr>\n<td>Bank DKI</td>\n<td>111</td>\n<td>Bank DKI</td>\n</tr>\n<tr>\n<td>Bank BPD DIY</td>\n<td>112</td>\n<td>Bank Pembangunan Daerah Istimewa Yogyakarta</td>\n</tr>\n<tr>\n<td>Bank JATENG</td>\n<td>113</td>\n<td>Bank Jateng</td>\n</tr>\n<tr>\n<td>Bank Jatim</td>\n<td>114</td>\n<td>Bank Jatim</td>\n</tr>\n<tr>\n<td>Bank Jambi</td>\n<td>115</td>\n<td>Bank Jambi</td>\n</tr>\n<tr>\n<td>Bank Jambi Syariah</td>\n<td>115</td>\n<td>Bank Jambi Syariah</td>\n</tr>\n<tr>\n<td>Bank Aceh</td>\n<td>116</td>\n<td>Bank Aceh</td>\n</tr>\n<tr>\n<td>Bank Aceh Syariah</td>\n<td>116</td>\n<td>Bank Aceh Syariah</td>\n</tr>\n<tr>\n<td>Bank SUMUT</td>\n<td>117</td>\n<td>Bank Sumut</td>\n</tr>\n<tr>\n<td>Bank NAGARI</td>\n<td>118</td>\n<td>Bank Nagari</td>\n</tr>\n<tr>\n<td>Bank Riau</td>\n<td>119</td>\n<td>Bank Riau</td>\n</tr>\n<tr>\n<td>Bank Riau Syariah</td>\n<td>119</td>\n<td>Bank Riau Syariah</td>\n</tr>\n<tr>\n<td>Bank SUMSEL BABEL</td>\n<td>120</td>\n<td>Bank Sumsel Babel</td>\n</tr>\n<tr>\n<td>Bank SUMSEL BABEL Syariah</td>\n<td>120</td>\n<td>Bank Sumsel Babel Syariah</td>\n</tr>\n<tr>\n<td>Bank Lampung</td>\n<td>121</td>\n<td>Bank Lampung</td>\n</tr>\n<tr>\n<td>Bank KALSEL</td>\n<td>122</td>\n<td>Bank Kalsel</td>\n</tr>\n<tr>\n<td>Bank KALBAR</td>\n<td>123</td>\n<td>Bank Kalbar</td>\n</tr>\n<tr>\n<td>Bank BPD Kaltim</td>\n<td>124</td>\n<td>Bank Pembangunan Daerah Kalimantan Timur</td>\n</tr>\n<tr>\n<td>Bank BPD Kalteng</td>\n<td>125</td>\n<td>Bank Pembangunan Daerah Kalimantan Tengah</td>\n</tr>\n<tr>\n<td>Bank SULSELBAR</td>\n<td>126</td>\n<td>Bank Sulawesi Selatan dan Sulawesi Barat</td>\n</tr>\n<tr>\n<td>Bank Sulut</td>\n<td>127</td>\n<td>Bank Sulut</td>\n</tr>\n<tr>\n<td>Bank NTB</td>\n<td>128</td>\n<td>Bank Nusa Tenggara Barat</td>\n</tr>\n<tr>\n<td>Bank NTB Syariah</td>\n<td>128</td>\n<td>Bank Nusa Tenggara Barat Syariah</td>\n</tr>\n<tr>\n<td>Bank BPD Bali</td>\n<td>129</td>\n<td>Bank Pembangunan Daerah Bali</td>\n</tr>\n<tr>\n<td>Bank NTT</td>\n<td>130</td>\n<td>Bank Nusa Tenggara Timur</td>\n</tr>\n<tr>\n<td>Bank Maluku</td>\n<td>131</td>\n<td>Bank Maluku</td>\n</tr>\n<tr>\n<td>Bank BPD Papua</td>\n<td>132</td>\n<td>Bank Pembangunan Daerah Papua</td>\n</tr>\n<tr>\n<td>Bank SULTENG</td>\n<td>134</td>\n<td>Bank Sulawesi Tengah</td>\n</tr>\n<tr>\n<td>Bank Sultra</td>\n<td>135</td>\n<td>Bank Sultra</td>\n</tr>\n<tr>\n<td>Bank BANTEN</td>\n<td>137</td>\n<td>Bank Banten</td>\n</tr>\n<tr>\n<td>Bank Nusantara Parahyangan</td>\n<td>145</td>\n<td>Bank Nusantara Parahyangan</td>\n</tr>\n<tr>\n<td>Bank Of India Indonesia</td>\n<td>146</td>\n<td>Bank of India Indonesia</td>\n</tr>\n<tr>\n<td>Bank Muamalat</td>\n<td>147</td>\n<td>Bank Muamalat Indonesia</td>\n</tr>\n<tr>\n<td>Bank Mestika</td>\n<td>151</td>\n<td>Bank Mestika</td>\n</tr>\n<tr>\n<td>Bank SHINHAN</td>\n<td>152</td>\n<td>Shinhan Bank</td>\n</tr>\n<tr>\n<td>Bank Sinarmas</td>\n<td>153</td>\n<td>PT Bank Sinarmas Tbk</td>\n</tr>\n<tr>\n<td>Bank Maspion</td>\n<td>157</td>\n<td>PT Bank Maspion Indonesia Tbk</td>\n</tr>\n<tr>\n<td>Bank Ganesha</td>\n<td>161</td>\n<td>Bank Ganesha</td>\n</tr>\n<tr>\n<td>Bank ICBC</td>\n<td>164</td>\n<td>Industrial and Commercial Bank of China (ICBC)</td>\n</tr>\n<tr>\n<td>Bank QNB indonesia</td>\n<td>167</td>\n<td>PT Bank QNB Kesawan Tbk</td>\n</tr>\n<tr>\n<td>Bank BTN</td>\n<td>200</td>\n<td>Bank Tabungan Negara</td>\n</tr>\n<tr>\n<td>Bank Woori Saudara</td>\n<td>212</td>\n<td>Bank Woori Saudara 1906 Tbk</td>\n</tr>\n<tr>\n<td>Bank BTPN</td>\n<td>213</td>\n<td>PT Bank Tabungan Pensiunan Nasional Tbk</td>\n</tr>\n<tr>\n<td>Bank Victoria Syariah</td>\n<td>405</td>\n<td>PT Bank Victoria Syariah</td>\n</tr>\n<tr>\n<td>Bank Jabar Banten Syariah</td>\n<td>425</td>\n<td>Bank Jabar Banten Syariah</td>\n</tr>\n<tr>\n<td>Bank Mega</td>\n<td>426</td>\n<td>Bank Mega Tbk</td>\n</tr>\n<tr>\n<td>Bank Bukopin</td>\n<td>441</td>\n<td>Bank Bukopin</td>\n</tr>\n<tr>\n<td>Bank Syariah Indonesia</td>\n<td>451</td>\n<td>Bank Syariah Indonesia</td>\n</tr>\n<tr>\n<td>Bank Jasa Jakarta</td>\n<td>472</td>\n<td>Bank Jasa Jakarta</td>\n</tr>\n<tr>\n<td>Bank KEB HANA</td>\n<td>484</td>\n<td>KEB Hana Bank</td>\n</tr>\n<tr>\n<td>Bank MNC INTERNATIONAL</td>\n<td>485</td>\n<td>PT Bank MNC Internasional Tbk</td>\n</tr>\n<tr>\n<td>Bank YUDHA BHAKTI/ Bank Neo Commerce</td>\n<td>490</td>\n<td>Bank Yudha Bhakti</td>\n</tr>\n<tr>\n<td>Bank Rakyat Indonesia AGRONIAGA</td>\n<td>494</td>\n<td>Bank Rakyat Indonesia (Agroniaga)</td>\n</tr>\n<tr>\n<td>Bank SBI Indonesia (Indomonex)</td>\n<td>498</td>\n<td>Bank SBI Indonesia (Indomonex)</td>\n</tr>\n<tr>\n<td>Bank Royal</td>\n<td>501</td>\n<td>Bank Royal</td>\n</tr>\n<tr>\n<td>Bank National Nobu</td>\n<td>503</td>\n<td>Bank Nationalnobu</td>\n</tr>\n<tr>\n<td>Bank MEGA SYARIAH</td>\n<td>506</td>\n<td>Bank Mega Syariah</td>\n</tr>\n<tr>\n<td>Bank INA</td>\n<td>513</td>\n<td>Bank Ina Perdana</td>\n</tr>\n<tr>\n<td>Bank PANIN SYARIAH</td>\n<td>517</td>\n<td>Bank Panin Syariah</td>\n</tr>\n<tr>\n<td>PRIMA MASTER BANK</td>\n<td>520</td>\n<td>Bank Prima Master</td>\n</tr>\n<tr>\n<td>Bank SYARIAH BUKOPIN</td>\n<td>521</td>\n<td>Bank Syariah Bukopin</td>\n</tr>\n<tr>\n<td>Bank Sahabat Sampoerna</td>\n<td>523</td>\n<td>Bank Sahabat Sampoerna</td>\n</tr>\n<tr>\n<td>Bank DINAR</td>\n<td>526</td>\n<td>Bank Dinar</td>\n</tr>\n<tr>\n<td>Bank Seabank Indonesia</td>\n<td>535</td>\n<td>Bank Seabank Indonesia</td>\n</tr>\n<tr>\n<td>Bank BCA SYARIAH</td>\n<td>536</td>\n<td>Bank Central Asia Syariah</td>\n</tr>\n<tr>\n<td>Bank ARTOS/ Bank Jago</td>\n<td>542</td>\n<td>PT Bank Artos Indonesia</td>\n</tr>\n<tr>\n<td>Bank BTPN SYARIAH</td>\n<td>547</td>\n<td>Bank Tabungan Pensiunan Nasional Syariah</td>\n</tr>\n<tr>\n<td>Bank MULTIARTA SENTOSA</td>\n<td>548</td>\n<td>Bank Multiarta Sentosa</td>\n</tr>\n<tr>\n<td>Bank Mayora</td>\n<td>553</td>\n<td>PT Bank Mayora Indah Tbk</td>\n</tr>\n<tr>\n<td>Bank INDEX</td>\n<td>555</td>\n<td>PT Bank Index Selindo</td>\n</tr>\n<tr>\n<td>CNB</td>\n<td>559</td>\n<td>Central Nasional Bank</td>\n</tr>\n<tr>\n<td>Bank MANTAP</td>\n<td>564</td>\n<td>PT Bank Mantap Sejahtera</td>\n</tr>\n<tr>\n<td>Bank VICTORIA INTL</td>\n<td>566</td>\n<td>PT Bank Victoria International</td>\n</tr>\n<tr>\n<td>HARDA</td>\n<td>567</td>\n<td>PT Bank Harda Internasional Tbk</td>\n</tr>\n<tr>\n<td>BPR KS</td>\n<td>688</td>\n<td>Bank Pembangunan Daerah Kepulauan Selayar</td>\n</tr>\n<tr>\n<td>IBK</td>\n<td>945</td>\n<td>PT Bank IFI</td>\n</tr>\n<tr>\n<td>Bank CTBC Indonesia</td>\n<td>949</td>\n<td>China Trust Commercial Bank, Indonesia Branch</td>\n</tr>\n<tr>\n<td>Bank COMMONWEALTH</td>\n<td>950</td>\n<td>Commonwealth Bank of Australia</td>\n</tr>\n<tr>\n<td>Dana</td>\n<td>dana</td>\n<td>Dana</td>\n</tr>\n<tr>\n<td>Gopay</td>\n<td>gopay</td>\n<td>Gopay</td>\n</tr>\n<tr>\n<td>LinkAja</td>\n<td>linkaja</td>\n<td>LinkAja</td>\n</tr>\n<tr>\n<td>OVO</td>\n<td>ovo</td>\n<td>OVO</td>\n</tr>\n<tr>\n<td>ShopeePay</td>\n<td>shopeepay</td>\n<td>ShopeePay</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2db98a90-7a3c-42dc-86cd-26020c2d5c62"}],"id":"b6cee6e8-d03b-4d83-ab72-c7c6a6b3ca8e","description":"<h2 id=\"note\">Note</h2>\n<ul>\n<li><strong>Linkaja must be an Indonesian IP to open it. Shopeepay and Linkaja need to install the corresponding APP on the mobile phone to wake up. After opening the ovo wallet and placing an order, it will time out if the payment is not made within 50 seconds. The ovo and dana browsers can also be operated.</strong></li>\n<li><strong>If the VA pays on behalf of you, it doesn't seem to matter whether the name is correct, as long as the bank account is correct, you can pay on your behalf. However, it is recommended to reduce the chance of card orders, and the name should be transmitted correctly.</strong></li>\n<li><strong>The basic facts of the VA transaction arrive at the account. If the collection order expires, but the user actually pays again, the user’s credentials need to be provided to the upstream bank for confirmation</strong></li>\n<li><strong>Withdrawal card list, because the Indonesian banking system is relatively old, and they do not have a strong ability to change the existing system, they can only maintain and upgrade slowly, BCA will process it within 24 hours, and the others are 2- 3 days, this is the processing efficiency of the upstream bank. Users in Indonesia are used to it. If there are holidays, the processing speed will be postponed</strong></li>\n</ul>\n<h2 id=\"about-request-parameter\">About Request parameter</h2>\n<ul>\n<li>Mobile phone number: under normal circumstances, it starts with 0895. If it starts with 0895 1*\\ 9274, it is usually 11 or 12 digits.if have +64 area code,please replace 0</li>\n<li>Payment: paymentMethod = CHECKOUT_URL means the checkout mode. If the checkout mode does not specify the specific payment method, WALLET, VIRTUAL_ACCOUNT and QRIS are supported. If paymentMethod = API, If it is WALLET, it will return deeplink, if it is DANA at WALLET, it will return SMS payment information, if it is QRIS, it will return QR code string, VIRTUAL_ACCOUNT will return transfer information, see the case for details on the format</li>\n<li>The amount does not support the decimal point</li>\n</ul>\n","_postman_id":"b6cee6e8-d03b-4d83-ab72-c7c6a6b3ca8e"},{"name":"PHP-Philippines-API","item":[{"name":"PAYMENT-WALLET-QRIS","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"dd706c12-de4f-408f-a8bd-1fbb65215197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"callbackUrl\": \"https://localhost:8888/india-merchant/core/callback\",\n    \"currency\": \"PHP\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@gmail.com\",\n    \"phone\": \"088229588431\",\n    \"mchOrderId\": \"1779467696\",\n    \"productTitle\": \"shoping\",\n    \"paymentType\":\"WALLET\",\n    \"paymentChannel\":\"GCASH\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>productTitle</td>\n<td>Order title</td>\n<td>String</td>\n<td>required</td>\n<td>shopping</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment method:  <br />WALLET:wallet;  <br />QRIS:QRIS qr code;</td>\n<td>String</td>\n<td>required</td>\n<td>QRIS</td>\n</tr>\n<tr>\n<td>paymentChannel</td>\n<td>Payment institution;</td>\n<td>String</td>\n<td>optional</td>\n<td>GCASH</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response data（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>qrCodeString</td>\n<td>QRIS qrcode;  <br />when paymentType=QRIS return;</td>\n<td>String</td>\n<td>optional</td>\n<td>shopping</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Payment Type</strong></th>\n<th><strong>Payment Channel</strong></th>\n<th><strong>Remark</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WALLET</td>\n<td>GCASH</td>\n<td></td>\n</tr>\n<tr>\n<td>QRIS</td>\n<td>QRIS</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["apis.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"09d0f742-d943-4664-9c1c-cab61abc7c7b","name":"PAYMENT-WALLET-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"callbackUrl\": \"https://localhost:8888/india-merchant/core/callback\",\n    \"currency\": \"PHP\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@gmail.com\",\n    \"phone\": \"088229588431\",\n    \"mchOrderId\": \"1779467696\",\n    \"productTitle\": \"shoping\",\n    \"paymentType\":\"WALLET\",\n    \"paymentChannel\":\"GCASH\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202311281729475805747195904\",\n            \"checkoutUrl\": \"https://gcash-payment.999-coco.com/index3?c=aWQ9ZTM2MzM0Y2ItZjUzZC00ZTI5LTk2MjYtYTkzYTdkYjhmNzNlJmFtb3VudD0xMDAuMDAmYXV0b19leHBpcmVkX2F0PTIwMjMtMTEtMjggMjA6MzI6MTk=\"\n        }\n    ]\n}"},{"id":"05bf7b2c-676f-479b-bbc6-657eb6754160","name":"PAYMENT-QRIS-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"callbackUrl\": \"https://localhost:8888/india-merchant/core/callback\",\n    \"currency\": \"PHP\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@gmail.com\",\n    \"phone\": \"088229588431\",\n    \"mchOrderId\": \"1779467696\",\n    \"productTitle\": \"shoping\",\n    \"paymentType\":\"QRIS\",\n    \"paymentChannel\":\"GCASH\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"qrCodeString\": \"https://api.qrserver.com/v1/create-qr-code/?data=https://bfl231.com/gcash_rn?transaction_id=T11282023282296445504&size=200x200&ecc=M\",\n            \"orderId\": \"202311281729476097087893504\",\n            \"checkoutUrl\": \"https://bfl231.com/gcash_rn?transaction_id=T11282023282296445504\"\n        }\n    ]\n}"}],"_postman_id":"dd706c12-de4f-408f-a8bd-1fbb65215197"},{"name":"PAYOUT-GCASH","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"eac9c99f-281a-4b12-99d6-b2444e4e5767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"currency\": \"PHP\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"beneficiaryEmail\": \"muazpe@gmail.com\",\n    \"beneficiaryName\": \"Reyansh\",\n    \"beneficiaryAccountNumber\": \"918010096100593\",\n    \"beneficiaryBankCode\":\"B00003600\",\n    \"beneficiaryMobile\":\"11967164793\",\n    \"mchOrderId\": \"1779467696\",\n    \"beneficiaryIfscCode\": \"tests\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to Transaction-API [PAYOUT-API])</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Beneficiary bank code</td>\n<td>String</td>\n<td>optional</td>\n<td>012</td>\n</tr>\n<tr>\n<td>subBranch</td>\n<td>branch bank</td>\n<td>String</td>\n<td>optional</td>\n<td>bank</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"a3c8523f-58f1-4bdb-98b1-9e4c6a78c1e1","name":"PAYOUT-GCASH-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"currency\": \"PHP\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"beneficiaryEmail\": \"muazpe@gmail.com\",\n    \"beneficiaryName\": \"Reyansh\",\n    \"beneficiaryAccountNumber\": \"918010096100593\",\n    \"beneficiaryBankCode\":\"B00003600\",\n    \"beneficiaryMobile\":\"11967164793\",\n    \"mchOrderId\": \"1779467696\",\n    \"subBranch\": \"tests\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"eac9c99f-281a-4b12-99d6-b2444e4e5767"}],"id":"f9966169-23dc-48f0-afd7-a66ddab52eba","_postman_id":"f9966169-23dc-48f0-afd7-a66ddab52eba","description":""},{"name":"INR-India-API","item":[{"name":"PAYMENT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"7f84c264-47fe-40ae-bf98-386024e60f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"16813971308HUdd\",\n    \"amount\": \"3000.00\",\n    \"currency\": \"INR\",\n    \"productinfo\": \"tdaypay\",\n    \"firstname\": \"Dungala Bhaskar\",\n    \"lastname\": \"Dungala Bhaskar\",\n    \"email\": \"demo@gmail.com\",\n    \"phone\": \"7006838444\",\n    \"callbackUrl\": \"https://127.0.0.1/api/\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n</ul>\n","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"038a47f8-56b7-48e6-93ef-942fc19858db","name":"PAYMENT","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"16813971308HUdd\",\n    \"amount\": \"3000.00\",\n    \"currency\": \"INR\",\n    \"productinfo\": \"tdaypay\",\n    \"firstname\": \"Dungala Bhaskar\",\n    \"lastname\": \"Dungala Bhaskar\",\n    \"email\": \"demo@gmail.com\",\n    \"phone\": \"7006838444\",\n    \"callbackUrl\": \"https://127.0.0.1/api/\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202307171680806537079001088\",\n            \"links\": \"upi://pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,paytmmp://pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,phonepe://upi/pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,amazon://upi/pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,gpay://upi/pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,bhim://pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00,freecharge://upi/pay?pa=HRENTERPRISESONLINE@ybl&pn=HR%20Enterprises&am=500.00&mam=500.00&tr=SHKPE6dc829edd30a58f9&tn=Payment%20for%20SHKPE6dc829edd30a58f9&mc=5732&mode=04&purpose=00\",\n            \"checkoutUrl\": \"https://api.tdaypay.com/gateway/base/pay/adedebfa1287f741369540e2798dbbccc39e3fa221762b927a5c2cd35722e44a5d60016ea9b536f9e674d698b0732ec67893ba0d5f2c57f4cb83815876b73851139976f6e8fce614ecb3b291945940a2\"\n        }\n    ]\n}"}],"_postman_id":"7f84c264-47fe-40ae-bf98-386024e60f8b"},{"name":"PAYOUT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"26356455-92a4-4b59-900d-4a329ea61d33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"PAYFOR1681734488L4UQV\",\n    \"amount\": \"300.00\",\n    \"currency\": \"INR\",\n    \"purpose\": \"PAYFOR1681734488L422\",\n    \"beneficiaryName\": \"Lakkoji Sai\",\n    \"beneficiaryEmail\": \"demo@gmail.com\",\n    \"beneficiaryMobile\": \"8003003010\",\n    \"callbackUrl\": \"https://localhost\",\n    \"beneficiaryAccountNumber\": \"464781743333\",\n    \"beneficiaryIfscCode\": \"KKBK0007861\",\n    \"paymentType\": \"IMPS\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><br />  <br />beneficiaryIfscCode  <br />  <br /></td>\n<td>Payee Ifsc code, paymentType is  <br />IMPS and NEFT, RTGS Required</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKING</td>\n</tr>\n<tr>\n<td>vpa</td>\n<td>virtual payment account,  <br />paymentType is  <br />UPI is required</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>recipientCardNo</td>\n<td><br />  <br />payment method  <br />Required when paymenttype is NET_BANKING, cc_payment, VISA, MASTERCARD  <br />  <br /></td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment method:  <br />IMPS,UPI,NEFT,RTGS,MASTERCARD,VISA,CC_PAYMENT,NET_BANKING, currently only support NET_BANKING,IMPS and UPI  <br />Required when recipientCardNo is not empty  <br /></td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>A payment method：beneficiaryAccountNumber和beneficiaryIfscCode：IMPS、NEFT、RTGS</li>\n<li>B payment method：vpa：UPI</li>\n<li>C payment method：recipientCardNo：NET_BANKING,cc_payment, VISA, MASTERCARD</li>\n</ul>\n","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"d798f08b-923a-40d3-817f-eb9271562c6a","name":"PAYOUT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchId\": \"202301171615310660083904512\",\n    \"mchOrderId\": \"PAYFOR1681734488L4UQV\",\n    \"amount\": \"300.00\",\n    \"currency\": \"INR\",\n    \"purpose\": \"PAYFOR1681734488L422\",\n    \"beneficiaryName\": \"Lakkoji Sai\",\n    \"beneficiaryEmail\": \"demo@gmail.com\",\n    \"beneficiaryMobile\": \"8003003010\",\n    \"callbackUrl\": \"https://localhost\",\n    \"beneficiaryAccountNumber\": \"464781743333\",\n    \"beneficiaryIfscCode\": \"KKBK0007861\",\n    \"paymentType\": \"IMPS\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"26356455-92a4-4b59-900d-4a329ea61d33"}],"id":"e8bfbe4b-f5e3-4c9a-b448-3c420bc60ec6","_postman_id":"e8bfbe4b-f5e3-4c9a-b448-3c420bc60ec6","description":""},{"name":"THB-Thailand-API","item":[{"name":"PAYMENT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"b9304f14-6770-4f13-9108-b1c2b1efed5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"callbackUrl\": \"https://9491-183-12-101-73.ap.ngrok.io/india-service/core/payhereback/payhere1\",\n    \"redirectUrl\": \"https://www.google.com\",\n    \"currency\": \"THB\",\n    \"paymentType\":\"PROMPT_PAY\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"jmas\",\n    \"email\": \"29339794@qq.com\",\n    \"phone\": \"088229588432\",\n    \"mchOrderId\": \"133321Q\",\n    \"productinfo\": \"test info\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>paymentType：PROMPT_PAY(QR code)，NET_BANKING</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9304f14-6770-4f13-9108-b1c2b1efed5c"},{"name":"PAYOUT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"467b9655-8f9d-4dfe-80a9-f871d3d0d9fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"34343411R\",\n    \"paymentType\":\"NET_BANKING\",\n    \"amount\": \"10.00\",\n    \"currency\":\"THB\",\n    \"purpose\": \"shopping\",\n    \"beneficiaryName\":\"AN GENGYU\",\n    \"beneficiaryEmail\":\"12342567776@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryBankCode\":\"KTB\",\n    \"beneficiaryAccountNumber\": \"646180209100000001\",\n    \"callbackUrl\": \"http://dailount.com/api/callback_today/notify_putout\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a>public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>bankCode：refer to follow list</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>enums ：  <br />NET_BANKING</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>beneficiaryBankCode bank code</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>bank code</th>\n<th>en name</th>\n<th>cn name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BBL</td>\n<td>Bangkok Bank</td>\n<td>盘谷银行</td>\n</tr>\n<tr>\n<td>KBANK</td>\n<td>Kasikorn Bank</td>\n<td>泰华农民银行</td>\n</tr>\n<tr>\n<td>SCB</td>\n<td>Siam Commercial Bank</td>\n<td>暹罗商业银行</td>\n</tr>\n<tr>\n<td>KTB</td>\n<td>Krung Thai Bank</td>\n<td>泰京银行</td>\n</tr>\n<tr>\n<td>TTB</td>\n<td>TTB Bank</td>\n<td>泰国军人银行</td>\n</tr>\n<tr>\n<td>BAY</td>\n<td>Krungsri Bank Bank Of Ayudhya</td>\n<td>大城银行</td>\n</tr>\n<tr>\n<td>TBANK</td>\n<td>Thanachart Bank</td>\n<td>泰纳昌银行</td>\n</tr>\n<tr>\n<td>BAAC</td>\n<td>Bank for Agriculture and Agricultural Cooperatives</td>\n<td>农业合作社银行</td>\n</tr>\n<tr>\n<td>LHBANK</td>\n<td>Land and Houses Bank</td>\n<td>土地房产银行</td>\n</tr>\n<tr>\n<td>GHB</td>\n<td>Government Housing Bank</td>\n<td>政府住房银行</td>\n</tr>\n<tr>\n<td>KKP</td>\n<td>Kiatnakin Bank</td>\n<td>甲那金银行</td>\n</tr>\n<tr>\n<td>CIMBT</td>\n<td>CIMB Bank</td>\n<td>联昌国际银行</td>\n</tr>\n<tr>\n<td>UOB</td>\n<td>United Overseas Bank</td>\n<td>大华银行</td>\n</tr>\n<tr>\n<td>GSB</td>\n<td>Government Savings Bank</td>\n<td>政府储蓄银行</td>\n</tr>\n<tr>\n<td>CITI</td>\n<td>Citibank National Association</td>\n<td>花旗银行</td>\n</tr>\n<tr>\n<td>MHCB</td>\n<td>Mizuho Bank</td>\n<td>日本瑞穗银行</td>\n</tr>\n<tr>\n<td>ibank</td>\n<td>Islamic Bank of Thailand</td>\n<td>伊斯兰银行</td>\n</tr>\n<tr>\n<td>Tisco</td>\n<td>Tisco Bank</td>\n<td></td>\n</tr>\n<tr>\n<td>ICBC</td>\n<td>ICBC (Thai) Leasing Company Limited</td>\n<td>中国工商银行</td>\n</tr>\n<tr>\n<td>Thai Credit</td>\n<td>The Thai Credit Retail Bank</td>\n<td></td>\n</tr>\n<tr>\n<td>SMBC</td>\n<td>Sumitomo Mitsui Banking Corporation</td>\n<td>日本三井住友银行</td>\n</tr>\n<tr>\n<td>HSBC</td>\n<td>The Hongkong and Shanghai Banking Corporation Limited</td>\n<td>汇丰银行</td>\n</tr>\n<tr>\n<td>DB</td>\n<td>Deutsche Bank AG</td>\n<td>德意志银行</td>\n</tr>\n<tr>\n<td>BOC</td>\n<td>Bank of China</td>\n<td>中国银行</td>\n</tr>\n<tr>\n<td>ANZ</td>\n<td>Australia and New Zealand Banking Group Limited</td>\n<td>澳新银行</td>\n</tr>\n<tr>\n<td>IOB</td>\n<td>INDIAN OVERSEAS BANK</td>\n<td>印度海外银行</td>\n</tr>\n<tr>\n<td>TTB</td>\n<td>TMB Thanachart</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"467b9655-8f9d-4dfe-80a9-f871d3d0d9fc"}],"id":"0b60876d-a464-417c-8c6f-c149694e5ef7","_postman_id":"0b60876d-a464-417c-8c6f-c149694e5ef7","description":""},{"name":"KES-Kenya-API","item":[{"name":"PAYMENT-MPESA","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"e76aad9c-8a40-47bd-a6b8-e93ada870991","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"KES\",\n    \"email\": \"932561@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"1779467696\",\n    \"paymentType\": \"\",\n    \"paymentMethod\": \"\",\n    \"cardNumber\": \"254723081406\",\n    \"phone\": \"254723081406\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th>Required</th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>docType</td>\n<td>Mobile phone number operator type;  <br />MPESA: mpesa mobile phone operator;  <br />AIRTEL: airtel mobile phone operator;</td>\n<td>String</td>\n<td>required</td>\n<td>MPESA</td>\n</tr>\n<tr>\n<td>cardNumber</td>\n<td>If the payment is received by bank card, fill in the bank card account number; if the payment is received by wallet, fill in the wallet account number</td>\n<td>String</td>\n<td>required</td>\n<td>0738222112</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Type；  <br />MPESA</td>\n<td>String</td>\n<td>optional</td>\n<td>MPESA</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment Method</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKOUT_URL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"da7e7b94-9414-4c34-b5ae-da7ba546193e","name":"PAYMENT-MPESA-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"KES\",\n    \"docType\": \"MPESA\",\n    \"paymentType\": \"\",\n    \"email\": \"93256@gmail.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254723081406\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"e76aad9c-8a40-47bd-a6b8-e93ada870991"},{"name":"PAYOUT-BANKTRANSFER","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"1e27d26e-0e07-4696-ab29-79afce026ed2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"currency\": \"KES\",\n    \"docType\": \"MPESA\",\n    \"paymentType\":\"MPESA\",\n    \"purpose\": \"Saf Mobile money\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"John Doe\",\n    \"beneficiaryAccountNumber\": \"254725850798\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"254725850798\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>beneficiary bank code</td>\n<td>String</td>\n<td>required</td>\n<td>0001</td>\n</tr>\n<tr>\n<td>docType</td>\n<td>Mobile phone number operator type;  <br />MPESA: mpesa mobile phone operator;  <br />AIRTEL: airtel mobile phone operator;</td>\n<td>String</td>\n<td>required</td>\n<td>MPESA</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Types;  <br />MPESA: mpesa wallet  <br />AIRTEL: airtel wallet  <br />NET_BANKING: bank transfer</td>\n<td>String</td>\n<td>required</td>\n<td>MPESA</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>bankName</th>\n<th>bankCode</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KCB</td>\n<td>0001</td>\n</tr>\n<tr>\n<td>Stanchart</td>\n<td>0002</td>\n</tr>\n<tr>\n<td>ABSA</td>\n<td>0003</td>\n</tr>\n<tr>\n<td>Bank of India</td>\n<td>0005</td>\n</tr>\n<tr>\n<td>Bank of Baroda</td>\n<td>0006</td>\n</tr>\n<tr>\n<td>NCBA</td>\n<td>0007</td>\n</tr>\n<tr>\n<td>Prime Bank</td>\n<td>0010</td>\n</tr>\n<tr>\n<td>Coop Bank</td>\n<td>0011</td>\n</tr>\n<tr>\n<td>NBK</td>\n<td>0012</td>\n</tr>\n<tr>\n<td>M-Oriental</td>\n<td>0014</td>\n</tr>\n<tr>\n<td>Citi Bank</td>\n<td>0016</td>\n</tr>\n<tr>\n<td>Habib Bank AG Zurich</td>\n<td>0017</td>\n</tr>\n<tr>\n<td>Middle East Bank</td>\n<td>0018</td>\n</tr>\n<tr>\n<td>Bank of Africa</td>\n<td>0019</td>\n</tr>\n<tr>\n<td>Consolidated</td>\n<td>0023</td>\n</tr>\n<tr>\n<td>Credit Bank</td>\n<td>0025</td>\n</tr>\n<tr>\n<td>Access Bank</td>\n<td>0026</td>\n</tr>\n<tr>\n<td>Chase Bank</td>\n<td>0030</td>\n</tr>\n<tr>\n<td>Stanbic Bank</td>\n<td>0031</td>\n</tr>\n<tr>\n<td>ABC Bank</td>\n<td>0035</td>\n</tr>\n<tr>\n<td>Eco Bank</td>\n<td>0043</td>\n</tr>\n<tr>\n<td>Equatorial Commercial Bank</td>\n<td>0049</td>\n</tr>\n<tr>\n<td>Paramount</td>\n<td>0050</td>\n</tr>\n<tr>\n<td>Kingdom Bank</td>\n<td>0051</td>\n</tr>\n<tr>\n<td>Gt Bank</td>\n<td>0053</td>\n</tr>\n<tr>\n<td>Victoria Bank</td>\n<td>0054</td>\n</tr>\n<tr>\n<td>Guardian Bank</td>\n<td>0055</td>\n</tr>\n<tr>\n<td>I&amp;M Bank</td>\n<td>0057</td>\n</tr>\n<tr>\n<td>Development Bank</td>\n<td>0059</td>\n</tr>\n<tr>\n<td>SBM</td>\n<td>0060</td>\n</tr>\n<tr>\n<td>Housing finance</td>\n<td>0061</td>\n</tr>\n<tr>\n<td>DTB</td>\n<td>0063</td>\n</tr>\n<tr>\n<td>Mayfair Bank</td>\n<td>0065</td>\n</tr>\n<tr>\n<td>Sidian Bank</td>\n<td>0066</td>\n</tr>\n<tr>\n<td>Equity Bank</td>\n<td>0068</td>\n</tr>\n<tr>\n<td>Family Bank</td>\n<td>0070</td>\n</tr>\n<tr>\n<td>Gulf African Bank</td>\n<td>0072</td>\n</tr>\n<tr>\n<td>First Community Bank</td>\n<td>0074</td>\n</tr>\n<tr>\n<td>DIB Bank</td>\n<td>0075</td>\n</tr>\n<tr>\n<td>UBA</td>\n<td>0076</td>\n</tr>\n<tr>\n<td>KWFT</td>\n<td>0078</td>\n</tr>\n<tr>\n<td>Faulu Bank</td>\n<td>0079</td>\n</tr>\n<tr>\n<td>Post Bank</td>\n<td>0099</td>\n</tr>\n<tr>\n<td>IPS (Instant Payment Switch)</td>\n<td>9999</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"7de1429d-262b-4640-a93b-109f183d621e","name":"PAYOUT-BANKTRANSFER-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"mchId\": \"1416010331032883200\",\n    \"currency\": \"KES\",\n    \"docType\": \"MPESA\",\n    \"paymentType\":\"MPESA\",\n    \"purpose\": \"Saf Mobile money\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"John Doe\",\n    \"beneficiaryAccountNumber\": \"254725850798\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"254725850798\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"1e27d26e-0e07-4696-ab29-79afce026ed2"}],"id":"2f823c2d-cf5f-4188-ac8f-217f8ef16ac2","_postman_id":"2f823c2d-cf5f-4188-ac8f-217f8ef16ac2","description":""},{"name":"NGN-Nigeria-API","item":[{"name":"PAYMENT-NET_BANKING","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"d9154a17-a808-492a-b428-d2c9cab82f5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"NGN\",\n    \"email\": \"932563921@qq.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"1779467696\",\n    \"paymentType\": \"\",\n    \"paymentMethod\": \"\",\n    \"cardNumber\": \"0738222112\",\n    \"phone\": \"8095659738\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardNumber</td>\n<td>If the payment is received by bank card, fill in the bank card account number; if the payment is received by wallet, fill in the wallet account number</td>\n<td>String</td>\n<td>required</td>\n<td>0738222112</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Type；  <br />TCTD  <br />NET_BANKING</td>\n<td>String</td>\n<td>optional</td>\n<td>NET_BANKING</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKOUT_URL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"f81168c3-7dc6-4252-8a1d-ca216f96b5d9","name":"PAYMENT-CELLULANT-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"100\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"KES\",\n    \"docType\": \"MPESA\",\n    \"paymentType\": \"\",\n    \"email\": \"932563921@qq.com\",\n    \"firstname\": \"lee\",\n    \"lastname\": \"sullen\",\n    \"mchOrderId\": \"1779467696\",\n    \"phone\": \"254723081406\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"d9154a17-a808-492a-b428-d2c9cab82f5d"},{"name":"PAYOUT-NET_BANKING","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"4a038a50-c5a1-43f0-a2b9-8b6b91b89c1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"currency\": \"NGN\",\n    \"paymentType\":\"NET_BANKING\",\n    \"purpose\": \"by sdsd\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"Osikomaiya olatunbosun\",\n    \"beneficiaryBankCode\": \"000003\",\n    \"beneficiaryAccountNumber\": \"8654867014\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"8095659738\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to Transaction-API [PAYOUT-API])</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>Beneficiary bank code</td>\n<td>String</td>\n<td>required</td>\n<td>0001</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Type;  <br />NET_BANKING：bank transfer</td>\n<td>String</td>\n<td>required</td>\n<td>NET_BANKING</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Beneficiary first name</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Beneficiary last name</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>bankName</th>\n<th>bankCode</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sterling Bank</td>\n<td>000001</td>\n</tr>\n<tr>\n<td>Keystone Bank</td>\n<td>000002</td>\n</tr>\n<tr>\n<td>FCMB</td>\n<td>000003</td>\n</tr>\n<tr>\n<td>United Bank for Africa</td>\n<td>000004</td>\n</tr>\n<tr>\n<td>Diamond Bank</td>\n<td>000005</td>\n</tr>\n<tr>\n<td>JAIZ Bank</td>\n<td>000006</td>\n</tr>\n<tr>\n<td>Fidelity Bank</td>\n<td>000007</td>\n</tr>\n<tr>\n<td>Polaris Bank</td>\n<td>000008</td>\n</tr>\n<tr>\n<td>Citi Bank</td>\n<td>000009</td>\n</tr>\n<tr>\n<td>Ecobank Bank</td>\n<td>000010</td>\n</tr>\n<tr>\n<td>Unity Bank</td>\n<td>000011</td>\n</tr>\n<tr>\n<td>StanbicIBTC Bank</td>\n<td>000012</td>\n</tr>\n<tr>\n<td>GTBank Plc</td>\n<td>000013</td>\n</tr>\n<tr>\n<td>Access Bank</td>\n<td>000014</td>\n</tr>\n<tr>\n<td>Zenith Bank Plc</td>\n<td>000015</td>\n</tr>\n<tr>\n<td>First Bank of Nigeria</td>\n<td>000016</td>\n</tr>\n<tr>\n<td>Wema Bank</td>\n<td>000017</td>\n</tr>\n<tr>\n<td>Union Bank</td>\n<td>000018</td>\n</tr>\n<tr>\n<td>Enterprise Bank</td>\n<td>000019</td>\n</tr>\n<tr>\n<td>Heritage</td>\n<td>000020</td>\n</tr>\n<tr>\n<td>StandardChartered</td>\n<td>000021</td>\n</tr>\n<tr>\n<td>Suntrust Bank</td>\n<td>000022</td>\n</tr>\n<tr>\n<td>Providus Bank</td>\n<td>000023</td>\n</tr>\n<tr>\n<td>Rand Merchant Bank</td>\n<td>000024</td>\n</tr>\n<tr>\n<td>Titan Trust Bank</td>\n<td>000025</td>\n</tr>\n<tr>\n<td>Taj Bank</td>\n<td>000026</td>\n</tr>\n<tr>\n<td>Globus Bank</td>\n<td>000027</td>\n</tr>\n<tr>\n<td>Central Bank of Nigeria</td>\n<td>000028</td>\n</tr>\n<tr>\n<td>Premium Trust Bank</td>\n<td>000031</td>\n</tr>\n<tr>\n<td>Titan-Paystack</td>\n<td>000032</td>\n</tr>\n<tr>\n<td>eNaira</td>\n<td>000033</td>\n</tr>\n<tr>\n<td>FEWCHORE FINANCE COMPANY LIMITED</td>\n<td>050002</td>\n</tr>\n<tr>\n<td>FSDH Merchant Bank</td>\n<td>400001</td>\n</tr>\n<tr>\n<td>Coronation Merchant Bank</td>\n<td>060001</td>\n</tr>\n<tr>\n<td>FBNQUEST Merchant Bank</td>\n<td>060002</td>\n</tr>\n<tr>\n<td>Nova Merchant Bank</td>\n<td>060003</td>\n</tr>\n<tr>\n<td>Greenwich Merchant Bank</td>\n<td>060004</td>\n</tr>\n<tr>\n<td>Omoluabi savings and loans</td>\n<td>070007</td>\n</tr>\n<tr>\n<td>ASOSavings &amp; Loans</td>\n<td>090001</td>\n</tr>\n<tr>\n<td>Trustbond Mortgage Bank</td>\n<td>090005</td>\n</tr>\n<tr>\n<td>SafeTrust</td>\n<td>090006</td>\n</tr>\n<tr>\n<td>FBN Mortgages Limited</td>\n<td>090107</td>\n</tr>\n<tr>\n<td>Imperial Homes Mortgage Bank</td>\n<td>100024</td>\n</tr>\n<tr>\n<td>AG Mortgage Bank</td>\n<td>100028</td>\n</tr>\n<tr>\n<td>Gateway Mortgage Bank</td>\n<td>070009</td>\n</tr>\n<tr>\n<td>Abbey Mortgage Bank</td>\n<td>070010</td>\n</tr>\n<tr>\n<td>Refuge Mortgage Bank</td>\n<td>070011</td>\n</tr>\n<tr>\n<td>Lagos Building Investment Company</td>\n<td>070012</td>\n</tr>\n<tr>\n<td>Platinum Mortgage Bank</td>\n<td>070013</td>\n</tr>\n<tr>\n<td>First Generation Mortgage Bank</td>\n<td>070014</td>\n</tr>\n<tr>\n<td>Brent Mortgage Bank</td>\n<td>070015</td>\n</tr>\n<tr>\n<td>Infinity Trust Mortgage Bank</td>\n<td>070016</td>\n</tr>\n<tr>\n<td>MayFresh Mortgage Bank</td>\n<td>070019</td>\n</tr>\n<tr>\n<td>Jubilee-Life Mortgage Bank</td>\n<td>090003</td>\n</tr>\n<tr>\n<td>Haggai Mortgage Bank Limited</td>\n<td>070017</td>\n</tr>\n<tr>\n<td>Coop Mortgage Bank</td>\n<td>070021</td>\n</tr>\n<tr>\n<td>Delta Trust Microfinance Bank</td>\n<td>070023</td>\n</tr>\n<tr>\n<td>Homebase Mortgage Bank</td>\n<td>070024</td>\n</tr>\n<tr>\n<td>Akwa Savings &amp; Loans Limited</td>\n<td>070025</td>\n</tr>\n<tr>\n<td>New Prudential Bank</td>\n<td>090108</td>\n</tr>\n<tr>\n<td>NPF MicroFinance Bank</td>\n<td>070001</td>\n</tr>\n<tr>\n<td>Fortis Microfinance Bank</td>\n<td>070002</td>\n</tr>\n<tr>\n<td>Covenant MFB</td>\n<td>070006</td>\n</tr>\n<tr>\n<td>Page Financials</td>\n<td>070008</td>\n</tr>\n<tr>\n<td>Parralex Microfinance bank</td>\n<td>090004</td>\n</tr>\n<tr>\n<td>Ekondo MFB</td>\n<td>090097</td>\n</tr>\n<tr>\n<td>VFD MFB</td>\n<td>090110</td>\n</tr>\n<tr>\n<td>Seed Capital Microfinance Bank</td>\n<td>090112</td>\n</tr>\n<tr>\n<td>FinaTrust Microfinance Bank</td>\n<td>090111</td>\n</tr>\n<tr>\n<td>Empire trust MFB</td>\n<td>090114</td>\n</tr>\n<tr>\n<td>TCF MFB</td>\n<td>090115</td>\n</tr>\n<tr>\n<td>AMML MFB</td>\n<td>090116</td>\n</tr>\n<tr>\n<td>Boctrust Microfinance Bank</td>\n<td>090117</td>\n</tr>\n<tr>\n<td>IBILE Microfinance Bank</td>\n<td>090118</td>\n</tr>\n<tr>\n<td>Ohafia Microfinance Bank</td>\n<td>090119</td>\n</tr>\n<tr>\n<td>Wetland Microfinance Bank</td>\n<td>090120</td>\n</tr>\n<tr>\n<td>Hasal Microfinance Bank</td>\n<td>090121</td>\n</tr>\n<tr>\n<td>Gowans Microfinance Bank</td>\n<td>090122</td>\n</tr>\n<tr>\n<td>Verite Microfinance Bank</td>\n<td>090123</td>\n</tr>\n<tr>\n<td>Xslnce Microfinance Bank</td>\n<td>090124</td>\n</tr>\n<tr>\n<td>Regent Microfinance Bank</td>\n<td>090125</td>\n</tr>\n<tr>\n<td>Fidfund Microfinance Bank</td>\n<td>090126</td>\n</tr>\n<tr>\n<td>BC Kash Microfinance Bank</td>\n<td>090127</td>\n</tr>\n<tr>\n<td>Ndiorah Microfinance Bank</td>\n<td>090128</td>\n</tr>\n<tr>\n<td>Money Trust Microfinance Bank</td>\n<td>090129</td>\n</tr>\n<tr>\n<td>Consumer Microfinance Bank</td>\n<td>090130</td>\n</tr>\n<tr>\n<td>Allworkers Microfinance Bank</td>\n<td>090131</td>\n</tr>\n<tr>\n<td>Richway Microfinance Bank</td>\n<td>090132</td>\n</tr>\n<tr>\n<td>AL-Barakah Microfinance Bank</td>\n<td>090133</td>\n</tr>\n<tr>\n<td>Accion Microfinance Bank</td>\n<td>090134</td>\n</tr>\n<tr>\n<td>Personal Trust Microfinance Bank</td>\n<td>090135</td>\n</tr>\n<tr>\n<td>Microcred Microfinance Bank</td>\n<td>090136</td>\n</tr>\n<tr>\n<td>PecanTrust Microfinance Bank</td>\n<td>090137</td>\n</tr>\n<tr>\n<td>Royal Exchange Microfinance Bank</td>\n<td>090138</td>\n</tr>\n<tr>\n<td>Visa Microfinance Bank</td>\n<td>090139</td>\n</tr>\n<tr>\n<td>Sagamu Microfinance Bank</td>\n<td>090140</td>\n</tr>\n<tr>\n<td>Chikum Microfinance Bank</td>\n<td>090141</td>\n</tr>\n<tr>\n<td>Yes Microfinance Bank</td>\n<td>090142</td>\n</tr>\n<tr>\n<td>Apeks Microfinance Bank</td>\n<td>090143</td>\n</tr>\n<tr>\n<td>CIT Microfinance Bank</td>\n<td>090144</td>\n</tr>\n<tr>\n<td>Fullrange Microfinance Bank</td>\n<td>090145</td>\n</tr>\n<tr>\n<td>Trident Microfinance Bank</td>\n<td>090146</td>\n</tr>\n<tr>\n<td>Hackman Microfinance Bank</td>\n<td>090147</td>\n</tr>\n<tr>\n<td>Bowen Microfinance Bank</td>\n<td>090148</td>\n</tr>\n<tr>\n<td>IRL Microfinance Bank</td>\n<td>090149</td>\n</tr>\n<tr>\n<td>Virtue Microfinance Bank</td>\n<td>090150</td>\n</tr>\n<tr>\n<td>Mutual Trust Microfinance Bank</td>\n<td>090151</td>\n</tr>\n<tr>\n<td>Nagarta Microfinance Bank</td>\n<td>090152</td>\n</tr>\n<tr>\n<td>FFS Microfinance Bank</td>\n<td>090153</td>\n</tr>\n<tr>\n<td>CEMCS Microfinance Bank</td>\n<td>090154</td>\n</tr>\n<tr>\n<td>Advans La Fayette Microfinance Bank</td>\n<td>090155</td>\n</tr>\n<tr>\n<td>e-Barcs Microfinance Bank</td>\n<td>090156</td>\n</tr>\n<tr>\n<td>Infinity Microfinance Bank</td>\n<td>090157</td>\n</tr>\n<tr>\n<td>Futo Microfinance Bank</td>\n<td>090158</td>\n</tr>\n<tr>\n<td>Credit Afrique Microfinance Bank</td>\n<td>090159</td>\n</tr>\n<tr>\n<td>Addosser Microfinance Bank</td>\n<td>090160</td>\n</tr>\n<tr>\n<td>Okpoga Microfinance Bank</td>\n<td>090161</td>\n</tr>\n<tr>\n<td>Stanford Microfinance Bak</td>\n<td>090162</td>\n</tr>\n<tr>\n<td>First Royal Microfinance Bank</td>\n<td>090164</td>\n</tr>\n<tr>\n<td>Petra Microfinance Bank</td>\n<td>090165</td>\n</tr>\n<tr>\n<td>Eso-E Microfinance Bank</td>\n<td>090166</td>\n</tr>\n<tr>\n<td>Daylight Microfinance Bank</td>\n<td>090167</td>\n</tr>\n<tr>\n<td>Gashua Microfinance Bank</td>\n<td>090168</td>\n</tr>\n<tr>\n<td>Alpha Kapital Microfinance Bank</td>\n<td>090169</td>\n</tr>\n<tr>\n<td>Mainstreet Microfinance Bank</td>\n<td>090171</td>\n</tr>\n<tr>\n<td>Astrapolaris Microfinance Bank</td>\n<td>090172</td>\n</tr>\n<tr>\n<td>Reliance Microfinance Bank</td>\n<td>090173</td>\n</tr>\n<tr>\n<td>Malachy Microfinance Bank</td>\n<td>090174</td>\n</tr>\n<tr>\n<td>HighStreet Microfinance Bank</td>\n<td>090175</td>\n</tr>\n<tr>\n<td>Bosak Microfinance Bank</td>\n<td>090176</td>\n</tr>\n<tr>\n<td>Lapo Microfinance Bank</td>\n<td>090177</td>\n</tr>\n<tr>\n<td>GreenBank Microfinance Bank</td>\n<td>090178</td>\n</tr>\n<tr>\n<td>FAST Microfinance Bank</td>\n<td>090179</td>\n</tr>\n<tr>\n<td>Amju Unique Microfinance Bank</td>\n<td>090180</td>\n</tr>\n<tr>\n<td>Girei Microfinance Bank</td>\n<td>090186</td>\n</tr>\n<tr>\n<td>Baines Credit Microfinance Bank</td>\n<td>090188</td>\n</tr>\n<tr>\n<td>Esan Microfinance Bank</td>\n<td>090189</td>\n</tr>\n<tr>\n<td>Mutual Benefits Microfinance Bank</td>\n<td>090190</td>\n</tr>\n<tr>\n<td>KCMB Microfinance Bank</td>\n<td>090191</td>\n</tr>\n<tr>\n<td>Midland Microfinance Bank</td>\n<td>090192</td>\n</tr>\n<tr>\n<td>Unical Microfinance Bank</td>\n<td>090193</td>\n</tr>\n<tr>\n<td>NIRSAL Microfinance Bank</td>\n<td>090194</td>\n</tr>\n<tr>\n<td>Grooming Microfinance Bank</td>\n<td>090195</td>\n</tr>\n<tr>\n<td>Pennywise Microfinance Bank</td>\n<td>090196</td>\n</tr>\n<tr>\n<td>ABU Microfinance Bank</td>\n<td>090197</td>\n</tr>\n<tr>\n<td>RenMoney Microfinance Bank</td>\n<td>090198</td>\n</tr>\n<tr>\n<td>New Dawn Microfinance Bank</td>\n<td>090205</td>\n</tr>\n<tr>\n<td>UNN MFB</td>\n<td>090251</td>\n</tr>\n<tr>\n<td>Yobe Microfinance Bank</td>\n<td>090252</td>\n</tr>\n<tr>\n<td>Coalcamp Microfinance Bank</td>\n<td>090254</td>\n</tr>\n<tr>\n<td>Imo State Microfinance Bank</td>\n<td>090258</td>\n</tr>\n<tr>\n<td>Alekun Microfinance Bank</td>\n<td>090259</td>\n</tr>\n<tr>\n<td>Above Only Microfinance Bank</td>\n<td>090260</td>\n</tr>\n<tr>\n<td>Quickfund Microfinance Bank</td>\n<td>090261</td>\n</tr>\n<tr>\n<td>Stellas Microfinance Bank</td>\n<td>090262</td>\n</tr>\n<tr>\n<td>Navy Microfinance Bank</td>\n<td>090263</td>\n</tr>\n<tr>\n<td>Auchi Microfinance Bank</td>\n<td>090264</td>\n</tr>\n<tr>\n<td>Lovonus Microfinance Bank</td>\n<td>090265</td>\n</tr>\n<tr>\n<td>Uniben Microfinance Bank</td>\n<td>090266</td>\n</tr>\n<tr>\n<td>Kuda Microfinance Bank</td>\n<td>090267</td>\n</tr>\n<tr>\n<td>Adeyemi College Staff Microfinance Bank</td>\n<td>090268</td>\n</tr>\n<tr>\n<td>Greenville Microfinance Bank</td>\n<td>090269</td>\n</tr>\n<tr>\n<td>AB Microfinance Bank</td>\n<td>090270</td>\n</tr>\n<tr>\n<td>Lavender Microfinance Bank</td>\n<td>090271</td>\n</tr>\n<tr>\n<td>Olabisi Onabanjo University Microfinance Bank</td>\n<td>090272</td>\n</tr>\n<tr>\n<td>Emeralds Microfinance Bank</td>\n<td>090273</td>\n</tr>\n<tr>\n<td>Prestige Microfinance Bank</td>\n<td>090274</td>\n</tr>\n<tr>\n<td>Trustfund Microfinance Bank</td>\n<td>090276</td>\n</tr>\n<tr>\n<td>Al-Hayat Microfinance Bank</td>\n<td>090277</td>\n</tr>\n<tr>\n<td>Glory Microfinance Bank</td>\n<td>090278</td>\n</tr>\n<tr>\n<td>Ikire Microfinance Bank</td>\n<td>090279</td>\n</tr>\n<tr>\n<td>Megapraise Microfinance Bank</td>\n<td>090280</td>\n</tr>\n<tr>\n<td>MintFinex Microfinance Bank</td>\n<td>090281</td>\n</tr>\n<tr>\n<td>Arise Microfinance Bank</td>\n<td>090282</td>\n</tr>\n<tr>\n<td>Nnew Women Microfinance Bank</td>\n<td>090283</td>\n</tr>\n<tr>\n<td>First Option Microfinance Bank</td>\n<td>090285</td>\n</tr>\n<tr>\n<td>Safe Haven Microfinance Bank</td>\n<td>090286</td>\n</tr>\n<tr>\n<td>AssetMatrix Microfinance Bank</td>\n<td>090287</td>\n</tr>\n<tr>\n<td>Pillar Microfinance Bank</td>\n<td>090289</td>\n</tr>\n<tr>\n<td>FCT Microfinance Bank</td>\n<td>090290</td>\n</tr>\n<tr>\n<td>Afekhafe Microfinance Bank</td>\n<td>090292</td>\n</tr>\n<tr>\n<td>Brethren Microfinance Bank</td>\n<td>090293</td>\n</tr>\n<tr>\n<td>Eagle Flight Microfinance Bank</td>\n<td>090294</td>\n</tr>\n<tr>\n<td>Omiye Microfinance Bank</td>\n<td>090295</td>\n</tr>\n<tr>\n<td>Polyunwana Microfinance Bank</td>\n<td>090296</td>\n</tr>\n<tr>\n<td>Alert Microfinance Bank</td>\n<td>090297</td>\n</tr>\n<tr>\n<td>FedPoly Nasarawa Microfinance Bank</td>\n<td>090298</td>\n</tr>\n<tr>\n<td>Kontagora Microfinance Bank</td>\n<td>090299</td>\n</tr>\n<tr>\n<td>Purplemoney Microfinance Bank</td>\n<td>090303</td>\n</tr>\n<tr>\n<td>Evangel Microfinance Bank</td>\n<td>090304</td>\n</tr>\n<tr>\n<td>Sulspap Microfinance Bank</td>\n<td>090305</td>\n</tr>\n<tr>\n<td>Aramoko Microfinance Bank</td>\n<td>090307</td>\n</tr>\n<tr>\n<td>Brightway Microfinance Bank</td>\n<td>090308</td>\n</tr>\n<tr>\n<td>EdFin Microfinance Bank</td>\n<td>090310</td>\n</tr>\n<tr>\n<td>U &amp; C Microfinance Bank</td>\n<td>090315</td>\n</tr>\n<tr>\n<td>PatrickGold Microfinance Bank</td>\n<td>090317</td>\n</tr>\n<tr>\n<td>Federal University Dutse Microfinance Bank</td>\n<td>090318</td>\n</tr>\n<tr>\n<td>KadPoly Microfinance Bank</td>\n<td>090320</td>\n</tr>\n<tr>\n<td>MayFair Microfinance Bank</td>\n<td>090321</td>\n</tr>\n<tr>\n<td>Rephidim Microfinance Bank</td>\n<td>090322</td>\n</tr>\n<tr>\n<td>Mainland Microfinance Bank</td>\n<td>090323</td>\n</tr>\n<tr>\n<td>Ikenne Microfinance Bank</td>\n<td>090324</td>\n</tr>\n<tr>\n<td>Sparkle</td>\n<td>090325</td>\n</tr>\n<tr>\n<td>Balogun Gambari Microfinance Bank</td>\n<td>090326</td>\n</tr>\n<tr>\n<td>Trust Microfinance Bank</td>\n<td>090327</td>\n</tr>\n<tr>\n<td>Eyowo</td>\n<td>090328</td>\n</tr>\n<tr>\n<td>Neptune Microfinance Bank</td>\n<td>090329</td>\n</tr>\n<tr>\n<td>UNAAB Microfinance Bank</td>\n<td>090331</td>\n</tr>\n<tr>\n<td>Evergreen Microfinance Bank</td>\n<td>090332</td>\n</tr>\n<tr>\n<td>Oche Microfinance Bank</td>\n<td>090333</td>\n</tr>\n<tr>\n<td>Jessefield Microfinance Bank</td>\n<td>090352</td>\n</tr>\n<tr>\n<td>BIPC Microfinance Bank</td>\n<td>090336</td>\n</tr>\n<tr>\n<td>Nassarawa Microfinance Bank</td>\n<td>090349</td>\n</tr>\n<tr>\n<td>CashConnect Microfinance Bank</td>\n<td>090360</td>\n</tr>\n<tr>\n<td>Molusi Microfinance Bank</td>\n<td>090362</td>\n</tr>\n<tr>\n<td>Headway Microfinance Bank</td>\n<td>090363</td>\n</tr>\n<tr>\n<td>Nuture Microfinance Bank</td>\n<td>090364</td>\n</tr>\n<tr>\n<td>Corestep Microfinance Bank</td>\n<td>090365</td>\n</tr>\n<tr>\n<td>Firmus Microfinance Bank</td>\n<td>090366</td>\n</tr>\n<tr>\n<td>Seedvest Microfinance Bank</td>\n<td>090369</td>\n</tr>\n<tr>\n<td>Ilisan Microfinance Bank</td>\n<td>090370</td>\n</tr>\n<tr>\n<td>Legend Microfinance Bank</td>\n<td>090372</td>\n</tr>\n<tr>\n<td>Think Finance Microfinance Bank</td>\n<td>090373</td>\n</tr>\n<tr>\n<td>Coastline Microfinance Bank</td>\n<td>090374</td>\n</tr>\n<tr>\n<td>Apple Microfinance Bank</td>\n<td>090376</td>\n</tr>\n<tr>\n<td>Isaleoyo Microfinance Bank</td>\n<td>090377</td>\n</tr>\n<tr>\n<td>New Golden Pastures Microfinance Bank</td>\n<td>090378</td>\n</tr>\n<tr>\n<td>GTI Microfinance Bank</td>\n<td>090385</td>\n</tr>\n<tr>\n<td>Interland Microfinance Bank</td>\n<td>090386</td>\n</tr>\n<tr>\n<td>EK-Reliable Microfinance Bank</td>\n<td>090389</td>\n</tr>\n<tr>\n<td>Davodani Microfinance Bank</td>\n<td>090391</td>\n</tr>\n<tr>\n<td>Conpro Microfinance Bank</td>\n<td>090380</td>\n</tr>\n<tr>\n<td>Bridgeway Microfinance Bank</td>\n<td>090393</td>\n</tr>\n<tr>\n<td>Amac Microfinance Bank</td>\n<td>090394</td>\n</tr>\n<tr>\n<td>Borgu Microfinance Bank</td>\n<td>090395</td>\n</tr>\n<tr>\n<td>Oscotech Microfinance Bank</td>\n<td>090396</td>\n</tr>\n<tr>\n<td>Nwannegadi Microfinance Bank</td>\n<td>090399</td>\n</tr>\n<tr>\n<td>Federal Polytechnic Nekede Microfinance Bank</td>\n<td>090398</td>\n</tr>\n<tr>\n<td>Shepherd Trust Microfinance Bank</td>\n<td>090401</td>\n</tr>\n<tr>\n<td>Olowolagba Microfinance Bank</td>\n<td>090404</td>\n</tr>\n<tr>\n<td>Rolez Microfinance Bank</td>\n<td>090405</td>\n</tr>\n<tr>\n<td>Business Support Microfinance Bank</td>\n<td>090406</td>\n</tr>\n<tr>\n<td>FCMB BETA</td>\n<td>090409</td>\n</tr>\n<tr>\n<td>GMB Microfinance Bank</td>\n<td>090408</td>\n</tr>\n<tr>\n<td>Maritime Microfinance Bank</td>\n<td>090410</td>\n</tr>\n<tr>\n<td>Giginya Microfinance bank</td>\n<td>090411</td>\n</tr>\n<tr>\n<td>Preeminent Microfinance Bank</td>\n<td>090412</td>\n</tr>\n<tr>\n<td>BOI Microfinance Bank</td>\n<td>090444</td>\n</tr>\n<tr>\n<td>Moyofade Microfinance Bank</td>\n<td>090448</td>\n</tr>\n<tr>\n<td>Rehoboth Microfinance Bank</td>\n<td>090463</td>\n</tr>\n<tr>\n<td>Unimaid Microfinance Bank</td>\n<td>090464</td>\n</tr>\n<tr>\n<td>OLOFIN OWENA Microfinance Bank</td>\n<td>090468</td>\n</tr>\n<tr>\n<td>Assets Microfinance Bank</td>\n<td>090473</td>\n</tr>\n<tr>\n<td>UniUyo Microfinance Bank</td>\n<td>090338</td>\n</tr>\n<tr>\n<td>YCT Microfinance Bank</td>\n<td>090466</td>\n</tr>\n<tr>\n<td>Good Neigbours Microfinance Bank</td>\n<td>090467</td>\n</tr>\n<tr>\n<td>Oluchukwu Microfinance Bank</td>\n<td>090471</td>\n</tr>\n<tr>\n<td>Maintrust Microfinance Bank</td>\n<td>090465</td>\n</tr>\n<tr>\n<td>Aniocha Microfinance bank</td>\n<td>090469</td>\n</tr>\n<tr>\n<td>Caretaker Microfinance Bank</td>\n<td>090472</td>\n</tr>\n<tr>\n<td>Giant Stride Microfinance Bank</td>\n<td>090475</td>\n</tr>\n<tr>\n<td>Balogun Fulani Microfinance Bank</td>\n<td>090181</td>\n</tr>\n<tr>\n<td>Verdant Microfinance Bank</td>\n<td>090474</td>\n</tr>\n<tr>\n<td>Changan RTS Microfinance Bank</td>\n<td>090470</td>\n</tr>\n<tr>\n<td>Anchorage Microfinance Bank</td>\n<td>090476</td>\n</tr>\n<tr>\n<td>Light MFB</td>\n<td>090477</td>\n</tr>\n<tr>\n<td>Fedeth Microfinance Bank</td>\n<td>090482</td>\n</tr>\n<tr>\n<td>Ada Microfinance Bank</td>\n<td>090483</td>\n</tr>\n<tr>\n<td>Ibu-Aje Microfinance Bank</td>\n<td>090488</td>\n</tr>\n<tr>\n<td>Alvana Microfinance Bank</td>\n<td>090489</td>\n</tr>\n<tr>\n<td>Chukwunenye MFB</td>\n<td>090490</td>\n</tr>\n<tr>\n<td>Nsuk MFB</td>\n<td>090491</td>\n</tr>\n<tr>\n<td>Oraukwu MFB</td>\n<td>090492</td>\n</tr>\n<tr>\n<td>Boji MFB</td>\n<td>090494</td>\n</tr>\n<tr>\n<td>Goodnews Microfinance Bank</td>\n<td>090495</td>\n</tr>\n<tr>\n<td>Randalpha Microfinance Bank</td>\n<td>090496</td>\n</tr>\n<tr>\n<td>Pristine Divitis Microfinance Bank</td>\n<td>090499</td>\n</tr>\n<tr>\n<td>Shalom Microfinance Bank</td>\n<td>090502</td>\n</tr>\n<tr>\n<td>Projects Microfinance Bank</td>\n<td>090503</td>\n</tr>\n<tr>\n<td>Zikora Microfinance Bank</td>\n<td>090504</td>\n</tr>\n<tr>\n<td>Nigerian Prisons Microfinance Bank</td>\n<td>090505</td>\n</tr>\n<tr>\n<td>Solid Allianze MFB</td>\n<td>090506</td>\n</tr>\n<tr>\n<td>FIMS MFB</td>\n<td>090507</td>\n</tr>\n<tr>\n<td>SEAP Microfinance Bank</td>\n<td>090513</td>\n</tr>\n<tr>\n<td>RIMA Growth Pathway Microfinance Bank</td>\n<td>090515</td>\n</tr>\n<tr>\n<td>Aniocha Microfinance bank</td>\n<td>090469</td>\n</tr>\n<tr>\n<td>Numo Microfinance Bank</td>\n<td>090516</td>\n</tr>\n<tr>\n<td>Uhuru Microfinance Bank</td>\n<td>090517</td>\n</tr>\n<tr>\n<td>Afemai Microfinance Bank</td>\n<td>090518</td>\n</tr>\n<tr>\n<td>Iboma Fadama Microfinance Bank</td>\n<td>090519</td>\n</tr>\n<tr>\n<td>Chase Microfinance Bank</td>\n<td>090523</td>\n</tr>\n<tr>\n<td>Solidrock microfinance Bank</td>\n<td>090524</td>\n</tr>\n<tr>\n<td>Crescent Microfinance Bank</td>\n<td>090526</td>\n</tr>\n<tr>\n<td>Ojokoro Microfinance Bank</td>\n<td>090527</td>\n</tr>\n<tr>\n<td>Mgbidi Microfinance Bank</td>\n<td>090528</td>\n</tr>\n<tr>\n<td>Ampersand Microfinance Bank</td>\n<td>090529</td>\n</tr>\n<tr>\n<td>Confidence MFB</td>\n<td>090530</td>\n</tr>\n<tr>\n<td>Aku Microfinance Bank</td>\n<td>090531</td>\n</tr>\n<tr>\n<td>Polybadan Microfinance Bank</td>\n<td>090534</td>\n</tr>\n<tr>\n<td>Ikoyi-Osun Microfinance Bank</td>\n<td>090536</td>\n</tr>\n<tr>\n<td>Lobrem Microfinance Bank</td>\n<td>090537</td>\n</tr>\n<tr>\n<td>BluePrint Investments Microfinance Bank</td>\n<td>090538</td>\n</tr>\n<tr>\n<td>Enrich Microfinance Bank</td>\n<td>090539</td>\n</tr>\n<tr>\n<td>Aztec Microfinance Bank</td>\n<td>090540</td>\n</tr>\n<tr>\n<td>Excellent Microfinance Bank</td>\n<td>090541</td>\n</tr>\n<tr>\n<td>Rockshield Microfinance Bank</td>\n<td>090547</td>\n</tr>\n<tr>\n<td>FET</td>\n<td>100001</td>\n</tr>\n<tr>\n<td>Paga</td>\n<td>100002</td>\n</tr>\n<tr>\n<td>Parkway-ReadyCash</td>\n<td>100003</td>\n</tr>\n<tr>\n<td>Paycom(Opay)</td>\n<td>100004</td>\n</tr>\n<tr>\n<td>Cellulant</td>\n<td>100005</td>\n</tr>\n<tr>\n<td>eTranzact</td>\n<td>100006</td>\n</tr>\n<tr>\n<td>Stanbic IBTC @ease wallet</td>\n<td>100007</td>\n</tr>\n<tr>\n<td>Ecobank Xpress Account</td>\n<td>100008</td>\n</tr>\n<tr>\n<td>GTMobile</td>\n<td>100009</td>\n</tr>\n<tr>\n<td>TeasyMobile</td>\n<td>100010</td>\n</tr>\n<tr>\n<td>Mkudi</td>\n<td>100011</td>\n</tr>\n<tr>\n<td>VTNetworks</td>\n<td>100012</td>\n</tr>\n<tr>\n<td>AccessMobile</td>\n<td>100013</td>\n</tr>\n<tr>\n<td>FBNMobile</td>\n<td>100014</td>\n</tr>\n<tr>\n<td>Kegow (Chamsmobile)</td>\n<td>100036</td>\n</tr>\n<tr>\n<td>FortisMobile</td>\n<td>100016</td>\n</tr>\n<tr>\n<td>Hedonmark</td>\n<td>100017</td>\n</tr>\n<tr>\n<td>ZenithMobile</td>\n<td>100018</td>\n</tr>\n<tr>\n<td>Fidelity Mobile</td>\n<td>100019</td>\n</tr>\n<tr>\n<td>MoneyBox</td>\n<td>100020</td>\n</tr>\n<tr>\n<td>Eartholeum</td>\n<td>100021</td>\n</tr>\n<tr>\n<td>GoMoney</td>\n<td>100022</td>\n</tr>\n<tr>\n<td>TagPay</td>\n<td>100023</td>\n</tr>\n<tr>\n<td>Zinternet Nigera Limited</td>\n<td>100025</td>\n</tr>\n<tr>\n<td>One Finance</td>\n<td>100026</td>\n</tr>\n<tr>\n<td>Innovectives Kesh</td>\n<td>100029</td>\n</tr>\n<tr>\n<td>EcoMobile</td>\n<td>100030</td>\n</tr>\n<tr>\n<td>FCMB Easy Account</td>\n<td>100031</td>\n</tr>\n<tr>\n<td>Contec Global Infotech Limited (NowNow)</td>\n<td>100032</td>\n</tr>\n<tr>\n<td>PalmPay Limited</td>\n<td>100033</td>\n</tr>\n<tr>\n<td>Zenith Eazy Wallet</td>\n<td>100034</td>\n</tr>\n<tr>\n<td>Access Yello</td>\n<td>100052</td>\n</tr>\n<tr>\n<td>M36</td>\n<td>100035</td>\n</tr>\n<tr>\n<td>Taj_Pinspay</td>\n<td>080002</td>\n</tr>\n<tr>\n<td>Intellifin</td>\n<td>100027</td>\n</tr>\n<tr>\n<td>PayAttitude Online</td>\n<td>110001</td>\n</tr>\n<tr>\n<td>Flutterwave Technology Solutions Limited</td>\n<td>110002</td>\n</tr>\n<tr>\n<td>Interswitch Limited</td>\n<td>110003</td>\n</tr>\n<tr>\n<td>First Apple Limited</td>\n<td>110004</td>\n</tr>\n<tr>\n<td>3line Card Management Limited</td>\n<td>110005</td>\n</tr>\n<tr>\n<td>Paystack Payment Limited</td>\n<td>110006</td>\n</tr>\n<tr>\n<td>Teamapt Limited</td>\n<td>110007</td>\n</tr>\n<tr>\n<td>Cyberspace Limited</td>\n<td>110014</td>\n</tr>\n<tr>\n<td>Vas2nets Limited</td>\n<td>110015</td>\n</tr>\n<tr>\n<td>Crowdforce</td>\n<td>110017</td>\n</tr>\n<tr>\n<td>Accelerex Network Limited</td>\n<td>090202</td>\n</tr>\n<tr>\n<td>NIP Virtual Bank</td>\n<td>999999</td>\n</tr>\n<tr>\n<td>9Payment Service Bank</td>\n<td>120001</td>\n</tr>\n<tr>\n<td>HopePSB</td>\n<td>120002</td>\n</tr>\n<tr>\n<td>MoMo PSB</td>\n<td>120003</td>\n</tr>\n<tr>\n<td>SmartCash PSB</td>\n<td>120004</td>\n</tr>\n<tr>\n<td>First CITY MONUMENT BANK PLC</td>\n<td>214</td>\n</tr>\n<tr>\n<td>Guaranty Trust Bank</td>\n<td>058</td>\n</tr>\n<tr>\n<td>MICROVIS MICROFINANCE BANK</td>\n<td>090113</td>\n</tr>\n<tr>\n<td>NIGERIA INTERBANK SETTLEMENT SYSTEM</td>\n<td>907</td>\n</tr>\n<tr>\n<td>Page MFBank</td>\n<td>560</td>\n</tr>\n<tr>\n<td>RAHAMA MICROFINANCE BANK</td>\n<td>090170</td>\n</tr>\n<tr>\n<td>Sterling Mobile</td>\n<td>326</td>\n</tr>\n<tr>\n<td>Visual ICT</td>\n<td>328</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"ab0f9716-9e3f-4d80-a5b3-585316fc8c05","name":"PAYOUT-NET_BANKING-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"10\",\n    \"mchId\": \"1416010331032883200\",\n    \"redirectUrl\":\"http://www.baidu.com\",\n    \"currency\": \"NGN\",\n    \"purpose\": \"by sdsd\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"Osikomaiya olatunbosun\",\n    \"firstName\": \"Osikomaiya\",\n    \"lastName\": \"olatunbosun\",\n    \"beneficiaryBankCode\": \"000003\",\n    \"beneficiaryAccountNumber\": \"8654867014\",\n    \"mchOrderId\": \"1779467696\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"8095659738\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"4a038a50-c5a1-43f0-a2b9-8b6b91b89c1a"}],"id":"fbf8af6f-9279-465d-afa7-237aae74af2e","_postman_id":"fbf8af6f-9279-465d-afa7-237aae74af2e","description":""},{"name":"TZS-Tanzania-API","item":[{"name":"PAYMENT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"b77f5fae-4e53-4c30-a86c-7ec76a09c045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1001\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"TZS\",\n    \"email\": \"932563921@qq.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"1009382743747237349\",\n    \"paymentType\": \"\",\n    \"paymentMethod\": \"\",\n    \"cardNumber\": \"254725850798\",\n    \"phone\": \"254725850798\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardNumber</td>\n<td>If the payment is received by bank card, fill in the bank card account number; if the payment is received by wallet, fill in the wallet account number</td>\n<td>String</td>\n<td>required</td>\n<td>0738222112</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment Type；  <br />CELLULANT ： （Support TIGO wallet and arrtel wallet  <br />）</td>\n<td>String</td>\n<td>optional</td>\n<td>CELLULANT</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td>CHECKOUT_URL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"86a3fdfa-ead6-45cc-971a-0db13894a490","name":"PAYMENT-CELLULANT-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1001\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"TZS\",\n    \"email\": \"932563921@qq.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"1009382743747237349\",\n    \"paymentType\": \"\",\n    \"paymentMethod\": \"\",\n    \"cardNumber\": \"254725850798\",\n    \"phone\": \"254725850798\",\n    \"productinfo\": \"your pro simple desc\",\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"b77f5fae-4e53-4c30-a86c-7ec76a09c045"},{"name":"PAYOUT-TIGO","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"525d41c6-86e8-4730-8dc6-173f396460ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"101\",\n    \"currency\": \"TZS\",\n    \"docNumber\": \"\",\n    \"paymentType\": \"TIGO\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"Olgamaria Joseph Nyoni\",\n    \"firstName\": \"Olgamaria\",\n    \"lastName\": \"Joseph Nyoni\",\n    \"beneficiaryAccountNumber\": \"0675679749\",\n    \"mchOrderId\": \"938373661738499232\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"0675679749\",\n    \"beneficiaryEmail\": \"olganyoni@gmail.com\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href>Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentType</td>\n<td>Payment Type;  <br />VODACOM  <br />TIGO  <br />AIRTEL</td>\n<td>String</td>\n<td>required</td>\n<td>TIGO</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Beneficiary first name</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Beneficiary last name</td>\n<td>String</td>\n<td>required</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"7b258771-77db-42b2-9b81-3a320d1aaa96","name":"PAYOUT-TIGO-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"101\",\n    \"mchId\": \"1416010331032883200\",\n    \"currency\": \"TZS\",\n    \"docNumber\": \"\",\n    \"paymentType\": \"TIGO\",\n    \"purpose\": \"SDASAFASF\",\n    \"dynamic\": \"0\",\n    \"beneficiaryName\": \"Olgamaria Joseph Nyoni\",\n    \"firstName\": \"Olgamaria\",\n    \"lastName\": \"Joseph Nyoni\",\n    \"beneficiaryAccountNumber\": \"0675679749\",\n    \"mchOrderId\": \"938373661738499232\",\n    \"model\": 0,\n    \"beneficiaryMobile\": \"0675679749\",\n    \"beneficiaryEmail\": \"olganyoni@gmail.com\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"525d41c6-86e8-4730-8dc6-173f396460ab"}],"id":"711f085d-0f3e-43a3-a5d4-3331d5e39509","_postman_id":"711f085d-0f3e-43a3-a5d4-3331d5e39509","description":""},{"name":"MYR-Malaysia-API","item":[{"name":"PAYMENT","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"b68776f4-5fef-4999-b153-587f19e464f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1000\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"MYR\",\n    \"email\": \"test772ys@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"827721391201931\",\n    \"phone\": \"08095659738\",\n    \"paymentType\":\"QRIS\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://afapi.vamospago.com/gateway/base/biz","description":"<ul>\n<li>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYMENT-API] </a> public template parameters)，follow is extra parameters</li>\n<li>API Request parameters（extra）</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentType</td>\n<td>Payment Type；  <br />NET_BANKING（bank transfer）  <br />QRIS（QRIS）</td>\n<td>String</td>\n<td><strong>Required</strong></td>\n<td>QRIS</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["afapi.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"93ff6bfc-69cd-4eca-aa90-3e1cd92ef0f4","name":"PAYMENT-QRIS-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1000\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"MYR\",\n    \"email\": \"test772ys@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"827721391201931\",\n    \"phone\": \"08095659738\",\n    \"paymentType\":\"QRIS\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"},{"id":"b8a7f39d-156b-49eb-a913-153a5c2c4792","name":"PAYMENT-NET_BANKING-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"pay","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"1000\",\n    \"callbackUrl\": \"https://b3b5-117-42-55-134.jp.ngrok.io/india-merchant/core/callback\",\n    \"currency\": \"MYR\",\n    \"email\": \"test772ys@gmail.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Smith\",\n    \"mchOrderId\": \"827721391201931\",\n    \"phone\": \"08095659738\",\n    \"paymentType\":\"NET_BANKING\",\n    \"productinfo\": \"your pro simple desc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202302031621412192101593088\",\n            \"checkoutUrl\": \"http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbccbddb3fb917a54eb3ef173032961326f6a8d4d656f7fbea0115c5da04e99d63668c8db9f52edf915799922324a0259b01\"\n        }\n    ]\n}"}],"_postman_id":"b68776f4-5fef-4999-b153-587f19e464f0"},{"name":"PAYOUT-NET_BANKING","event":[{"listen":"test","script":{"id":"256fd48c-aa5d-4212-b7c0-c818993d2765","exec":["","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});"],"type":"text/javascript"}}],"id":"f7026776-b4ab-42d4-8b4b-f16e237cf2b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"<p>Business method name</p>\n"},{"key":"signType","value":"SHA512","type":"text","description":"<p>Signature type</p>\n"},{"key":"serviceName","value":"api.pay","type":"text","description":"<p>API service name</p>\n"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"<p>Merchant ID; assigned by the OMS platform</p>\n"},{"key":"timestamp","value":"1631671670","type":"text","description":"<p>Timestamp（s）</p>\n"},{"key":"sign","value":"32554324534545432543","type":"text","description":"<p>Signature string</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"7326631382131\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"amount\": \"100.00\",\n    \"currency\":\"MYR\",\n    \"purpose\": \"pro test\",\n    \"paymentType\":\"NET_BANKING\",\n    \"beneficiaryName\":\"MADE IN DESIGN\",\n    \"beneficiaryEmail\":\"angengyu123@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"73287381231\",\n    \"beneficiaryBankCode\":\"RHBB\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz","description":"<ul>\n<li><p>API Header parameters, API Request parameters, API Response parameters (refer to <a href=\"https://\">Transaction-API [PAYOUT-API]</a> public template parameters)，follow is extra parameters</p>\n</li>\n<li><p>API Request parameters（extra）</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentType</td>\n<td>payment type:  <br />NET_BANKING</td>\n<td>String</td>\n<td>required</td>\n<td>NET_BANKING</td>\n</tr>\n<tr>\n<td>beneficiaryBankCode</td>\n<td>user bank code</td>\n<td>String</td>\n<td>required</td>\n<td>RHBB</td>\n</tr>\n</tbody>\n</table>\n</div><p>beneficiaryBankCode get code value</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Code</th>\n<th>Currency</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Affin Bank</td>\n<td>AFBB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>AGROBANK</td>\n<td>AGRO</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Alliance Bank Malaysia Berhad</td>\n<td>ABMB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Ambank</td>\n<td>AMBB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Islam Malaysia</td>\n<td>BIMB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Kerjasama Rakyat</td>\n<td>BKRM</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Muamalat</td>\n<td>BMMB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Of America</td>\n<td>BOFA</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Of China</td>\n<td>BOCM</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Bank Simpanan National</td>\n<td>BSNB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>CIMB Bank Berhad</td>\n<td>CIMB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Hong Leong Bank Berhad</td>\n<td>HLBB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>HSBC Bank</td>\n<td>HSBC</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Maybank Berhad</td>\n<td>MB2U</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>OCBC Bank</td>\n<td>OCBC</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Public Bank Berhad</td>\n<td>PUBB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>RHB Bank Berhad</td>\n<td>RHBB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Standard Chartered Bank</td>\n<td>STCB</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>Touch N Go</td>\n<td>TNGO</td>\n<td>MYR</td>\n</tr>\n<tr>\n<td>UNITED OVERSEAS BANK</td>\n<td>UOBB</td>\n<td>MYR</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["gateway","base","biz"],"host":["api.vamospago.com"],"query":[],"variable":[]}},"response":[{"id":"b5594661-61b9-4b17-a51c-ef20ccedd556","name":"PAYOUT-NET_BANKING-success","originalRequest":{"method":"POST","header":[{"key":"method","value":"payOut","type":"text","description":"Business method name"},{"key":"signType","value":"SHA512","type":"text","description":"Signature type"},{"key":"serviceName","value":"api.pay","type":"text","description":"API service name"},{"key":"mchId","value":"1416010331032883200","type":"text","description":"Merchant ID; assigned by the OMS platform"},{"key":"timestamp","value":"1631671670","type":"text","description":"Timestamp（s）"},{"key":"sign","value":"32554324534545432543","type":"text","description":"Signature string"}],"body":{"mode":"raw","raw":"{\n    \"mchOrderId\": \"7326631382131\",\n    \"callbackUrl\": \"http://127.0.0.1:8082/india-merchant/core/callback\",\n    \"amount\": \"100.00\",\n    \"currency\":\"MYR\",\n    \"purpose\": \"pro test\",\n    \"paymentType\":\"NET_BANKING\",\n    \"beneficiaryName\":\"MADE IN DESIGN\",\n    \"beneficiaryEmail\":\"angengyu123@gmail.com\",\n    \"beneficiaryMobile\": \"12345627776\",\n    \"beneficiaryAccountNumber\": \"73287381231\",\n    \"beneficiaryBankCode\":\"RHBB\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vamospago.com/gateway/base/biz"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"resultCode\": \"000000\",\n    \"errorCode\": \"000000\",\n    \"errorMsg\": null,\n    \"data\": [\n        {\n            \"orderId\": \"202304251650794224942313472\"\n        }\n    ]\n}"}],"_postman_id":"f7026776-b4ab-42d4-8b4b-f16e237cf2b8"}],"id":"4052b5df-43c5-4f20-a356-2f5d95af8d85","_postman_id":"4052b5df-43c5-4f20-a356-2f5d95af8d85","description":""}],"id":"a2217760-de5b-4c09-b1ee-a92cb35a51d0","description":"<h2 id=\"payment-interface--public-template-parameters-applicable-to-all-countries-currency\">Payment interface- public template parameters [applicable to all countries (currency)]</h2>\n<blockquote>\n<p>By default, firstname, lastname, email, and phone are allowed to be random, but formatted should be correctly </p>\n</blockquote>\n<ul>\n<li>API Header parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Business method name</td>\n<td>String</td>\n<td>required</td>\n<td>pay</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Request parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mchOrderId</td>\n<td>Merchant order number(Minimum 5 maximum 32)</td>\n<td>String</td>\n<td>required</td>\n<td>334343434</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Order amount</td>\n<td>String</td>\n<td>required</td>\n<td>10.00</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>Order Currency</td>\n<td>String</td>\n<td>required</td>\n<td>MXN</td>\n</tr>\n<tr>\n<td>productinfo</td>\n<td>Product  <br />description (Minimum 1 maximum 100)</td>\n<td>String</td>\n<td>required</td>\n<td>shopping</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>First name</td>\n<td>String</td>\n<td>required</td>\n<td>lee</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>Last name</td>\n<td>String</td>\n<td>required</td>\n<td>tomas</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email</td>\n<td>String</td>\n<td>required</td>\n<td><a href=\"https://\">tomas.lee@gmail.com</a></td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Phone(Minimum 6 maximum 20)</td>\n<td>String</td>\n<td>required</td>\n<td>+525535571415</td>\n</tr>\n<tr>\n<td>callbackUrl</td>\n<td>Webhook URL</td>\n<td>String</td>\n<td>optional</td>\n<td><a href=\"https://\">http://domain.com/webhook</a></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>Platform order number</td>\n<td>String</td>\n<td>required</td>\n<td>202302031621417091673616384</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>currency</td>\n<td>String</td>\n<td>required</td>\n<td>BRL</td>\n</tr>\n<tr>\n<td>type</td>\n<td>1: The checkoutUrl field displays the order status, and the payment link is sent by SMS;  <br />2:checkoutUrl field displays the payment link;</td>\n<td>String</td>\n<td>required</td>\n<td>1</td>\n</tr>\n<tr>\n<td>checkoutUrl</td>\n<td>Checkout URL</td>\n<td>String</td>\n<td>required</td>\n<td><a href=\"https://\">http://localhost:8081/gateway/base/pay/adedebfa1287f741369540e2798dbbcc9001ba3c949c3839ed5a1297adbff6a1e7434c44fcff0e65dff949f3407b7bcf2278950d0f1300d6f75b29532164023f</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"payout-interface---public-template-parameters-applicable-to-all-countries-currency\">Payout interface - public template parameters [applicable to all countries (currency)]</h2>\n<blockquote>\n<p>By default, beneficiaryName、beneficiaryEmail、beneficiaryMobile are allowed to be random, but formatted should be correctly </p>\n</blockquote>\n<ul>\n<li>API Header parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Business method name</td>\n<td>String</td>\n<td>required</td>\n<td>payOut</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Request parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mchOrderId</td>\n<td>Merchant order number</td>\n<td>String</td>\n<td>required</td>\n<td>pay</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>order amount</td>\n<td>String</td>\n<td>required</td>\n<td>10.00</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>Order Currency</td>\n<td>String</td>\n<td>required</td>\n<td>MXN</td>\n</tr>\n<tr>\n<td>purpose</td>\n<td>product description</td>\n<td>String</td>\n<td>required</td>\n<td>payout</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Payment method</td>\n<td>String</td>\n<td>optional</td>\n<td></td>\n</tr>\n<tr>\n<td>beneficiaryName</td>\n<td>Payee Name</td>\n<td>String</td>\n<td>required</td>\n<td>tomas lee</td>\n</tr>\n<tr>\n<td>beneficiaryEmail</td>\n<td>Payee email</td>\n<td>String</td>\n<td>required</td>\n<td><a href=\"https://\">tomas.lee@gmail.com</a></td>\n</tr>\n<tr>\n<td>beneficiaryMobile</td>\n<td>Payee phone</td>\n<td>String</td>\n<td>required</td>\n<td>12345627776</td>\n</tr>\n<tr>\n<td>beneficiaryAccountNumber</td>\n<td>Beneficiary Account</td>\n<td>String</td>\n<td>required</td>\n<td>012180015679304263</td>\n</tr>\n<tr>\n<td>callbackUrl</td>\n<td>Webhook URL</td>\n<td>String</td>\n<td>optional</td>\n<td><a href=\"https://\">http://domain.com/webhook</a></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>API Response parameter</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Code</strong></th>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>E.g.</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>Platform order number</td>\n<td>String</td>\n<td>required</td>\n<td>202302031621417091673616384</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"89a20a59-3fda-405e-876f-3baa7b1d590a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d01cd6d4-2ced-4a98-a12e-3bfa1136a70c","type":"text/javascript","exec":[""]}}],"_postman_id":"a2217760-de5b-4c09-b1ee-a92cb35a51d0"},{"name":"Account Settings","item":[],"id":"18b1b8a8-3032-4ec8-b6dd-97b5584fa7ee","description":"<p>New merchants must bind a 2FA verification code at first.<br />After logging in, select [cancel], find 【language]】at the top of the interface, and click to select the language.<br />Then, click 【Username and Avatar】in the upper right corner, click 【Personal Center]】 and find 【bind Google 2FA】<br />Then, click 【Change Password】to fill in the information, enter 2FA and click Save.</p>\n<p>Instructions:</p>\n<img src=\"https://content.pstmn.io/e72bb7f7-bcd8-4cc5-bceb-2407d8b63a45/aW1hZ2UucG5n\" alt=\"1\" width=\"468\" height=\"284\" />\n\n<img src=\"https://content.pstmn.io/ae74fa21-f207-4864-ad6b-f3da2a81111a/aW1hZ2UucG5n\" alt=\"2\" width=\"466\" height=\"263\" />\n\n<img src=\"https://content.pstmn.io/9ae42399-6494-4bd3-a567-e3573a4e59bc/aW1hZ2UucG5n\" alt=\"3\" width=\"464\" height=\"290\" />\n\n<img src=\"https://content.pstmn.io/eb52f181-668f-4cfd-af9e-383d8c972f4c/aW1hZ2UucG5n\" alt=\"4\" width=\"464\" height=\"281\" />\n\n<p>Note: Please protect your account 2FA and password to avoid losses. We are not responsible for any loss of funds due to 2FA or password leakage.</p>\n","_postman_id":"18b1b8a8-3032-4ec8-b6dd-97b5584fa7ee"},{"name":"Payment video","item":[],"id":"6feefc38-f6f3-4291-a441-963930d5f67c","description":"<p><a href=\"https://drive.google.com/file/d/1ZIQ54z0wpVAh9aPA7qJc3KYFX8N613Gv/view?usp=drive_link\">https://drive.google.com/file/d/1ZIQ54z0wpVAh9aPA7qJc3KYFX8N613Gv/view?usp=drive_link</a></p>\n<p>【Columbia】</p>\n<p><a href=\"https://drive.google.com/file/d/1Ulgz_lRtUhyXcmB6PXNVsJJaaM0k7XxT/view?usp=drive_link\">https://drive.google.com/file/d/1Ulgz_lRtUhyXcmB6PXNVsJJaaM0k7XxT/view?usp=drive_link</a></p>\n<p>【Kenya1】</p>\n<p><a href=\"https://drive.google.com/file/d/1CW8keWfWAKMaTcnsO8Wa2Sme4EsrHRLE/view?usp=drive_link\">https://drive.google.com/file/d/1CW8keWfWAKMaTcnsO8Wa2Sme4EsrHRLE/view?usp=drive_link</a></p>\n<p>【Kenya2】</p>\n<p><a href=\"https://drive.google.com/file/d/1CObIgHAi-cyVwuFO9o3P2UFrPeJ0qBk0/view?usp=drive_link\">https://drive.google.com/file/d/1CObIgHAi-cyVwuFO9o3P2UFrPeJ0qBk0/view?usp=drive_link</a></p>\n<p>【America1】</p>\n<p><a href=\"https://drive.google.com/file/d/1lt0esDSYELpdemTXoTFFz2Rro6ht46aE/view?usp=drive_link\">https://drive.google.com/file/d/1lt0esDSYELpdemTXoTFFz2Rro6ht46aE/view?usp=drive_link</a></p>\n<p>【America2】</p>\n<p><a href=\"https://drive.google.com/file/d/1ySqwheHDZaqqS4Vd7093k15OhZUXciZf/view?usp=drive_link\">https://drive.google.com/file/d/1ySqwheHDZaqqS4Vd7093k15OhZUXciZf/view?usp=drive_link</a>,</p>\n<p>【Peru】</p>\n<p><a href=\"https://drive.google.com/file/d/1MTJquqVLNoX8Co1dRMrtf8csQORBrvuh/view?usp=drive_link\">https://drive.google.com/file/d/1MTJquqVLNoX8Co1dRMrtf8csQORBrvuh/view?usp=drive_link</a></p>\n<p>【Mexico】</p>\n<p><a href=\"https://drive.google.com/file/d/15Cf301nNxGX8qhdIy2tP834FJLlHa8_r/view?usp=drive_link\">https://drive.google.com/file/d/15Cf301nNxGX8qhdIy2tP834FJLlHa8_r/view?usp=drive_link</a></p>\n<p>【Mexico（new）】</p>\n<p><a href=\"https://drive.google.com/file/d/1074CFPAo2-drh19moCoIjp-gAwssU96X/view?usp=drive_link\">https://drive.google.com/file/d/1074CFPAo2-drh19moCoIjp-gAwssU96X/view?usp=drive_link</a></p>\n<p>【Nigeria】</p>\n<p><a href=\"https://drive.google.com/file/d/130wVQVVEg29YAgE4CSMmW6RnWpi8b3yH/view?usp=drive_link\">https://drive.google.com/file/d/130wVQVVEg29YAgE4CSMmW6RnWpi8b3yH/view?usp=drive_link</a></p>\n<p>【Thailand】</p>\n<p><a href=\"https://drive.google.com/file/d/16Oti0C4ZU4FNbz_VQ5PTHplzxvphzhpO/view?usp=drive_link\">https://drive.google.com/file/d/16Oti0C4ZU4FNbz_VQ5PTHplzxvphzhpO/view?usp=drive_link</a></p>\n<p>【Tanzania】</p>\n<p><a href=\"https://drive.google.com/file/d/1s_g5KyaI_yPIdtUpcrlHpynb3ETd35wn/view?usp=drive_link\">https://drive.google.com/file/d/1s_g5KyaI_yPIdtUpcrlHpynb3ETd35wn/view?usp=drive_link</a></p>\n<p>【Indonesia】</p>\n<p><a href=\"https://drive.google.com/file/d/1MGxLR1cwTT79cyEAFsNt6Z6IG7DqgT-L/view?usp=drive_link\">https://drive.google.com/file/d/1MGxLR1cwTT79cyEAFsNt6Z6IG7DqgT-L/view?usp=drive_link</a>,</p>\n<p>【Brazil】</p>\n<p><a href=\"https://drive.google.com/file/d/1TbK4MXY9NGgcb5VcEgbhiEQEnlGHEpI_/view?usp=drive_link\">https://drive.google.com/file/d/1TbK4MXY9NGgcb5VcEgbhiEQEnlGHEpI_/view?usp=drive_link</a>,</p>\n<p>【Chile】</p>\n<p><a href=\"https://drive.google.com/file/d/1sWbMWoBp3d5_KP7CeKZGEEhCdlFuShIs/view?usp=drive_link\">https://drive.google.com/file/d/1sWbMWoBp3d5_KP7CeKZGEEhCdlFuShIs/view?usp=drive_link</a>,</p>\n<p>【Philippines1】</p>\n<p><a href=\"https://drive.google.com/file/d/15nAieGaZ9gUHjlrRv6VDmEtqVCA2qOaL/view?usp=drive_link\">https://drive.google.com/file/d/15nAieGaZ9gUHjlrRv6VDmEtqVCA2qOaL/view?usp=drive_link</a>,</p>\n<p>【Philippines2】</p>\n<p><a href=\"https://drive.google.com/file/d/1HKqYx716RgGu3mq3GvU4tAR2cpWoaZiU/view?usp=drive_link\">https://drive.google.com/file/d/1HKqYx716RgGu3mq3GvU4tAR2cpWoaZiU/view?usp=drive_link</a>,</p>\n<p>【Philippines3】</p>\n","_postman_id":"6feefc38-f6f3-4291-a441-963930d5f67c"}],"event":[{"listen":"prerequest","script":{"id":"1f38c6d2-8686-456f-800c-ccbc613c7461","type":"text/javascript","exec":["let body = request.data;","var time = request.headers[\"timestamp\"];","var mchId = request.headers[\"mchid\"];","var method=request.headers[\"method\"];","var serviceName = request.headers[\"servicename\"];","var signType = request.headers[\"signtype\"];","let key = pm.environment.get(\"mch_key\");","let headers = mchId+serviceName+method+time+signType+body+key;","console.log(headers);","let sign = CryptoJS.SHA512(headers).toString();","pm.request.headers.upsert({","    key: 'sign',","    value: sign","});",""]}},{"listen":"test","script":{"id":"5875a4f6-f092-478c-8b52-3c95040255c0","type":"text/javascript","exec":[""]}}]}