{"info":{"_postman_id":"1b71fea1-ca3f-4a99-aeab-efc4703afffd","name":"G8-Pay Reseller API v1","description":"<html><head></head><body><p>Dokumentasi API untuk reseller G8-Pay <code>v1</code></p>\n<p>List Domain G8-Pay</p>\n<ul>\n<li><p>Development : <a href=\"https://dev.g8-pay.com/v1\">https://dev.g8-pay.com/v1</a></p>\n</li>\n<li><p>Production : <a href=\"https://api.g8-pay.com/v1\">https://api.g8-pay.com/v1</a></p>\n</li>\n</ul>\n<p>Hubungi Account Manager / Sales Manager kami untuk mebuka akun reseller di G8-Pay</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Header :</p>\n<ul>\n<li><p>X-Api-Key : <code>api_key_dev</code></p>\n</li>\n<li><p>Accept : <code>application/json</code></p>\n</li>\n<li><p>Accept-Language : <code>id | en</code></p>\n</li>\n</ul>\n<p><code>api_key_dev</code> bisa didapatkan dari dashboard reseller anda.<br>note : Apabila language tidak di isi, maka semua response message akan berbahasa Indonesia.</p>\n<h1 id=\"signature\">Signature</h1>\n<p>Signature dipakai untuk keperluan POST order dan Validasi callback dari G8-PAY.<br><code>ini_secret_key</code> secret key hanya bisa didapatkan dengan cara hubungi Account Manager kalian, untuk request reset secret key juga hanya bisa dengan cara hubungi Account Manager kalian.</p>\n<blockquote>\n<p>stringToSign = <code>{{antara_group_product_atau_product_code}} + . + qty + .+ ini_secret_key</code><br><code>signature = sha256(stringToSign)</code> </p>\n</blockquote>\n<p>saat POST order kalian bisa menggunakan <code>group_product</code> atau <code>product_code</code><br>contoh pada POST order:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"partner_reference_id\" :  \"INV-001\"\n\"product_code\" : \"MLID_5DM-A1\",\n\"qty\": 3,\n\"user_id\" : \"99990000\",\n\"additional_id\" : \"2009\",\n\"signature\" : \"hasil_hash_dari(MLID_5DM-A1.3.secret_key)\"\n}\n\n</code></pre>\n<img src=\"https://content.pstmn.io/24fbf075-3df3-4b9c-8bdf-a6ce042a8006/U2NyZWVuc2hvdCAyMDI1LTEyLTIzIDA5MjI1MC5wbmc=\" alt=\"string%20yang%20harus%20di%20hash\" width=\"238\" height=\"29\">\n\n<blockquote>\n<p>payloadToSign = <code>timestamp + . + ini_secret_key</code><br><code>signature = sh256(payloadToSign)</code> </p>\n</blockquote>\n<p>contoh callback dari G8-PAY:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"00\",\n  \"message\": \"OK\",\n  \"data\": {\n    \"partner_reference_id\": \"INV-001\",\n    \"trxid\": \"A0000011\",\n    \"timestamp\": 1766456781,\n    \"signature\": \"hasil_hash_dari(1766456781.secret_key)\",\n    \"status\": \"SUCCESS\",\n    \"transactions\": [\n      {\n        \"id\": 1,\n        \"code_voucher\": \"\",\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\n        \"product_name\": \"5 Diamonds\",\n        \"status\": \"success\"\n      },\n      {\n        \"id\": 2,\n        \"code_voucher\": \"\",\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\n        \"product_name\": \"5 Diamonds\",\n        \"status\": \"success\"\n      },\n      {\n        \"id\": 3,\n        \"code_voucher\": \"\",\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\n        \"product_name\": \"5 Diamonds\",\n        \"status\": \"success\"\n      }\n    ]\n  }\n}\n\n</code></pre>\n<h1 id=\"response-format\">Response Format</h1>\n<p>Format response API G8-Pay</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"00\",\n  \"message\": \"OK\",\n  \"data\": {...}\n}\n\n</code></pre>\n<ul>\n<li><p>code = bisnis code dari G8-Pay (lihat table business code).</p>\n</li>\n<li><p>message = keterangan singkat</p>\n</li>\n<li><p>data = payload utamma</p>\n</li>\n</ul>\n<h1 id=\"business-code\">Business Code</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Keterangan</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>00</td>\n<td>200</td>\n<td>Berhasil - Request sukses</td>\n</tr>\n<tr>\n<td>01</td>\n<td>400/404/422</td>\n<td>Permintaan tidak valid - Payload/param salah, data tidak ditemukan, atau validasi gagal di level request, param kosong/invalid, BadRequest</td>\n</tr>\n<tr>\n<td>02</td>\n<td>401</td>\n<td>Tidak terautentikasi - API key/secret header salah/tidak ada</td>\n</tr>\n<tr>\n<td>03</td>\n<td>403</td>\n<td>Tidak diizinkan - IP tidak masuk whitelist / akses ditolak</td>\n</tr>\n<tr>\n<td>04</td>\n<td>422</td>\n<td>Error validasi form - Validasi form required gagal / field required tidak lengkap</td>\n</tr>\n<tr>\n<td>05</td>\n<td>400</td>\n<td>Saldo tidak mencukupi - Balance partner kurang</td>\n</tr>\n<tr>\n<td>06</td>\n<td>409/400</td>\n<td>Transaksi sudah ada - Duplicate trx / reference</td>\n</tr>\n<tr>\n<td>07</td>\n<td>401/400</td>\n<td>Signature tidak valid - Signature mismatch</td>\n</tr>\n<tr>\n<td>08</td>\n<td>400</td>\n<td>Perbedaan harga - Price mismatch, harga request vs harga server berbeda</td>\n</tr>\n<tr>\n<td>09</td>\n<td>400</td>\n<td>UserID tidak ditemukan - User/game ID tidak valid, check user gagal</td>\n</tr>\n<tr>\n<td>10</td>\n<td>400</td>\n<td>Akun tidak bisa digunakan untuk region ini - Region lock / region mismatch / user/game region mismatch</td>\n</tr>\n<tr>\n<td>99</td>\n<td>500</td>\n<td>Terjadi kesalahan pada server - error internal</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"product\">Product</h1>\n<p>Setiap produk di G8-Pay mempunyai :</p>\n<ul>\n<li><p><code>category_code</code> Kode kategori atau biasa dikelompokan menjadi Nama Game / Nama Game (sesuai region) / Nama Game sesuai jenis Topup<br>  contoh : MLID (Mobile Legend Indonesia), MLPH (Mobile Legend Filipina), ROMCLOG (Ragnarok Online M Classic via Login), ROMC (Ragnarok Online M Classic)</p>\n</li>\n<li><p><code>group_product</code> Grup produk kode ini untuk mengelompokan jenis / item / product yang sama tetapi beda provider / supplier / distributor.<br>  contoh : MLID_5-A1, MLID_5-A2 (artinya item tersebut sama, tetapi 1 dari A1 (supplier dengan code A1) dan A2 (supplier dengan code A2).<br>  biasa nya case ini ada perbedaan harga / delay dalam pengiriman.</p>\n</li>\n<li><p><code>product_code</code> Biasa dikenal oleh SKU Produk, masing-masing produk di G8-Pay punya unik product code untuk membedakan 1 sama lainnya.</p>\n</li>\n</ul>\n<p>note : Apabila ingin simple mode, atau mudah dalam maintenance produk dan update harga kami sarankan untuk menggunakan group_product untuk SKU Vendor di applikasi anda.</p>\n<h1 id=\"form-order\">Form Order</h1>\n<p>Saat melalukan order, anda harus kirim value dari parameter yang dibutuhkan dari masing-masing category, anda bisa mendapatkan apa saja yang dibutuhkan dari <code>forms</code> saat GET Category.</p>\n<p>Forms ada 4 parameter :</p>\n<ul>\n<li><p>user_id</p>\n</li>\n<li><p>additional_id</p>\n</li>\n<li><p>additional_information</p>\n</li>\n<li><p>order_detail</p>\n</li>\n</ul>\n<p>masing-masing kategori ada yang butuh 1 sampai ke-4 variable tersebut, dan jenis forms ada.</p>\n<ul>\n<li><p>tel (ini number tanpa spasi)</p>\n</li>\n<li><p>text (string)</p>\n</li>\n<li><p>email (email)</p>\n</li>\n<li><p>options (value yang dikirim harus sama dengan value yang tersedia)</p>\n</li>\n</ul>\n<h1 id=\"white-label-optional\">White Label (Optional)</h1>\n<p>Kami menyediakan /white-label endpoint untuk kebutuhan penggunaan data seperti deskripsi, gambar game / icon url, dan hint dari form yang dibutuhkan, dan semua tersedia dalam bahasa EN dan ID</p>\n<p>contoh response get category normal :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\"\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\"\n                    }\n                ]\n            },\n            {\n                \"code\": \"STEAM\",\n                \"name\": \"Steam Wallet\",\n                \"variant\": \"VOUCHER\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": []\n            }\n        ]\n    }\n}\n\n</code></pre>\n<p>contoh response get category white-label</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"icon_url\": \"https://s3-id-jkt-1.kilatstorage.id/main/m/category-game/1/6932d8a998b153.08501619.webp\",\n                \"developer_name\": \"Moonton\",\n                \"description\": {\n                    \"en\": \"**How to Top Up Mobile Legends: Bang Bang**\\r\\n1. Input User ID and Zone ID\\r\\n2. Example : 1234567 (1234)\\r\\n3. Choose the Nominal Diamonds you want\\r\\n4. Complete payment\\r\\n5. Diamond will be added to your Mobile Legends account\",\n                    \"id\": \"**Cara Top Up Mobile Legends Diamonds**\\r\\n1. Masukkan User ID dan Zone ID kamu\\r\\n2. Contoh : 1234567 (1234)\\r\\n3. Pilih Nominal Diamonds yang kamu inginkan\\r\\n4. Selesaikan pembayaran\\r\\n5. Diamonds akan ditambahkan ke akun Mobile Legends kamu\"\n                },\n                \"sub_category\": [\n                    {\n                        \"name\": \"WDP\",\n                        \"sort\": 2,\n                        \"sub_category_code\": \"WDP\"\n                    },\n                    {\n                        \"name\": \"Diamond\",\n                        \"sort\": 3,\n                        \"sub_category_code\": \"DM\"\n                    },\n                    {\n                        \"name\": \"Promo First Topup\",\n                        \"sort\": 1,\n                        \"sub_category_code\": \"1ST\"\n                    }\n                ],\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"User ID\",\n                            \"id\": \"User ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"You can find the User ID on the profile page.\",\n                            \"id\": \"Anda bisa dapatkan User ID di halaman profile.\"\n                        }\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"Zone ID\",\n                            \"id\": \"Zone ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"\",\n                            \"id\": \"\"\n                        }\n                    }\n                ]\n            }\n        ]\n    }\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Signature","slug":"signature"},{"content":"Response Format","slug":"response-format"},{"content":"Business Code","slug":"business-code"},{"content":"Product","slug":"product"},{"content":"Form Order","slug":"form-order"},{"content":"White Label (Optional)","slug":"white-label-optional"}],"owner":"34964205","collectionId":"1b71fea1-ca3f-4a99-aeab-efc4703afffd","publishedId":"2sBXVme8Cp","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-01-26T05:47:35.000Z"},"item":[{"name":"API G8-Pay","item":[{"name":"Get Categories","id":"89b18cfa-42f6-4412-9d88-fc5457816f03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/category?country_code=id","description":"<p>Apabila <code>country_code</code> tidak ada maka response akan kembali default ke ID (Indonesia)</p>\n","urlObject":{"path":["v1","category"],"host":["https://dev.g8-pay.com"],"query":[{"disabled":true,"description":{"content":"<p>use this parameter for single data (optional)</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"key":"country_code","value":"id"}],"variable":[]}},"response":[{"id":"53df89ae-0e70-48b0-9518-c2957019b48b","name":"SUCCESS - Category","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/category","host":["https://dev.g8-pay.com"],"path":["v1","category"],"query":[{"key":"category_code","value":"MLID","description":"use this parameter for single data (optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 17:01:07 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e6353ad9e7"},{"key":"X-Debug-Duration","value":"68"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e6353ad9e7"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MCGG\",\n                \"name\": \"Magic Chess: Go Go\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": []\n            },\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\"\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\"\n                    }\n                ]\n            },\n            {\n                \"code\": \"STEAM\",\n                \"name\": \"Steam Wallet\",\n                \"variant\": \"VOUCHER\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": []\n            }\n        ]\n    }\n}"},{"id":"caba5867-f985-47e0-a35d-e176e73c355f","name":"SUCCESS - Single Category","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/category?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","category"],"query":[{"key":"category_code","value":"MLID","description":"use this parameter for single data (optional)"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 17:01:52 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e638041c48"},{"key":"X-Debug-Duration","value":"71"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e638041c48"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\"\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"89b18cfa-42f6-4412-9d88-fc5457816f03"},{"name":"Get Group Products","id":"f92c7321-0ecd-4bdf-88d0-fcd4430701c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/group-product?category_code=MLID","urlObject":{"path":["v1","group-product"],"host":["https://dev.g8-pay.com"],"query":[{"key":"category_code","value":"MLID"}],"variable":[]}},"response":[{"id":"1f730424-cfc9-4c9e-9ff2-6ba703d9254d","name":"SUCCESS - Group Products","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/group-product?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","group-product"],"query":[{"key":"category_code","value":"MLID"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 08:39:58 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f3f5e588c2"},{"key":"X-Debug-Duration","value":"63"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f3f5e588c2"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"group_products\": [\n            \"MLID_WDP\",\n            \"MLID_WDP_X2\"\n        ]\n    }\n}"}],"_postman_id":"f92c7321-0ecd-4bdf-88d0-fcd4430701c3"},{"name":"Get Products","id":"1e0f783e-75c1-4f4a-a256-d3a71a32a17e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/product?category_code=MLID","description":"<p>Harus isi salah satu dari <code>category_code</code> , <code>group_product</code> atau <code>product_code</code></p>\n<p>Apabila 2 parameter yang dikirim, maka akan menghasilkan response error.</p>\n","urlObject":{"path":["v1","product"],"host":["https://dev.g8-pay.com"],"query":[{"description":{"content":"<p>category_code is required when group_product or product_code is not provided.</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"disabled":true,"description":{"content":"<p>group_product is required when category_code or product_code is not provided.</p>\n","type":"text/plain"},"key":"group_product","value":"MLID_WDP"},{"disabled":true,"description":{"content":"<p>product_code is required when category_code or group_product is not provided.</p>\n","type":"text/plain"},"key":"product_code","value":"MLID_WDP-A1"}],"variable":[]}},"response":[{"id":"f1c814c3-a54f-485f-b349-516152d1286c","name":"SUCCESS- by Category","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","product"],"query":[{"key":"category_code","value":"MLID"},{"key":"group_product","value":"MLID_WDP","type":"text","disabled":true},{"key":"product_code","value":"MLID_WDP-A1","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 17:07:02 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e64b647d25"},{"key":"X-Debug-Duration","value":"67"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e64b647d25"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            },\n            {\n                \"product_code\": \"MLID_WDP-A2\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A2\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27581,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            },\n            {\n                \"product_code\": \"MLID_WDP_X2-A1\",\n                \"name\": \"Weekly Diamond Pass x2\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP_X2\",\n                \"price\": 54162,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            }\n        ]\n    }\n}"},{"id":"8e7bb494-6990-46fb-a03c-4a6293bee631","name":"SUCCESS - by Group Product","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product?group_product=MLID_WDP","host":["https://dev.g8-pay.com"],"path":["v1","product"],"query":[{"key":"category_code","value":"MLID","disabled":true},{"key":"group_product","value":"MLID_WDP"},{"key":"product_code","value":"MLID_WDP-A1","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 17:07:33 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e64d52f25e"},{"key":"X-Debug-Duration","value":"71"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e64d52f25e"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            },\n            {\n                \"product_code\": \"MLID_WDP-A2\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A2\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27581,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            }\n        ]\n    }\n}"},{"id":"9b341a54-5dfa-4626-a73b-da19e1d66a06","name":"SUCCESS - Single Product","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product?product_code=MLID_WDP-A1","host":["https://dev.g8-pay.com"],"path":["v1","product"],"query":[{"key":"category_code","value":"MLID","disabled":true},{"key":"group_product","value":"MLID_WDP","type":"text","disabled":true},{"key":"product_code","value":"MLID_WDP-A1","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 17:08:50 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e6522c2019"},{"key":"X-Debug-Duration","value":"64"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e6522c2019"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            }\n        ]\n    }\n}"}],"_postman_id":"1e0f783e-75c1-4f4a-a256-d3a71a32a17e"},{"name":"Get Best Products","id":"8a864f53-27af-4c1f-b93a-e7fb0511f2c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/best-product?category_code=MLID","urlObject":{"path":["v1","best-product"],"host":["https://dev.g8-pay.com"],"query":[{"description":{"content":"<p>mandatory if group_product empty</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"disabled":true,"description":{"content":"<p>mandatory if category_code emtpy</p>\n","type":"text/plain"},"key":"group_product","value":"MLID_WDP"}],"variable":[]}},"response":[{"id":"1ccc3a9b-8f3a-437f-89b9-403ea71d6825","name":"SUCCESS -  by Category","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/best-product?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","best-product"],"query":[{"key":"category_code","value":"MLID","description":"mandatory if group_product empty"},{"key":"group_product","value":"MLID_WDP","description":"mandatory if category_code emtpy","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 18:01:44 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e7188aed14"},{"key":"X-Debug-Duration","value":"81"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e7188aed14"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            },\n            {\n                \"product_code\": \"MLID_WDP_X2-A1\",\n                \"name\": \"Weekly Diamond Pass x2\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP_X2\",\n                \"price\": 54162,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            }\n        ]\n    }\n}"},{"id":"a8d8583a-0e24-4087-ad22-038004fb9fa6","name":"SUCCESS - by Group Product","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/best-product?group_product=MLID_WDP","host":["https://dev.g8-pay.com"],"path":["v1","best-product"],"query":[{"key":"category_code","value":"MLID","description":"mandatory if group_product empty","disabled":true},{"key":"group_product","value":"MLID_WDP","description":"mandatory if category_code emtpy","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Mon, 19 Jan 2026 18:02:10 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696e71a2c5b06"},{"key":"X-Debug-Duration","value":"66"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696e71a2c5b06"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8a864f53-27af-4c1f-b93a-e7fb0511f2c5"},{"name":"Post Order","id":"ee2c7670-8730-459c-9646-f959c04ff1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order","description":"<p>Harap gunakan JSON di Body saat mengirimkan request Order</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Keterangan</strong></th>\n<th><strong>Tipe Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>partner_reference_id</td>\n<td>Nomor reference partner (unik) setiap transaksi.  <br /><strong>mandatory</strong></td>\n<td>String (Maksimal 100 Karater)</td>\n</tr>\n<tr>\n<td>qty</td>\n<td>Kuantiti atau banyaknya item <em>(Maksimal 10 dalam 1 Order).</em>  <br /><strong>mandatory</strong></td>\n<td>Interger</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>SKU product harus dikirim apabila group_product tidak dikirim (salah satu)  <br /><strong>mandatory</strong></td>\n<td>String</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>hash256(<code>product_code.qty.secret_key</code>)  <br /><code>.</code> ikut di-hash.  <br />Apabila pakai <code>group_product</code>, ganti <code>product_code</code> dengan <code>group_product</code>  <br /><strong>mandatory</strong></td>\n<td>String</td>\n</tr>\n<tr>\n<td>group_product</td>\n<td>Group Product Code dipakai sebagai pengganti product_code apabila tidak dikirimkan.  <br /><strong>mandatory</strong></td>\n<td>String</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Harga beli yang diharapkan (di-inginkan) jika harga di Server G8-PAY lebih mahal (terjadi kenaikan harga) maka order akan ditolak, apabila harga di Server G8-Pay lebih murah (penurunan harga) order tetap jalan dan saldo partner terpotong sesuai harga di server G8-Pay.  <br /><strong>optional</strong></td>\n<td>Float</td>\n</tr>\n<tr>\n<td>user_id, additional_id, additional_information, orderdetail</td>\n<td>Parameter yang dibutuhkan masing-masing kategori akan berbeda-beda (lihat referensi Form Order).  <br /><strong>optional</strong></td>\n<td>String</td>\n</tr>\n<tr>\n<td>override_callback_url</td>\n<td>Apabila partner menginginkan notifikasi (callback) order ingin dikirim ke URL lain / berbeda dengan setup config di Partner Dashboard.  <br /><strong>optional</strong></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","order"],"host":["https://dev.g8-pay.com"],"query":[],"variable":[]}},"response":[{"id":"734db133-0f77-4ae8-a201-6db564462301","name":"SUCCESS  - Order","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 08:56:34 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f43421d514"},{"key":"X-Debug-Duration","value":"131"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f43421d514"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"partner_reference_id\": \"INV-001\",\n        \"trxid\": \"A1768899394000010000000004\",\n        \"qty\": 2,\n        \"price\": 54162,\n        \"balance_after\": 77356\n    }\n}"},{"id":"65d8dc8a-84ea-427a-9e44-6c080e5b6c62","name":"FAILED - Transaction Exist","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 08:57:08 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f43642f258"},{"key":"X-Debug-Duration","value":"84"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f43642f258"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"06\",\n    \"message\": \"Transaksi sudah ada\",\n    \"data\": {\n        \"partner_reference_id\": \"INV-001\",\n        \"trxid\": \"A1768899394000010000000004\"\n    }\n}"},{"id":"476a1d9f-510c-4680-b3d0-04d40cff51d3","name":"FAILED - Insufficient balance","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 09:50:39 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f4fef498ca"},{"key":"X-Debug-Duration","value":"128"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f4fef498ca"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"05\",\n    \"message\": \"Saldo tidak mencukupi - Insufficient balance\",\n    \"data\": null\n}"},{"id":"8c650073-9f50-4413-8070-3dd06c7000bd","name":"FAILED - Price Mismatch","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"price\" : 10000,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 09:51:52 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f50386e86b"},{"key":"X-Debug-Duration","value":"83"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f50386e86b"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"08\",\n    \"message\": \"Perbedaan harga - Price mismatch\",\n    \"data\": null\n}"},{"id":"fc6e46f1-3ffa-459c-ae3b-faa8a7a943c4","name":"FAILED - Invalid Signature","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 3,\r\n    \"price\" : 10000,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\",\r\n    \"additional_id\" : \"1540\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 09:53:02 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f507e7380f"},{"key":"X-Debug-Duration","value":"104"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f507e7380f"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"07\",\n    \"message\": \"Signature tidak valid - Invalid signature\",\n    \"data\": null\n}"},{"id":"c7f8e331-3161-4b08-acfa-31c3125b8b94","name":"FAILED - Form Required not Match","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"partner_reference_id\" : \"INV-001\",\r\n    \"qty\" : 2,\r\n    \"product_code\": \"MLID_WDP-A1\",\r\n    \"signature\": \"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5\",\r\n    \"user_id\": \"1000002\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.g8-pay.com/v1/order"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 09:58:46 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f51d674e09"},{"key":"X-Debug-Duration","value":"113"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f51d674e09"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"04\",\n    \"message\": \"Error validasi form - Form required not match\",\n    \"data\": null\n}"}],"_postman_id":"ee2c7670-8730-459c-9646-f959c04ff1fc"},{"name":"Get Order Status","id":"9af76330-7e6c-4933-9b29-6f5523e30e9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/order/status?trxid=A1768899394000010000000004","urlObject":{"path":["v1","order","status"],"host":["https://dev.g8-pay.com"],"query":[{"description":{"content":"<p>Optional: G8-Pay transaction id</p>\n","type":"text/plain"},"key":"trxid","value":"A1768899394000010000000004"},{"disabled":true,"description":{"content":"<p>Optional: partner's reference id</p>\n","type":"text/plain"},"key":"partner_reference_id","value":"INV-001"}],"variable":[]}},"response":[{"id":"95dde6bd-5709-4b1d-890d-c071586c8816","name":"SUCCESS - Order Status","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/order/status?partner_reference_id=INV-001","host":["https://dev.g8-pay.com"],"path":["v1","order","status"],"query":[{"key":"trxid","value":"A1768899394000010000000004","description":"Optional: G8-Pay transaction id","disabled":true},{"key":"partner_reference_id","value":"INV-001","description":"Optional: partner's reference id"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 10:05:13 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f535923661"},{"key":"X-Debug-Duration","value":"67"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f535923661"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"trxid\": \"A1768899394000010000000004\",\n        \"partner_reference_id\": \"INV-001\",\n        \"status\": \"PENDING\",\n        \"transactions\": [\n            {\n                \"id\": \"4\",\n                \"product_name\": \"Weekly Diamond Pass\",\n                \"note\": \"Sedang diproses - 2026-01-20 15:56:34 WIB\",\n                \"voucher_code\": \"\",\n                \"status\": \"pending\"\n            },\n            {\n                \"id\": \"5\",\n                \"product_name\": \"Weekly Diamond Pass\",\n                \"note\": \"Sedang diproses - 2026-01-20 15:56:34 WIB\",\n                \"voucher_code\": \"\",\n                \"status\": \"pending\"\n            }\n        ]\n    }\n}"}],"_postman_id":"9af76330-7e6c-4933-9b29-6f5523e30e9c"},{"name":"Get Balance","id":"4305e3eb-8545-4d94-a19c-58e46babf0b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/wallet/balance","urlObject":{"path":["v1","wallet","balance"],"host":["https://dev.g8-pay.com"],"query":[],"variable":[]}},"response":[{"id":"df562266-2652-4c03-a5bf-54bdb5f905db","name":"SUCCESS - Get Balance","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/wallet/balance"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Tue, 20 Jan 2026 10:07:54 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"696f53fa4abab"},{"key":"X-Debug-Duration","value":"59"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=696f53fa4abab"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"balance\": 31518,\n        \"minimal_deposit\": 100000,\n        \"currency\": \"IDR\"\n    }\n}"}],"_postman_id":"4305e3eb-8545-4d94-a19c-58e46babf0b7"}],"id":"11c87d36-54bd-4b83-84f3-e6eb57e16be8","description":"<p>Reference API G8-Pay</p>\n","_postman_id":"11c87d36-54bd-4b83-84f3-e6eb57e16be8"},{"name":"Callback Reference","item":[{"name":"Order Callback","id":"0ba946b8-a3d1-4de9-b373-3fe2042a8621","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"code\": \"00\",\r\n  \"message\": \"OK\",\r\n  \"data\": {\r\n    \"partner_reference_id\": \"INV-001\",\r\n    \"trxid\": \"A1768899394000010000000004\",\r\n    \"timestamp\": 1766456781,\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key)\",\r\n    \"status\": \"FAILED\",\r\n    \"transactions\": [\r\n      {\r\n        \"id\": 1,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      },\r\n      {\r\n        \"id\": 3,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      }\r\n    ]\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-callback","description":"<p>Kami akan mengirimkan notifikasi (callback) ke URL partner yang sudah ada di Partner Dashboard</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Keterangan</th>\n<th>Tipe Data</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Selalu <code>00</code> <em>(bisa diabaikan)</em></td>\n<td>String</td>\n</tr>\n<tr>\n<td>message</td>\n<td>Selalu <code>Ok</code> <em>(bisa diabaikan)</em></td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.status</td>\n<td>Status transaksi :  <br />- <code>SUCCESS</code> : transaksi berhasil.  <br />  <br />- <code>PARTIAL_REFUND</code> : sebagian transaksi gagal, dan saldo dikembalikan sesuai order yang gagal. (biasa terjadi karena <em>purchase limit</em> / limit pembelian dari akun tersebut)  <br />  <br />case : beli Weekly Diamond 3x padahal user tersebut hanya bisa 2x saja, maka 1 di refund.  <br />  <br />- <code>REFUND</code> : transaksi gagal, sepenuhnya saldo partner akan dikembalikan.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.partner_reference_id</td>\n<td>Nomor referensi yang dikirimkan saat order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.trxid</td>\n<td>Nomor transaksi dari G8-Pay</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.timestamp</td>\n<td>Unix Timestamp dari server, untuk pembanding signature</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.signature</td>\n<td>Hasil hash256(<code>timestamp.secret_key</code>)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.transactions</td>\n<td>Detail transaksi</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>data.transactions.[i].id</td>\n<td>Order id server G8-PAY</td>\n<td>Interger</td>\n</tr>\n<tr>\n<td>data.transactions.[i].code_voucher</td>\n<td>Apabila pembelian type voucher maka kode akan diberikan, apabila bukan maka akan menghasilkan string kosong.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.transactions.[i].note</td>\n<td>Note berhasil / error / alasan refund order.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.transactions.[i].product_name</td>\n<td>Nama product</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.transactions.[i].status</td>\n<td>status setiap transaksi hanya ada <code>success</code> dan <code>failed</code></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["path-callback"],"host":["callback","partner","com"],"query":[],"variable":[]}},"response":[{"id":"a1d541d0-5613-4ef8-a9f4-215faf98eaa3","name":"PARTIAL_REFUND - Order Callback","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"code\": \"00\",\r\n  \"message\": \"OK\",\r\n  \"data\": {\r\n    \"partner_reference_id\": \"INV-001\",\r\n    \"trxid\": \"A1768899394000010000000004\",\r\n    \"timestamp\": 1766456781,\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key)\",\r\n    \"status\": \"PARTIAL_REFUND\",\r\n    \"transactions\": [\r\n      {\r\n        \"id\": 1,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Purchase Limit\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"success\"\r\n      },\r\n      {\r\n        \"id\": 3,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"success\"\r\n      }\r\n    ]\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-callback"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 20 Jan 2026 11:43:36 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Language,Accept-Encoding"},{"key":"Content-Encoding","value":"br"},{"key":"Server","value":"cloudflare"},{"key":"x-turbo-charged-by","value":"LiteSpeed"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=f9pZ5tscDuRCpzzXJLZQdb2iwFlGs%2FtgIcQOWddrvP4NinajsrkyEYPJS5ZJFitYmVRQZS1Kl5ydi3c3B3MSYWlgETmqUn5Y%2F8YkFxg%3D\"}]}"},{"key":"CF-RAY","value":"9c0e50a97979a132-SIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Ok\"\n}"},{"id":"d1d85724-7b57-43b7-9607-32fd9e9e4065","name":"SUCCESS - Order Callback","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"code\": \"00\",\r\n  \"message\": \"OK\",\r\n  \"data\": {\r\n    \"partner_reference_id\": \"INV-001\",\r\n    \"trxid\": \"A1768899394000010000000004\",\r\n    \"timestamp\": 1766456781,\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key)\",\r\n    \"status\": \"SUCCESS\",\r\n    \"transactions\": [\r\n      {\r\n        \"id\": 1,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"success\"\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"success\"\r\n      },\r\n      {\r\n        \"id\": 3,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Sukses Terkirim - 2025-12-30 00:01:18 WIB\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"success\"\r\n      }\r\n    ]\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-callback"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 20 Jan 2026 11:43:36 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Language,Accept-Encoding"},{"key":"Content-Encoding","value":"br"},{"key":"Server","value":"cloudflare"},{"key":"x-turbo-charged-by","value":"LiteSpeed"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=f9pZ5tscDuRCpzzXJLZQdb2iwFlGs%2FtgIcQOWddrvP4NinajsrkyEYPJS5ZJFitYmVRQZS1Kl5ydi3c3B3MSYWlgETmqUn5Y%2F8YkFxg%3D\"}]}"},{"key":"CF-RAY","value":"9c0e50a97979a132-SIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Ok\"\n}"},{"id":"bfc775c5-e78c-4579-89cb-7c8414113a29","name":"REFUND - Order Callback","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"code\": \"00\",\r\n  \"message\": \"OK\",\r\n  \"data\": {\r\n    \"partner_reference_id\": \"INV-001\",\r\n    \"trxid\": \"A1768899394000010000000004\",\r\n    \"timestamp\": 1766456781,\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key)\",\r\n    \"status\": \"FAILED\",\r\n    \"transactions\": [\r\n      {\r\n        \"id\": 1,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      },\r\n      {\r\n        \"id\": 2,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      },\r\n      {\r\n        \"id\": 3,\r\n        \"code_voucher\": \"\",\r\n        \"note\": \"Gagal Terikirim - Region Lock\",\r\n        \"product_name\": \"5 Diamonds\",\r\n        \"status\": \"failed\"\r\n      }\r\n    ]\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-callback"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Date","value":"Tue, 20 Jan 2026 11:43:36 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Language,Accept-Encoding"},{"key":"Content-Encoding","value":"br"},{"key":"Server","value":"cloudflare"},{"key":"x-turbo-charged-by","value":"LiteSpeed"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=f9pZ5tscDuRCpzzXJLZQdb2iwFlGs%2FtgIcQOWddrvP4NinajsrkyEYPJS5ZJFitYmVRQZS1Kl5ydi3c3B3MSYWlgETmqUn5Y%2F8YkFxg%3D\"}]}"},{"key":"CF-RAY","value":"9c0e50a97979a132-SIN"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Ok\"\n}"}],"_postman_id":"0ba946b8-a3d1-4de9-b373-3fe2042a8621"},{"name":"Product Callback","id":"f34a3e82-cca0-4b24-9418-25aac4ea7e97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"00\",\r\n    \"message\": \"OK\",\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key\",\r\n    \"timestamp\": 1766456781,\r\n    \"data\": {\r\n        \"product_code\": \"MLID_WDP-A1\",\r\n        \"category_code\": \"MLID\",\r\n        \"group_product\": \"MLID_WDP\",\r\n        \"name\": \"5 Diamonds\",\r\n        \"provider_code\": \"A1\",\r\n        \"price\": 1540,\r\n        \"status\": \"available\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-product-callback","description":"<p>Kami akan mengirimkan notifikasi ke partner perihal perubahan harga atau status stock satu per satu dari product kami yang aktif.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Keterangan</th>\n<th>Tipe Data</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Selalu <code>00</code> <em>(bisa diabaikan)</em></td>\n<td>String</td>\n</tr>\n<tr>\n<td>message</td>\n<td>Selalu <code>Ok</code> <em>(bisa diabaikan)</em></td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.timestamp</td>\n<td>Unix Timestamp dari server, untuk pembanding signature</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.signature</td>\n<td>Hasil hash256(<code>timestamp.secret_key</code>)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.product_code</td>\n<td>SKU product code G8-Pay</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.category_code</td>\n<td>Category / Jenis Game Code G8-Pay</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.group_product</td>\n<td>Group Product Code G8-Pay</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.name</td>\n<td>Nama Product</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.provider_code</td>\n<td>Provider Code / Distributor Code G8-Pay</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.price</td>\n<td>Harga baru dari product kami</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>data.status</td>\n<td>Stock item tersebut, <code>available</code> atau <code>empty</code></td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["path-product-callback"],"host":["callback","partner","com"],"query":[],"variable":[]}},"response":[{"id":"2609d229-dee4-4f74-98cf-572040979d33","name":"SUCCESS - Product Callback","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"00\",\r\n    \"message\": \"OK\",\r\n    \"signature\": \"hasil_hash_dari(1766456781.ini_secret_key\",\r\n    \"timestamp\": 1766456781,\r\n    \"data\": {\r\n        \"product_code\": \"MLID_WDP-A1\",\r\n        \"category_code\": \"MLID\",\r\n        \"group_product\": \"MLID_WDP\",\r\n        \"name\": \"5 Diamonds\",\r\n        \"provider_code\": \"A1\",\r\n        \"price\": 1540,\r\n        \"status\": \"available\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://callback.partner.com/path-product-callback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 Jan 2026 10:29:50 GMT"},{"key":"Server","value":"Apache/2.4.37 (AlmaLinux) OpenSSL/1.1.1k"},{"key":"X-Powered-By","value":"PHP/8.1.13"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"cplUrlRef=https%3A%2F%2Fcallback.partner.com%2Fuser%2F%3Fu%3Dpath-product-callback; expires=Fri, 30-Jan-2026 10:29:50 GMT; Max-Age=604800; path=/; domain=couple.com"},{"key":"Strict-Transport-Security","value":"max-age=63072000;"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"code\": \"00\",\r\n    \"message\": \"Ok\"\r\n}"}],"_postman_id":"f34a3e82-cca0-4b24-9418-25aac4ea7e97"}],"id":"ef5c4e7a-e81f-4941-a3fb-539fc856e41e","_postman_id":"ef5c4e7a-e81f-4941-a3fb-539fc856e41e","description":""},{"name":"API Whitelabel","item":[{"name":"Get Categories - WL","id":"961d3f9b-8faa-4bd0-a777-e3d3d566797c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/category/white-label?country_code=id","description":"<p>Tambahan response dari Get Categories sebelumnya.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Keterangan</strong></th>\n<th><strong>Tipe Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data.categories.[i].icon_url</td>\n<td>Url Icon yang disediakan oleh G8-Pay, dengan resolusi 800x800 dan extention <code>webp</code></td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.categories.[i].developer_name</td>\n<td>Penyedia / Publisher game tersebut.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.categories.[i].label_tags</td>\n<td><code>TRENDS</code> atau <code>NEW</code> bisa digunakan untuk keperluan trends / hot game, atau new release game</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.categories.[i].sort</td>\n<td>Urutan yang paling populer biasanya, angka terkecil berarti paling populer.</td>\n<td>Interger</td>\n</tr>\n<tr>\n<td>data.categories.[i].description</td>\n<td>Tersedia dalam bahasa Indonesia dan Inggris.</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>data.categories.[i].sub_category</td>\n<td>Sub-Kategori product yang tersedia (agar produk bisa di kelompokan dengan sejenisnya)  <br />  <br />contoh : Bonus First Topup, produk terdiri dari 100+100, 150+150, ....</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>data.categories.[i].sub_category.[j].name</td>\n<td>Label sub kategori (pengelompokan product).</td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.categories.[i].sub_category.[j].sort</td>\n<td>Urutan sub-category dari yang terpopuler.</td>\n<td>Interger</td>\n</tr>\n<tr>\n<td>data.categories.[i].sub_category.[j].sub_category_code</td>\n<td>Code untuk mempermudah filter produk <em>(produk di White Label punya parameter sub_category)</em></td>\n<td>String</td>\n</tr>\n<tr>\n<td>data.categories.[i].forms.[j].display</td>\n<td>Label untuk ditampilkan ke customer. tersedia Indonesia dan Inggris  <br />  <br />contoh : User ID, Server, Username, UID</td>\n<td>Array</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","category","white-label"],"host":["https://dev.g8-pay.com"],"query":[{"disabled":true,"description":{"content":"<p>use this parameter for single data (optional)</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"key":"country_code","value":"id"}],"variable":[]}},"response":[{"id":"d2779c1a-b0dc-4903-9c7d-ed5a1f4474fc","name":"SUCCESS - Category WL","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/category/white-label?country_code=id","host":["https://dev.g8-pay.com"],"path":["v1","category","white-label"],"query":[{"key":"category_code","value":"MLID","description":"use this parameter for single data (optional)","disabled":true},{"key":"country_code","value":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 07:42:20 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"6973265c4b9b8"},{"key":"X-Debug-Duration","value":"55"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=6973265c4b9b8"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MCGG\",\n                \"name\": \"Magic Chess: Go Go\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"active\",\n                \"country_code\": \"id\",\n                \"icon_url\": \"\",\n                \"developer_name\": \"Moonton\",\n                \"description\": {\n                    \"en\": \"1. sss\\r\\n2. 2222\",\n                    \"id\": \"1. gmmn\\r\\n2. sss\"\n                },\n                \"sub_category\": [],\n                \"forms\": []\n            },\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"active\",\n                \"country_code\": \"id\",\n                \"icon_url\": \"https://s3-id-jkt-1.kilatstorage.id/main/m/category-game/1/6932d8a998b153.08501619.webp\",\n                \"developer_name\": \"Moonton\",\n                \"description\": {\n                    \"en\": \"**How to Top Up Mobile Legends: Bang Bang**\\r\\n1. Input User ID and Zone ID\\r\\n2. Example : 1234567 (1234)\\r\\n3. Choose the Nominal Diamonds you want\\r\\n4. Complete payment\\r\\n5. Diamond will be added to your Mobile Legends account\",\n                    \"id\": \"**Cara Top Up Mobile Legends Diamonds**\\r\\n1. Masukkan User ID dan Zone ID kamu\\r\\n2. Contoh : 1234567 (1234)\\r\\n3. Pilih Nominal Diamonds yang kamu inginkan\\r\\n4. Selesaikan pembayaran\\r\\n5. Diamonds akan ditambahkan ke akun Mobile Legends kamu\"\n                },\n                \"sub_category\": [\n                    {\n                        \"name\": \"WDP\",\n                        \"sort\": 2,\n                        \"sub_category_code\": \"WDP\"\n                    },\n                    {\n                        \"name\": \"Diamond\",\n                        \"sort\": 3,\n                        \"sub_category_code\": \"DM\"\n                    },\n                    {\n                        \"name\": \"Promo First Topup\",\n                        \"sort\": 1,\n                        \"sub_category_code\": \"1ST\"\n                    }\n                ],\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"User ID\",\n                            \"id\": \"User ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"\",\n                            \"id\": \"\"\n                        }\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"Zone ID\",\n                            \"id\": \"Zone ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"\",\n                            \"id\": \"\"\n                        }\n                    }\n                ]\n            },\n            {\n                \"code\": \"STEAM\",\n                \"name\": \"Steam Wallet\",\n                \"variant\": \"VOUCHER\",\n                \"check_id\": \"inactive\",\n                \"country_code\": \"id\",\n                \"icon_url\": \"\",\n                \"developer_name\": \"Valve\",\n                \"description\": \"\",\n                \"sub_category\": [],\n                \"forms\": []\n            }\n        ]\n    }\n}"},{"id":"a24d0451-cb8c-4295-8090-fb585469d1d4","name":"SUCCESS - Single Category WL","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/category/white-label?category_code=MLID&country_code=id","host":["https://dev.g8-pay.com"],"path":["v1","category","white-label"],"query":[{"key":"category_code","value":"MLID","description":"use this parameter for single data (optional)"},{"key":"country_code","value":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 07:48:00 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"697327b064106"},{"key":"X-Debug-Duration","value":"78"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=697327b064106"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"code\": \"MLID\",\n                \"name\": \"Mobile Legend ID\",\n                \"variant\": \"DIGITAL\",\n                \"check_id\": \"active\",\n                \"country_code\": \"id\",\n                \"icon_url\": \"https://s3-id-jkt-1.kilatstorage.id/main/m/category-game/1/6932d8a998b153.08501619.webp\",\n                \"developer_name\": \"Moonton\",\n                \"description\": {\n                    \"en\": \"**How to Top Up Mobile Legends: Bang Bang**\\r\\n1. Input User ID and Zone ID\\r\\n2. Example : 1234567 (1234)\\r\\n3. Choose the Nominal Diamonds you want\\r\\n4. Complete payment\\r\\n5. Diamond will be added to your Mobile Legends account\",\n                    \"id\": \"**Cara Top Up Mobile Legends Diamonds**\\r\\n1. Masukkan User ID dan Zone ID kamu\\r\\n2. Contoh : 1234567 (1234)\\r\\n3. Pilih Nominal Diamonds yang kamu inginkan\\r\\n4. Selesaikan pembayaran\\r\\n5. Diamonds akan ditambahkan ke akun Mobile Legends kamu\"\n                },\n                \"sub_category\": [\n                    {\n                        \"name\": \"WDP\",\n                        \"sort\": 2,\n                        \"sub_category_code\": \"WDP\"\n                    },\n                    {\n                        \"name\": \"Diamond\",\n                        \"sort\": 3,\n                        \"sub_category_code\": \"DM\"\n                    },\n                    {\n                        \"name\": \"Promo First Topup\",\n                        \"sort\": 1,\n                        \"sub_category_code\": \"1ST\"\n                    }\n                ],\n                \"forms\": [\n                    {\n                        \"name\": \"user_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"User ID\",\n                            \"id\": \"User ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"\",\n                            \"id\": \"\"\n                        }\n                    },\n                    {\n                        \"name\": \"additional_id\",\n                        \"type\": \"tel\",\n                        \"display\": {\n                            \"en\": \"Zone ID\",\n                            \"id\": \"Zone ID\"\n                        },\n                        \"hint\": {\n                            \"en\": \"\",\n                            \"id\": \"\"\n                        }\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"961d3f9b-8faa-4bd0-a777-e3d3d566797c"},{"name":"Get Products - WL","id":"b3f23f96-d0ce-42cd-85fa-7c12fbeb2a27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/product/white-label?category_code=MLID","description":"<p>Harus isi salah satu dari <code>category_code</code> , <code>group_product</code> atau <code>product_code</code></p>\n<p>Apabila 2 parameter yang dikirim, maka akan menghasilkan response error.</p>\n","urlObject":{"path":["v1","product","white-label"],"host":["https://dev.g8-pay.com"],"query":[{"description":{"content":"<p>category_code is required when group_product or product_code is not provided.</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"disabled":true,"description":{"content":"<p>group_product is required when category_code or product_code is not provided.</p>\n","type":"text/plain"},"key":"group_product","value":"MLID_WDP"},{"disabled":true,"description":{"content":"<p>product_code is required when category_code or group_product is not provided.</p>\n","type":"text/plain"},"key":"product_code","value":"MLID_WDP-A1"}],"variable":[]}},"response":[{"id":"e06a5c60-9ba0-46c8-83a1-dc86668e4077","name":"SUCCESS - Single Product WL","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product/white-label?product_code=MLID_WDP-A1","host":["https://dev.g8-pay.com"],"path":["v1","product","white-label"],"query":[{"key":"category_code","value":"MLID","description":"category_code is required when group_product or product_code is not provided.","disabled":true},{"key":"group_product","value":"MLID_WDP","description":"group_product is required when category_code or product_code is not provided.","type":"text","disabled":true},{"key":"product_code","value":"MLID_WDP-A1","description":"product_code is required when category_code or group_product is not provided.","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 10:04:39 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"697347b767342"},{"key":"X-Debug-Duration","value":"117"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=697347b767342"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"recommended_price\": 30000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            }\n        ]\n    }\n}"},{"id":"e8fd6b4f-40ed-4825-aed8-c006a28baf11","name":"SUCCESS - by Category WL","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product/white-label?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","product","white-label"],"query":[{"key":"category_code","value":"MLID","description":"category_code is required when group_product or product_code is not provided."},{"key":"group_product","value":"MLID_WDP","description":"group_product is required when category_code or product_code is not provided.","type":"text","disabled":true},{"key":"product_code","value":"MLID_WDP-A1","description":"product_code is required when category_code or group_product is not provided.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 10:05:29 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"697347e9cddb1"},{"key":"X-Debug-Duration","value":"71"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=697347e9cddb1"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"recommended_price\": 30000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            },\n            {\n                \"product_code\": \"MLID_WDP_X2-A1\",\n                \"name\": \"Weekly Diamond Pass x2\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP_X2\",\n                \"price\": 54162,\n                \"recommended_price\": 60000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            }\n        ]\n    }\n}"},{"id":"366cf050-0639-4f92-af97-59f74d0b2780","name":"SUCCESS - by Group Product WL","originalRequest":{"method":"GET","header":[{"key":"X-Api-Key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/product/white-label?group_product=MLID_WDP","host":["https://dev.g8-pay.com"],"path":["v1","product","white-label"],"query":[{"key":"category_code","value":"MLID","description":"category_code is required when group_product or product_code is not provided.","disabled":true},{"key":"group_product","value":"MLID_WDP","description":"group_product is required when category_code or product_code is not provided.","type":"text"},{"key":"product_code","value":"MLID_WDP-A1","description":"product_code is required when category_code or group_product is not provided.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 10:02:50 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"69734749e6997"},{"key":"X-Debug-Duration","value":"98"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=69734749e6997"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"recommended_price\": 30000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            }\n        ]\n    }\n}"}],"_postman_id":"b3f23f96-d0ce-42cd-85fa-7c12fbeb2a27"},{"name":"Get Best Products - WL","id":"61b15931-bdd1-48f7-9987-72f43205ea1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":"https://dev.g8-pay.com/v1/best-product/white-label?category_code=MLID","urlObject":{"path":["v1","best-product","white-label"],"host":["https://dev.g8-pay.com"],"query":[{"description":{"content":"<p>mandatory if group_product empty</p>\n","type":"text/plain"},"key":"category_code","value":"MLID"},{"disabled":true,"description":{"content":"<p>mandatory if category_code emtpy</p>\n","type":"text/plain"},"key":"group_product","value":"MLID_WDP"}],"variable":[]}},"response":[{"id":"7f9a1e9d-96ec-414b-9788-d2df198c0520","name":"SUCCESS - by Category WL","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/best-product/white-label?category_code=MLID","host":["https://dev.g8-pay.com"],"path":["v1","best-product","white-label"],"query":[{"key":"category_code","value":"MLID","description":"mandatory if group_product empty"},{"key":"group_product","value":"MLID_WDP","description":"mandatory if category_code emtpy","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 10:13:58 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"697349e64dd3c"},{"key":"X-Debug-Duration","value":"82"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=697349e64dd3c"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"recommended_price\": 30000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            },\n            {\n                \"product_code\": \"MLID_WDP_X2-A1\",\n                \"name\": \"Weekly Diamond Pass x2\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP_X2\",\n                \"price\": 54162,\n                \"recommended_price\": 60000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            }\n        ]\n    }\n}"},{"id":"f0383174-defd-493c-8e28-84ea2423c16b","name":"SUCCESS - by Group Product WL","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"api_key_dev","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Accept-Language","value":"id","type":"text"}],"url":{"raw":"https://dev.g8-pay.com/v1/best-product/white-label?group_product=MLID_WDP","host":["https://dev.g8-pay.com"],"path":["v1","best-product","white-label"],"query":[{"key":"category_code","value":"MLID","description":"mandatory if group_product empty","disabled":true},{"key":"group_product","value":"MLID_WDP","description":"mandatory if category_code emtpy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Host","value":"localhost:8080"},{"key":"Date","value":"Fri, 23 Jan 2026 10:28:02 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.26"},{"key":"Vary","value":"Accept-Language"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Debug-Tag","value":"69734d3262ce1"},{"key":"X-Debug-Duration","value":"90"},{"key":"X-Debug-Link","value":"/debug/default/view?tag=69734d3262ce1"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": \"00\",\n    \"message\": \"Berhasil\",\n    \"data\": {\n        \"products\": [\n            {\n                \"product_code\": \"MLID_WDP-A1\",\n                \"name\": \"Weekly Diamond Pass\",\n                \"provider_code\": \"A1\",\n                \"group_product\": \"MLID_WDP\",\n                \"price\": 27081,\n                \"recommended_price\": 30000,\n                \"process_time\": 0,\n                \"country_code\": \"id\",\n                \"status\": \"available\",\n                \"sort\": 0,\n                \"icon_url\": \"\",\n                \"subcategory_code\": \"WDP\"\n            }\n        ]\n    }\n}"}],"_postman_id":"61b15931-bdd1-48f7-9987-72f43205ea1a"}],"id":"c9e98bc3-086d-407a-9e64-3ce72ea6d932","_postman_id":"c9e98bc3-086d-407a-9e64-3ce72ea6d932","description":""}],"event":[{"listen":"prerequest","script":{"id":"96d588d2-63db-4018-b9fc-d32614a81946","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"6b3416ca-c2df-4573-aaa9-f6dff982a839","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"api_key","value":"api_key_dev"},{"key":"secret_key","value":"ini_secret_key"},{"key":"base_url","value":"https://dev.g8-pay.com"},{"key":"category_code","value":"MLID"},{"key":"product_code","value":"MLID_WDP-A1"},{"key":"group_product","value":"MLID_WDP"},{"key":"accept_language","value":"id"},{"key":"signature_value","value":"4afee29d9d2dcb2e0a9c797110ef7b6006e486953f0307fa96f362af41e13cb5"},{"key":"user_id","value":"1000002"},{"key":"additional_id","value":"1540"},{"key":"partner_reference_id","value":"INV-001"},{"key":"trxid","value":"A1768899394000010000000004"}]}