{"info":{"_postman_id":"1bf324d4-d124-4cad-a21e-26ecbf65ec6f","name":"DOCUMENTATION API MAYUNI","description":"<html><head></head><body><p>Dokumentasi API Mayuni Public</p>\n<p>API Mayuni adalah service yang digunakan untuk mengintegrasikan fitur yang ada di mayuni partner.</p>\n<p>Terdiri dari :</p>\n<ul>\n<li>Qris Dynamic</li>\n<li>Virtual Account</li>\n<li>Retail Payment</li>\n<li>Ewallet</li>\n</ul>\n<p>URL Production : <a href=\"https://api.mayuni.co.id\">https://api.mayuni.co.id</a></p>\n<p>URL Development : <a href=\"https://dev.mayuni.co.id\">https://dev.mayuni.co.id</a></p>\n<p><strong>Pre-Condition :</strong></p>\n<ul>\n<li>Register Account : Kontak tim marketing kami <a href=\"mailto:marketing@mayuni.co.id\">marketing@mayuni.co.id</a></li>\n<li>Setelah proses registrasi akan diberikan <strong>username</strong> dan <strong>password</strong> web report mayuni, dan <strong>credential</strong> integrasi api mayunmi</li>\n<li>Authentikasi Header :<ul>\n<li>token : Generated by System</li>\n</ul>\n</li>\n<li>Url Callback : Di isi pada payload request</li>\n</ul>\n<p>Note :</p>\n<p>Setiap akses ke service API Mayuni membutuhkan header <strong>token</strong>. Akan di kirimkan oleh tim mayuni beserta credential.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"9170561","collectionId":"1bf324d4-d124-4cad-a21e-26ecbf65ec6f","publishedId":"2s9Y5Tzk2b","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0a81bd"},"publishDate":"2023-08-22T04:14:07.000Z"},"item":[{"name":"Signature","item":[],"id":"a5de1e05-9a15-413f-8eeb-b1e5a881b56c","description":"<p><strong>Signature</strong><br />Mayuni will add a Signature in every transaction request. Signature is another option to verify the integrity of message/request. The logic of the Signature is concatenate each params then hashing using MD5. Hash value is using signature key, and different for each partner.</p>\n<p><em><strong>Important Note</strong></em><br />Signature Key will given to partner. Including the credentials API.</p>\n<p>Formula : path + method + merchant_ref + amount + expired_duration + signature_key</p>\n<p>List Path :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Transaction</strong></th>\n<th><strong>Path</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create Qris</td>\n<td>/transaction/create/qris</td>\n</tr>\n<tr>\n<td>Create Virtual Account</td>\n<td>/transaction/create/va</td>\n</tr>\n<tr>\n<td>Create Retail</td>\n<td>/transaction/create/retail</td>\n</tr>\n<tr>\n<td>Create Ewallet</td>\n<td>/transaction/create/ewallet</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Create Qris Transaction\nconst crypto = require('crypto');\nlet path = \"/transaction/create/qris\";\nlet method = \"POST\";\nlet merchant_ref = \"TRX83453080\";\nlet amount = 10000;\nlet expired_duration = 24;\nlet signature_key = \"klj343Lj43LKJadsf\";\nlet stringSign = \"/transaction/create/qrisPOSTTRX834530801000024klj343Lj43LKJadsf\";\nlet signature = crypto.createHash('md5').update(stringSign).digest('hex');\n// signature result 4b712941e037f8ba50589956dbdab1d8\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">$stringSign = \"/transaction/create/qrisPOSTTRX834530801000024klj343Lj43LKJadsf\";\n$signature = md5($stringSign); // Signature result: 4b712941e037f8ba50589956dbdab1d8\necho $signature;\n\n</code></pre>\n","_postman_id":"a5de1e05-9a15-413f-8eeb-b1e5a881b56c"},{"name":"Qris Dynamic","item":[{"name":"Request Qris Image","id":"b452dc7e-c474-4df1-85b1-26c8bdc817fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"qris\",\n    \"merchant_ref\": \"FINDIGQRIS148\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"2bb5cbaf02175136fcc9580416d6dc00\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/qris","description":"<p>Service for receiving funds from QRIS (QR Code)</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount transaction</td>\n</tr>\n<tr>\n<td>expired_duration</td>\n<td>Long duration of expired time in hours</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>The Response is string QR code.<br />Your app must be generate to image and show the QR Code image to the customer, then customer can pay using any application that Support QRIS Payment such as :</p>\n<ul>\n<li>DANA Ewallet</li>\n<li>OVO Emoney</li>\n<li>Gopay Emoney</li>\n<li>ShopeePay</li>\n<li>BCA Mobile Banking</li>\n<li>BRI Mobile Banking</li>\n<li>Permata Mobile Banking</li>\n<li>Living Bank Mandiri</li>\n<li>CIMB Mobile Banking etc.</li>\n</ul>\n<p>The Settlements need 2 days for receiving funds to your balance.</p>\n","urlObject":{"path":["api","v1","mayuni-partner","transaction","create","qris"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"d6098601-7d9f-476a-ad91-a9cd0ef7c4a7","name":"Request Qris Image","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"qris\",\n    \"merchant_ref\": \"FINDIGQRIS148\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"2bb5cbaf02175136fcc9580416d6dc00\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/qris"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"6566dbbd40385b85770a5f8f\",\n        \"payment_method\": \"qris\",\n        \"payment_code\": \"00020101021226670016COM.NOBUBANK.WWW01189360050300000888380214020200006903560303UME51440014ID.CO.QRIS.WWW0215ID20232463522640303UME5204549953033605405100005802ID5906FINDIG6004Pati610559173626601141129019203185205120855364958680613FINDIGQRIS1480703A010804POSP63046E71\",\n        \"merchant_ref\": \"FINDIGQRIS148\",\n        \"net_amount\": 9920,\n        \"total_amount\": 10000,\n        \"fee_admin\": 80,\n        \"customer\": {\n            \"name\": \"Agen Ahmadi\",\n            \"phone\": \"085536495868\",\n            \"email\": \"customer@gmail.com\"\n        },\n        \"expired_at\": \"30 November 2023 13:35:42\"\n    }\n}"}],"_postman_id":"b452dc7e-c474-4df1-85b1-26c8bdc817fb"},{"name":"Callback  Qris Received","event":[{"listen":"prerequest","script":{"id":"5449021a-fe81-4be8-b061-26fb57ac2c0e","exec":[""],"type":"text/javascript"}}],"id":"65aa3002-da65-4331-bfd4-15da1ff5c4a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"reference\": \"6566dbbd40385b85770a5f8f\",\n  \"merchant_ref\": \"FINDIGQRIS148\",\n  \"payment_code\": \"00020101021226670016COM.NOBUBANK.WWW01189360050300000888380214020200006903560303UME51440014ID.CO.QRIS.WWW0215ID20232463522640303UME5204549953033605405100005802ID5906FINDIG6004Pati610559173626601141129019203185205120855364958680613FINDIGQRIS1480703A010804POSP63046E71\",\n  \"payment_method\": \"qris\",\n  \"payment_method_code\": \"qris\",\n  \"amount_received\": 9920,\n  \"fee\": 80,\n  \"total_amount\": 10000,\n  \"status\": 1,\n  \"paid_at\": \"30 November 2023 13:35:42\",\n  \"note\": \"Transaksi Sukses\",\n  \"signature\": \"d9d9447812915438c27b15dddfefe426\"\n}","options":{"raw":{"language":"json"}}},"url":"URL CALLBACK","description":"<p>Service for Final Status of QRIS Transaction.<br />Please use parameter status for handle status QRIS Transaction.<br />List of value for <strong>status</strong> parameter :</p>\n<ul>\n<li>0 = Pending Transaction</li>\n<li>1 = Success Transaction</li>\n<li>2 = Failed Transactiom</li>\n</ul>\n<p><strong>Notes:</strong><br />IP Address Mayuni : 103.80.81.28<br />For security reasons, please whitelist the Mayuni IP Address.</p>\n<p>Method :<br /><em>POST</em></p>\n<p><strong>Signature</strong> :</p>\n<p>Formula : merchant_ref + total_amount + payment_code + signature_key</p>\n<p>URL : Generated By Partner. Must be informed to our IT Engineer. URL Callback is same as URL Callback for qris.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>Payment Reff</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>String</td>\n<td>Merchant Payment Reff</td>\n</tr>\n<tr>\n<td>payment_code</td>\n<td>String</td>\n<td>String QR code Transaction, getting from Response Request QRIS</td>\n</tr>\n<tr>\n<td>payment_method</td>\n<td>String</td>\n<td>Payment Method</td>\n</tr>\n<tr>\n<td>payment_method_code</td>\n<td>String</td>\n<td>Payment Methode Code</td>\n</tr>\n<tr>\n<td>amount_received</td>\n<td>Number</td>\n<td>Total Amount Received</td>\n</tr>\n<tr>\n<td>fee</td>\n<td>Number</td>\n<td>Admin Fee</td>\n</tr>\n<tr>\n<td>total_amount</td>\n<td>String</td>\n<td>Total Amount Rquested</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>Status Transaction</td>\n</tr>\n<tr>\n<td>paid_at</td>\n<td>Date</td>\n<td>Payment Date</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>Note Transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>MD5()</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response yang diharapkan (Expected Response from Partner) :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Ok\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>200 for acknowledge our callback is received</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>\"Ok\" for acknowledge our callback is received</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["URL CALLBACK"],"query":[],"variable":[]}},"response":[{"id":"be8d9f68-4511-4b03-9767-9b5e05e788d9","name":"Callback  Qris Received","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"reference\": \"6566dbbd40385b85770a5f8f\",\n  \"merchant_ref\": \"FINDIGQRIS148\",\n  \"payment_code\": \"00020101021226670016COM.NOBUBANK.WWW01189360050300000888380214020200006903560303UME51440014ID.CO.QRIS.WWW0215ID20232463522640303UME5204549953033605405100005802ID5906FINDIG6004Pati610559173626601141129019203185205120855364958680613FINDIGQRIS1480703A010804POSP63046E71\",\n  \"payment_method\": \"qris\",\n  \"payment_method_code\": \"qris\",\n  \"amount_received\": 9920,\n  \"fee\": 80,\n  \"total_amount\": 10000,\n  \"status\": 1,\n  \"paid_at\": \"30 November 2023 13:35:42\",\n  \"note\": \"Transaksi Sukses\",\n  \"signature\": \"d9d9447812915438c27b15dddfefe426\"\n}","options":{"raw":{"language":"json"}}},"url":"URL CALLBACK"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"65aa3002-da65-4331-bfd4-15da1ff5c4a5"}],"id":"25a1d574-c9b5-4a4c-a622-8512edcbcf9f","_postman_id":"25a1d574-c9b5-4a4c-a622-8512edcbcf9f","description":""},{"name":"Bank Virtual Account","item":[{"name":"Request Virtual Account","id":"1e9fcd51-91bf-450d-af30-3ed2705cfff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"briva\",\n    \"merchant_ref\": \"FINDIGVA140\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"68af2c43c31181737c3700b0d78cd031\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va","description":"<p>Service for receiving funds from Virtual Account Bank</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount transaction</td>\n</tr>\n<tr>\n<td>expired_duration</td>\n<td>Long duration of expired time in hours</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>Bank VA List</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Method</strong></th>\n<th><strong>Status</strong></th>\n<th><strong>Settlement</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank BCA</td>\n<td>bcava</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank BRI</td>\n<td>briva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank BNI</td>\n<td>bniva</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank Mandiri</td>\n<td>mandiriva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank Permata</td>\n<td>permatava</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Noted For Virtual Account Bank Mandiri :</strong><br />Pay From Bank Mandiri Account :</p>\n<ul>\n<li>Choose Multipayment</li>\n<li>Choose i-Pay (70017)</li>\n<li>Input No VA dan Amount</li>\n</ul>\n<p>Pay From Others Bank:</p>\n<ul>\n<li>Choose Transfer Bank</li>\n<li>Choose Bank Mandiri (008)</li>\n<li>Please Input 88017 + Virtual Account<br />  Number. Ex 8801714501000009</li>\n<li>Do Transfer</li>\n</ul>\n","urlObject":{"path":["api","v1","mayuni-partner","transaction","create","va"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"0be0b978-3ddd-492b-968e-6b817fd5fdb2","name":"Request Virtual Account","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"briva\",\n    \"merchant_ref\": \"FINDIGVA140\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"68af2c43c31181737c3700b0d78cd031\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"6566e72b448c4f8c05426230\",\n        \"payment_method\": \"briva\",\n        \"payment_code\": \"1234010000008211\",\n        \"merchant_ref\": \"FINDIGVA140\",\n        \"net_amount\": 7000,\n        \"total_amount\": 10000,\n        \"fee_admin\": 3000,\n        \"customer\": {\n            \"name\": \"Agen Ahmadi\",\n            \"phone\": \"085536495868\",\n            \"email\": \"customer@gmail.com\"\n        },\n        \"expired_at\": \"30 November 2023 14:24:27\",\n        \"keterangan\": \"Virtual Account Successfully Created\"\n    }\n}"}],"_postman_id":"1e9fcd51-91bf-450d-af30-3ed2705cfff3"},{"name":"Request Virtual Account Static","id":"d8ef21ea-3b75-4d48-ad55-0d57fe12f9b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"static-briva\",\n    \"customer_id\": \"085536495869\",\n    \"customer_name\": \"Ahmadi\",\n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"testing@gmail.com\",\n    \"signature\": \"2a36855994f8053f742426900940f6c9\",\n    \"callback_url\":\"http://103.150.84.108:17078/api/v1/invoice-payment/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va-static/add","description":"<p>Service for receiving funds from Virtual Account Bank</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td>Customer ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer Name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>Bank VA List</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Method</strong></th>\n<th><strong>Status</strong></th>\n<th><strong>Settlement</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank BCA</td>\n<td>static-bcava</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank BRI</td>\n<td>static-briva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank BNI</td>\n<td>static-bniva</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank Mandiri</td>\n<td>static-mandiriva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank Permata</td>\n<td>static-permatava</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Noted For Virtual Account Bank Mandiri :</strong><br />Pay From Bank Mandiri Account :</p>\n<ul>\n<li><p>Choose Multipayment</p>\n</li>\n<li><p>Choose i-Pay (70017)</p>\n</li>\n<li><p>Input No VA dan Amount</p>\n</li>\n</ul>\n<p>Pay From Others Bank:</p>\n<ul>\n<li><p>Choose Transfer Bank</p>\n</li>\n<li><p>Choose Bank Mandiri (008)</p>\n</li>\n<li><p>Please Input 88017 + Virtual Account<br />  Number. Ex 8801714501000009</p>\n</li>\n<li><p>Do Transfer</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","mayuni-partner","transaction","create","va-static","add"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"b00d8cfa-1cfe-4fda-ac6a-2eeab5042ba1","name":"Request Virtual Account Static","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"static-briva\",\n    \"customer_id\": \"085536495869\",\n    \"customer_name\": \"Ahmadi\",\n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"testing@gmail.com\",\n    \"signature\": \"2a36855994f8053f742426900940f6c9\",\n    \"callback_url\":\"http://103.150.84.108:17078/api/v1/invoice-payment/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va-static/add"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"payment_method\": \"static-briva\",\n        \"virtual_account\": \"1456005536495869\",\n        \"customer_id\": \"085536495869\",\n        \"customer_name\": \"Ahmadi\",\n        \"customer_phone\": \"085536495868\",\n        \"customer_email\": \"testing@gmail.com\",\n        \"bank_code\": \"002\",\n        \"bank_name\": \"BANK BRI OPEN VA\"\n    }\n}"}],"_postman_id":"d8ef21ea-3b75-4d48-ad55-0d57fe12f9b0"},{"name":"Request Virtual Account Recurring","id":"211a2dfd-90b5-4775-9bc0-5fbdc5863e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"static-briva\",\n    \"merchant_ref\": \"FINDIGVA151\",\n    \"amount\": 10000,\n    \"expired_duration\": 1,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"ahmadi330040@gmail.com\",\n    \"signature\": \"2fa4ba10c2425d751dce41e3ec140727\",\n    \"callback_url\":\"http://103.150.84.108:17078/api/v1/invoice-payment/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va-recurring","description":"<p>Service for receiving funds from Virtual Account Bank</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount transaction</td>\n</tr>\n<tr>\n<td>expired_duration</td>\n<td>Long duration of expired time in hours</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>Bank VA List</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Method</strong></th>\n<th><strong>Status</strong></th>\n<th><strong>Settlement</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank BCA</td>\n<td>recurring-bcava</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank BRI</td>\n<td>recurring-briva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank BNI</td>\n<td>recurring-bniva</td>\n<td>OPEN</td>\n<td>H+3</td>\n</tr>\n<tr>\n<td>Bank Mandiri</td>\n<td>recurring-mandiriva</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Bank Permata</td>\n<td>recurring-permatava</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Noted For Virtual Account Bank Mandiri :</strong><br />Pay From Bank Mandiri Account :</p>\n<ul>\n<li><p>Choose Multipayment</p>\n</li>\n<li><p>Choose i-Pay (70017)</p>\n</li>\n<li><p>Input No VA dan Amount</p>\n</li>\n</ul>\n<p>Pay From Others Bank:</p>\n<ul>\n<li><p>Choose Transfer Bank</p>\n</li>\n<li><p>Choose Bank Mandiri (008)</p>\n</li>\n<li><p>Please Input 88017 + Virtual Account<br />  Number. Ex 8801714501000009</p>\n</li>\n<li><p>Do Transfer</p>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","mayuni-partner","transaction","create","va-recurring"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"5ae1711b-774e-4dc1-bc6c-b5c8f2f0ff87","name":"Request Virtual Account Static","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"static-briva\",\n    \"merchant_ref\": \"FINDIGVA151\",\n    \"amount\": 10000,\n    \"expired_duration\": 1,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"ahmadi330040@gmail.com\",\n    \"signature\": \"2fa4ba10c2425d751dce41e3ec140727\",\n    \"callback_url\":\"http://103.150.84.108:17078/api/v1/invoice-payment/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/va"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"69255d2d06318f0d74dd450e\",\n        \"payment_method\": \"static-briva\",\n        \"payment_code\": \"1456142400084244\",\n        \"merchant_ref\": \"FINDIGVA151\",\n        \"net_amount\": 7000,\n        \"total_amount\": 10000,\n        \"fee_admin\": 3000,\n        \"customer\": {\n            \"name\": \"Agen Ahmadi\",\n            \"phone\": \"085536495868\",\n            \"email\": \"ahmadi330040@gmail.com\"\n        },\n        \"expired_at\": 1764059965,\n        \"expired_at_convert\": \"25 November 2025 15:39:25\",\n        \"keterangan\": \"Virtual Account Successfully Created\"\n    }\n}"}],"_postman_id":"211a2dfd-90b5-4775-9bc0-5fbdc5863e3b"},{"name":"Callback Virtual Account Received","id":"449d482d-3743-47dd-a28a-4718e96f1c6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"reference\": \"6566e5f3fe9df1295f327320\",\n  \"merchant_ref\": \"FINDIGVA140\",\n  \"payment_code\": \"1234010000008211\",\n  \"payment_method\": \"briva\",\n  \"payment_method_code\": \"briva\",\n  \"amount_received\": 7000,\n  \"fee\": 3000,\n  \"total_amount\": 10000,\n  \"status\": 1,\n  \"paid_at\": \"29 November 2023 14:20:32\",\n  \"note\": \"Transaksi Sukses\",\n  \"signature\": \"947d9281ddd0ec187f60276c7cf87740\"\n}","options":{"raw":{"language":"json"}}},"url":"URL CALLBACK","description":"<p>Service for Final Status of Virtual Account Transaction.<br />Please use parameter status for handle status VA Transaction.<br />List of value for <strong>status</strong> parameter :</p>\n<ul>\n<li>0 = Pending Transaction</li>\n<li>1 = Successfull Transaction</li>\n<li>2 = Failed Transaction</li>\n</ul>\n<p><strong>Notes:</strong><br />IP Address Mayuni : 103.80.81.28<br />For security reasons, please whitelist the Mayuni IP Address.</p>\n<p>Method :<br /><em>POST</em></p>\n<p><strong>Signature</strong> :</p>\n<p>Formula : merchant_ref + total_amount + payment_code + signature_key</p>\n<p>URL : Generated By Partner. Must be informed to our IT Engineer. URL Callback is same as URL Callback for qris.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>Payment Reff</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>String</td>\n<td>Merchant Payment Reff</td>\n</tr>\n<tr>\n<td>payment_code</td>\n<td>String</td>\n<td>String QR code Transaction, getting from Response Request QRIS</td>\n</tr>\n<tr>\n<td>payment_method</td>\n<td>String</td>\n<td>Payment Method</td>\n</tr>\n<tr>\n<td>payment_method_code</td>\n<td>String</td>\n<td>Payment Methode Code</td>\n</tr>\n<tr>\n<td>amount_received</td>\n<td>Number</td>\n<td>Total Amount Received</td>\n</tr>\n<tr>\n<td>fee</td>\n<td>Number</td>\n<td>Admin Fee</td>\n</tr>\n<tr>\n<td>total_amount</td>\n<td>String</td>\n<td>Total Amount Rquested</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>Status Transaction</td>\n</tr>\n<tr>\n<td>paid_at</td>\n<td>Date</td>\n<td>Payment Date</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>Note Transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>MD5()</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response yang diharapkan (Expected Response from Partner) :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Ok\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>200 for acknowledge our callback is received</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>\"Ok\" for acknowledge our callback is received</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["URL CALLBACK"],"query":[],"variable":[]}},"response":[],"_postman_id":"449d482d-3743-47dd-a28a-4718e96f1c6b"}],"id":"6efd43c1-46f1-490a-87ee-36bee3602da7","_postman_id":"6efd43c1-46f1-490a-87ee-36bee3602da7","description":""},{"name":"Retail Payment","item":[{"name":"Request Retail Payment","id":"8b97f068-3fa4-4744-8f49-0aa9c45b7e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"alfamart\",\n    \"merchant_ref\": \"FINDIGRETAIL150\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"d86320301d1f202c4c41c3a43daa0adf\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/transaction/create/retail","description":"<p>Service for receiving funds from Virtual Retail Payment</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount transaction</td>\n</tr>\n<tr>\n<td>expired_duration</td>\n<td>Long duration of expired time in hours</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>Retail Code List</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Method</strong></th>\n<th><strong>Status</strong></th>\n<th><strong>Settlement</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Alfamart</td>\n<td>alfamart</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Indomaret</td>\n<td>indomaret</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n</tbody>\n</table>\n</div><p>The List of Alfamart Counter :</p>\n<ul>\n<li>Dan Dan Mart</li>\n<li>Alfamart</li>\n<li>Alfamidi</li>\n<li>Alfaexpress</li>\n<li>Lawson</li>\n</ul>\n<p>The List of Indomaret Counter :</p>\n<ul>\n<li>Indomaret</li>\n</ul>\n<p>Note :<br />Please contact us for getting how to pay information. When user pay say LINKITA payment to cashier</p>\n","urlObject":{"path":["api","v1","transaction","create","retail"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"a3bd4d85-be20-4d3c-a5a6-3870d47ae1cc","name":"Request Retail Payment","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"alfamart\",\n    \"merchant_ref\": \"FINDIGRETAIL150\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"d86320301d1f202c4c41c3a43daa0adf\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/transaction/create/retail"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"6566ea0c8dac5f9c811e280c\",\n        \"payment_method\": \"alfamart\",\n        \"payment_code\": \"1002000003009\",\n        \"merchant_ref\": \"FINDIGRETAIL150\",\n        \"net_amount\": 7500,\n        \"total_amount\": 10000,\n        \"fee_admin\": 2500,\n        \"customer\": {\n            \"name\": \"Agen Ahmadi\",\n            \"phone\": \"085536495868\",\n            \"email\": \"customer@gmail.com\"\n        },\n        \"expired_at\": \"30 November 2023 07:36:44\",\n        \"keterangan\": \"Silahkan Lakukan Pembayaran ke Alfamart dengan Menyebutkan Pembayaran Plasamall dan Kode Pembayaran 1002000003009 dengan Nominal 10000\"\n    }\n}"}],"_postman_id":"8b97f068-3fa4-4744-8f49-0aa9c45b7e1f"},{"name":"Callback Retail Received","id":"a620a110-adb7-4cf0-a411-306a6cda9397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"reference\": \"6566e5f3fe9df1295f327320\",\n  \"merchant_ref\": \"FINDIGRETAIL150\",\n  \"payment_code\": \"1234010000008211\",\n  \"payment_method\": \"alfamart\",\n  \"payment_method_code\": \"alramart\",\n  \"amount_received\": 7000,\n  \"fee\": 3000,\n  \"total_amount\": 10000,\n  \"status\": 1,\n  \"paid_at\": \"29 November 2023 14:20:32\",\n  \"note\": \"Transaksi Sukses\",\n  \"signature\": \"31350be5983d151b3c7429c10cd7eead\"\n}","options":{"raw":{"language":"json"}}},"url":"URL CALLBACK","description":"<p>Service for Final Status of Retail Payment Transaction.<br />Please use parameter status for handle status Retail Payment Transaction.<br />List of value for <strong>status</strong> parameter :</p>\n<ul>\n<li>0 = Pending Transaction</li>\n<li>1 = Successfull Transaction</li>\n<li>2 = Failed Transaction</li>\n</ul>\n<p><strong>Notes:</strong><br />IP Address Mayuni : 103.80.81.28<br />For security reasons, please whitelist the Mayuni IP Address.</p>\n<p>Method :<br /><em>POST</em></p>\n<p><strong>Signature</strong> :</p>\n<p>Formula : merchant_ref + total_amount + payment_code + signature_key</p>\n<p>URL : Generated By Partner. Must be informed to our IT Engineer. URL Callback is same as URL Callback for qris.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>Payment Reff</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>String</td>\n<td>Merchant Payment Reff</td>\n</tr>\n<tr>\n<td>payment_code</td>\n<td>String</td>\n<td>String QR code Transaction, getting from Response Request QRIS</td>\n</tr>\n<tr>\n<td>payment_method</td>\n<td>String</td>\n<td>Payment Method</td>\n</tr>\n<tr>\n<td>payment_method_code</td>\n<td>String</td>\n<td>Payment Methode Code</td>\n</tr>\n<tr>\n<td>amount_received</td>\n<td>Number</td>\n<td>Total Amount Received</td>\n</tr>\n<tr>\n<td>fee</td>\n<td>Number</td>\n<td>Admin Fee</td>\n</tr>\n<tr>\n<td>total_amount</td>\n<td>String</td>\n<td>Total Amount Rquested</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>Status Transaction</td>\n</tr>\n<tr>\n<td>paid_at</td>\n<td>Date</td>\n<td>Payment Date</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>Note Transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>MD5()</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response yang diharapkan (Expected Response from Partner) :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Ok\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>200 for acknowledge our callback is received</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>\"Ok\" for acknowledge our callback is received</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["URL CALLBACK"],"query":[],"variable":[]}},"response":[],"_postman_id":"a620a110-adb7-4cf0-a411-306a6cda9397"}],"id":"5684a719-8c8a-4a3e-ab09-016bbf5a3730","_postman_id":"5684a719-8c8a-4a3e-ab09-016bbf5a3730","description":""},{"name":"Ewallet","item":[{"name":"Request Ewallet","id":"954edac5-8bb0-4c96-81ec-f55ff1f92959","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"dana\",\n    \"merchant_ref\": \"FINDIGEWALLET151\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"2ab749c9ceb14a1e0422047ec12045e9\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/ewallet","description":"<p>Service for receiving funds from Virtual Retail Payment</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>method</td>\n<td>Payment code method</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Amount transaction</td>\n</tr>\n<tr>\n<td>expired_duration</td>\n<td>Long duration of expired time in hours</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td>Customer Phone</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>Customer Email</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>Refers to document signature <a href=\"https://documenter.getpostman.com/view/9170561/2s9Y5Tzk2b#a5de1e05-9a15-413f-8eeb-b1e5a881b56c\">here</a></td>\n</tr>\n<tr>\n<td>callback_url</td>\n<td>Url callback from partner</td>\n</tr>\n</tbody>\n</table>\n</div><p>Ewallet Code List</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Method</strong></th>\n<th><strong>Status</strong></th>\n<th><strong>Settlement</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dana Ewallet</td>\n<td>dana</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>LinkAja Ewallet</td>\n<td>linkaja</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>Ovo Ewallet</td>\n<td>ovo</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n<tr>\n<td>ShopeePay Ewallet</td>\n<td>shopeepay</td>\n<td>OPEN</td>\n<td>H+2</td>\n</tr>\n</tbody>\n</table>\n</div><p>The Response is Acnowledge Order to Pay.<br />Payment will be shown to Customer Phone (Run as Popup Payment)</p>\n<p>Flow Payment :</p>\n<ul>\n<li>Partner Hit API Create Payment</li>\n<li>Mayuni will forwarded the payment order to Ewallet Gateway.</li>\n<li>Mayuni will response url payment page</li>\n<li>Partner must redirect to url payment page.</li>\n<li>Customer do the payment.</li>\n<li>Customer will back to URL Final Result.</li>\n<li>If Successfull, Mayuni will hit to partner Callback URL.</li>\n</ul>\n","urlObject":{"path":["api","v1","mayuni-partner","transaction","create","ewallet"],"host":["https://api.mayuni.co.id"],"query":[],"variable":[]}},"response":[{"id":"c422d398-0d07-49df-bf57-4e9fa443b57d","name":"Request Ewallet","originalRequest":{"method":"POST","header":[{"key":"token","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"dana\",\n    \"merchant_ref\": \"FINDIGVA140\",\n    \"amount\": 10000,\n    \"expired_duration\": 24,\n    \"customer_name\": \"Agen Ahmadi\", \n    \"customer_phone\": \"085536495868\",\n    \"customer_email\": \"customer@gmail.com\",\n    \"signature\": \"68af2c43c31181737c3700b0d78cd031\",\n    \"callback_url\":\"https://merchant.co.id/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/create/ewallet"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"id\": \"6566edc2c83ce8a0e09c982a\",\n        \"merchant_ref\": \"FINDIGEWALLET151\",\n        \"net_amount\": 9820,\n        \"total_amount\": 10000,\n        \"fee_admin\": 180,\n        \"customer_name\": \"Agen Ahmadi\",\n        \"expired_at\": \"30 November 2023 07:52:37\",\n        \"actions\": {\n            \"desktop_web_checkout_url\": \"https://ewallet-mock-connector.xendit.co/v1/ewallet_connector/checkouts?token=cljerh1ha0o41rndo7b0\",\n            \"mobile_web_checkout_url\": \"https://ewallet-mock-connector.xendit.co/v1/ewallet_connector/checkouts?token=cljerh1ha0o41rndo7b0\",\n            \"mobile_deeplink_checkout_url\": null,\n            \"qr_checkout_string\": null\n        }\n    }\n}"}],"_postman_id":"954edac5-8bb0-4c96-81ec-f55ff1f92959"},{"name":"Callback Ewallet Received","id":"2677450d-8340-473f-9ebf-3ec01d89d517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"reference\": \"6567f911fe9df12bc2327664\",\n  \"merchant_ref\": \"FDN4192639309EWALLETdana\",\n  \"payment_code\": \"ewc_83563d27-0f93-4d5f-b604-b82c1bf12b39\",\n  \"payment_method\": \"DANA - Ewallet ( H+2 )\",\n  \"payment_method_code\": \"dana\",\n  \"amount_received\": 20033,\n  \"fee\": 367,\n  \"total_amount\": 20400,\n  \"status\": 1,\n  \"paid_at\": \"30 November 2023 09:54:09\",\n  \"note\": \"Transaksi Sukses\",\n  \"signature\": \"f3a1d4656256a45ab6fba493a918adbe\"\n}","options":{"raw":{"language":"json"}}},"url":"URL CALLBACK","description":"<p>Service for Final Status of Ewallet Transaction.<br />Please use parameter status for handle status Ewallet Transaction.<br />List of value for <strong>status</strong> parameter :</p>\n<ul>\n<li>0 = Pending Transaction</li>\n<li>1 = Successfull Transaction</li>\n<li>2 = Failed Transaction</li>\n</ul>\n<p><strong>Notes:</strong><br />IP Address Mayuni : 103.80.81.28<br />For security reasons, please whitelist the Mayuni IP Address.</p>\n<p>Method :<br /><em>POST</em></p>\n<p><strong>Signature</strong> :</p>\n<p>Formula : merchant_ref + total_amount + payment_code + signature_key</p>\n<p>URL : Generated By Partner. Must be informed to our IT Engineer. URL Callback is same as URL Callback for qris.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>Payment Reff</td>\n</tr>\n<tr>\n<td>merchant_ref</td>\n<td>String</td>\n<td>Merchant Payment Reff</td>\n</tr>\n<tr>\n<td>payment_code</td>\n<td>String</td>\n<td>String QR code Transaction, getting from Response Request QRIS</td>\n</tr>\n<tr>\n<td>payment_method</td>\n<td>String</td>\n<td>Payment Method</td>\n</tr>\n<tr>\n<td>payment_method_code</td>\n<td>String</td>\n<td>Payment Methode Code</td>\n</tr>\n<tr>\n<td>amount_received</td>\n<td>Number</td>\n<td>Total Amount Received</td>\n</tr>\n<tr>\n<td>fee</td>\n<td>Number</td>\n<td>Admin Fee</td>\n</tr>\n<tr>\n<td>total_amount</td>\n<td>String</td>\n<td>Total Amount Rquested</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>Status Transaction</td>\n</tr>\n<tr>\n<td>paid_at</td>\n<td>Date</td>\n<td>Payment Date</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>Note Transaction</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>String</td>\n<td>MD5()</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response yang diharapkan (Expected Response from Partner) :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Ok\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>nama</strong></th>\n<th><strong>variabel</strong></th>\n<th><strong>keterangan</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>Number</td>\n<td>200 for acknowledge our callback is received</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>\"Ok\" for acknowledge our callback is received</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["URL CALLBACK"],"query":[],"variable":[]}},"response":[],"_postman_id":"2677450d-8340-473f-9ebf-3ec01d89d517"}],"id":"9432bec6-f64d-41ac-8b5c-b2629bb103e3","_postman_id":"9432bec6-f64d-41ac-8b5c-b2629bb103e3","description":""},{"name":"Report","item":[{"name":"Check Status Transaction","id":"eab42bb8-7f1e-47ca-92f5-1e0d6e281f5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"token","value":"{{token}}","type":"text"}],"url":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/check-status?merchant_ref=FDN7435905237","urlObject":{"path":["api","v1","mayuni-partner","transaction","check-status"],"host":["https://api.mayuni.co.id"],"query":[{"key":"merchant_ref","value":"FDN7435905237"}],"variable":[]}},"response":[{"id":"e3e1667f-19b8-47bd-a167-050876612d87","name":"Check Status Transaction","originalRequest":{"method":"GET","header":[{"key":"token","value":"{{token}}","type":"text"}],"url":{"raw":"https://api.mayuni.co.id/api/v1/mayuni-partner/transaction/check-status?merchant_ref=FDN7435905237","host":["https://api.mayuni.co.id"],"path":["api","v1","mayuni-partner","transaction","check-status"],"query":[{"key":"merchant_ref","value":"FDN7435905237"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"data\": {\n        \"reference\": \"66aac4bb300734c9190a9b04\",\n        \"merchant_ref\": \"FDN7435905237\",\n        \"payment_code\": \"1033942400047579\",\n        \"payment_method_code\": \"briva\",\n        \"total_amount\": 103000,\n        \"fee_admin\": 2500,\n        \"net_amount\": 100500,\n        \"status\": \"success\",\n        \"customer\": {\n            \"name\": \"Payuni Mobile\",\n            \"phone\": \"085740906168\",\n            \"email\": \"085740906168@cust.findig.id\"\n        },\n        \"keterangan\": \"SUCCESS\"\n    }\n}"}],"_postman_id":"eab42bb8-7f1e-47ca-92f5-1e0d6e281f5e"}],"id":"80b37a70-d7e9-42fa-9db8-a26eb34bd467","description":"<p>API yang digunakan untuk pengecekan transaksi pembayaran setelah pembayaran. Parameter yang dikirim adalah Merchant Ref.</p>\n<p>Penjelasan Status :</p>\n<p>- pending : artinya transaksi ini masih dalam proses pembayaran atau belum ada pembayaran.<br />- success : artinya transaksi pembelian ini berhasil.<br />- failed : artinya transaksi pembelian ini gagal.</p>\n<p>Hints :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Desc</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>merchant_ref</td>\n<td>Trnasaction ID from partner Must be unique</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"80b37a70-d7e9-42fa-9db8-a26eb34bd467"}],"event":[{"listen":"prerequest","script":{"id":"a838210e-d2e0-446b-84c3-fda983c8bfff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a495e78d-f77a-45ab-b48f-74e2bbfa5430","type":"text/javascript","exec":[""]}}],"variable":[{"key":"host","value":"https://api.mayuni.co.id","type":"string"},{"key":"token","value":"{{token}}","type":"string"},{"key":"callback-merchant","value":"https://merchant.co.id/callback","type":"string"},{"key":"email-customer","value":"customer@gmail.com","type":"string"}]}