{"info":{"_postman_id":"a83bedd8-836e-49c3-92ea-bdf6a88af496","name":"VCGamers Seller Open API","description":"<html><head></head><body><p>Dear <em>valued partners</em>, we are excited to announce our new feature VCGamers Seller API, marking a significant upgrade to our current Open API. With the introduction of this advanced API, we offer <strong>enhanced Seller connectivity</strong>, ensuring seamless and secure communication between our platform and your systems.</p>\n<p>This improvement will facilitate faster data exchange, streamline processes, and ultimately enhance the overall experience for both our partners and their customers. We firmly believe that this <strong>Seller Integration</strong> will greatly contribute to the success and growth of our partnership ecosystem!</p>\n<h1 id=\"url\">URL</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Type</strong></th>\n<th><strong>URL</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Development</td>\n<td><code>https://apis.vcg.my.id</code></td>\n</tr>\n<tr>\n<td>Production</td>\n<td><code>https://apis.vcgamers.com</code></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"changelogs\">Changelogs</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Release Date</strong></th>\n<th><strong>Changelogs</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>27 March 2026</td>\n<td>Separate rate limit for order processing endpoints (300 RPM).  <br>  <br>Add endpoint-specific error codes:  <br>ERR_PRICE_LIMIT  <br>ERR_POLLING_LIMIT  <br>ERR_ORDER_LIMIT  <br>ERR_RATE_LIMIT</td>\n</tr>\n<tr>\n<td>28 August 2024</td>\n<td>Add transaction flow guide  <br>  <br>Add Webhook / Callback type</td>\n</tr>\n<tr>\n<td>25 March 2024</td>\n<td>First Release</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"http-codes\">HTTP Codes</h1>\n<ul>\n<li><p>200 OK</p>\n</li>\n<li><p>400 Bad Request</p>\n</li>\n<li><p>404 Not Found</p>\n</li>\n<li><p>429 Too Many Requests</p>\n</li>\n<li><p>500 Internal Server Error</p>\n</li>\n</ul>\n<h1 id=\"status-codes\">Status Codes</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>00</td>\n<td>OK / Success</td>\n</tr>\n<tr>\n<td>41</td>\n<td>Invalid Request</td>\n</tr>\n<tr>\n<td>43</td>\n<td>Forbidden Request</td>\n</tr>\n<tr>\n<td>44</td>\n<td>Not Found</td>\n</tr>\n<tr>\n<td>45</td>\n<td>Invalid Token</td>\n</tr>\n<tr>\n<td>46</td>\n<td>Invalid Signature</td>\n</tr>\n<tr>\n<td>47</td>\n<td>Invalid Timestamp</td>\n</tr>\n<tr>\n<td>48</td>\n<td>Invalid VIP Request</td>\n</tr>\n<tr>\n<td>50</td>\n<td>Server Error</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"authorization\">Authorization</h1>\n<p>Prerequisites :</p>\n<ol>\n<li><p>Whitelisted IP Address</p>\n</li>\n<li><p>Your <strong>API Access Key</strong> for Authorization using Bearer Token</p>\n</li>\n<li><p>Your <strong>Secret Key</strong> for signature generate algorithm</p>\n</li>\n</ol>\n<h1 id=\"signature-algorithm\">Signature Algorithm</h1>\n<p><strong>VCGamers Seller API</strong> verifies the identity of each API request, and the server will also verify whether the call parameters are valid. Therefore, each HTTP request must contain the signature information. The requests with invalid signature will be rejected.</p>\n<p>The process of generating the signature is as follows :</p>\n<ol>\n<li>Get your <strong>secret key</strong> and <strong>token</strong> in your Seller Portal &gt; VIP Seller &gt; API Integration &gt; Access Key</li>\n</ol>\n<blockquote>\n<p>if you don't have an access token yet, you can generate one. Each seller can only have a maximum of 2 access tokens </p>\n</blockquote>\n<ol>\n<li><p>Concatenate this parameter into a string</p>\n<ol>\n<li><p>endpoint path ( with leading <code>/</code> )</p>\n</li>\n<li><p>access key</p>\n</li>\n<li><p>timestamp ( format: <code>YYYYMMDDHHmm</code>, example: 202303241520 )</p>\n</li>\n</ol>\n</li>\n</ol>\n<blockquote>\n<p>for example:<br><code>/rest/profile/get+{access_key}+{YYYYMMDDHHmm}</code> </p>\n</blockquote>\n<ol>\n<li><p>Encode the concatenated string in UTF-8 format and make a digest by the signature algorithm (using <strong>HMAC_SHA512</strong>). For example :<br> <code>hmac_sha512({yoursecret}+{parameter})</code></p>\n</li>\n<li><p>Convert the digest to hexadecimal format. For example :<br> <code>hex(\"helloworld\".getBytes(\"utf-8\")) = \"68656C6C6F776F726C64\"</code></p>\n</li>\n<li><p>Encode hexadecimal value into <strong>Base64</strong>. For example :<br> <code>base_64(\"68656C6C6F776F726C64\")</code></p>\n</li>\n<li><p>Finally, put Base64 encoded signature into query parameter : <strong>sign</strong></p>\n</li>\n</ol>\n<h2 id=\"signing-example\">Signing Example</h2>\n<blockquote>\n<p>API documentation emphasizes the importance of cryptography, <em>which refers to cryptographic techniques</em>, <strong>not currency</strong>. It utilizes hashing to ensure data integrity and verification, and encryption to protect sensitive information. Authorized parties can decrypt the ciphertext to access the original data. By incorporating these cryptographic techniques, our API aims to maintain data security and user trust. </p>\n</blockquote>\n<p>PHP</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">$path=\"/rest/profile/get\"\n$secret = \"YourSecretKey\";\n$access = \"YourAccessKey\";\n$t=time();\n$timestamp = date(\"YmdHis\", $t);\n$str = $path.$access.$timestamp;\n$hmac = hash_hmac(\"sha512\", $str, $secret, false);\n$signature = base64_encode($hmac);\n\n</code></pre>\n<p>NodeJS</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const CryptoJS = require(\"crypto-js\");\nconst path = \"/rest/profile/get\";\nconst secret = \"YourSecretKey\";  \nconst access = \"YourAccessKey\";\nconst timestamp = new Date();\nconst str = `${path}${access}${timestamp}`;\nconst hmac = CryptoJS.HmacSHA512(str, secret).toString();\nconst signature = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(hmac));\n\n</code></pre>\n<p>Go</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-go\">package main\nimport (\n    \"crypto/hmac\"\n    \"crypto/sha512\"\n    \"encoding/hex\"\n    \"encoding/base64\"\n    \"fmt\"\n    \"time\"\n)\nfunc main() {\n    path := \"/rest/profile/get\"\n    secret := \"YourSecretKey\"\n    access := \"YourAccessKey\"\n    timestamp := time.Now().Format(\"200601021504\")\n    data := fmt.Sprintf(\"%s%s%s\", path, access, timestamp)\n    // Create a new HMAC by defining the hash type and the key (as byte array)\n    h := hmac.New(sha512.New, []byte(secret))\n    // Write Data to it\n    h.Write([]byte(data))\n    // Get result and encode as hexadecimal string\n    hashSign := hex.EncodeToString(h.Sum(nil))\n    // convert hash result into base64\n    signature := base64.StdEncoding.EncodeToString([]byte(hashSign))\n}\n\n</code></pre>\n<h1 id=\"transaction-flow\">Transaction Flow</h1>\n<img src=\"https://content.pstmn.io/e4fafbb7-c3e4-4da7-8571-622eda3044b2/VHJhbnNhY3Rpb24gRmxvdy5kcmF3aW8ucG5n\">\n\n<h1 id=\"webhook-setup\">Webhook Setup</h1>\n<p>Currently we support 7 types of webhooks</p>\n<ul>\n<li><p><strong>Withdrawal</strong><br>  Triggered whenever withdrawal request has been requested / updated</p>\n</li>\n<li><p><strong>Transaction</strong><br>  Triggered whenever there are new transaction</p>\n</li>\n<li><p><strong>Stock</strong><br>  Triggered whenever products stock has updated</p>\n</li>\n<li><p><strong>Promotion</strong><br>  Triggered whenever there are new upcoming promotions</p>\n</li>\n<li><p><strong>Event</strong><br>  Triggered whenever there are new upcoming VCGamers events</p>\n</li>\n<li><p><strong>Campaign</strong><br>  Triggered whenever there are new upcoming campaign</p>\n</li>\n<li><p><strong>Feature</strong><br>  Tiggered whenever there are updates on your Kilat / Instant / VIP activation status</p>\n</li>\n</ul>\n<h1 id=\"rate-limit\">Rate Limit</h1>\n<p>For system security purposes, we apply API rate limiter per user IP address with the following limits:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint Category</th>\n<th>Limit</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order Processing:  <br><code>/rest/transaction/process</code>  <br><code>/rest/transaction/cancel</code></td>\n<td><strong>300 requests / 60 seconds</strong></td>\n</tr>\n<tr>\n<td>All other endpoints</td>\n<td><strong>200 requests / 60 seconds</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>When the rate limit is exceeded, the API returns HTTP <code>429 Too Many Requests</code> with endpoint-specific error codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Trigger Endpoints</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ERR_PRICE_LIMIT</td>\n<td><code>/rest/product/price-update</code>, <code>/rest/product/stock-update</code></td>\n<td>Batas update harga tercapai.</td>\n</tr>\n<tr>\n<td>ERR_POLLING_LIMIT</td>\n<td><code>/rest/transaction/all</code>, <code>/rest/transaction/get</code></td>\n<td>Batas frekuensi cek transaksi tercapai. Gunakan Webhook untuk efisiensi.</td>\n</tr>\n<tr>\n<td>ERR_ORDER_LIMIT</td>\n<td><code>/rest/transaction/process</code>, <code>/rest/transaction/cancel</code></td>\n<td>Batas kirim pesanan tercapai. Silakan coba lagi dalam beberapa menit.</td>\n</tr>\n<tr>\n<td>ERR_RATE_LIMIT</td>\n<td>All other endpoints</td>\n<td>Batas request tercapai. Silakan coba lagi nanti.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example error response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 429,\n    \"status\": \"ERROR\",\n    \"error_code\": \"ERR_PRICE_LIMIT\",\n    \"message\": \"Batas update harga tercapai.\"\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"URL","slug":"url"},{"content":"Changelogs","slug":"changelogs"},{"content":"HTTP Codes","slug":"http-codes"},{"content":"Status Codes","slug":"status-codes"},{"content":"Authorization","slug":"authorization"},{"content":"Signature Algorithm","slug":"signature-algorithm"},{"content":"Transaction Flow","slug":"transaction-flow"},{"content":"Webhook Setup","slug":"webhook-setup"},{"content":"Rate Limit","slug":"rate-limit"}],"owner":"28289164","collectionId":"a83bedd8-836e-49c3-92ea-bdf6a88af496","publishedId":"2s9YJjTKWG","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-10-12T05:07:03.000Z"},"item":[{"name":"Profile","item":[{"name":"GetVIPStatus","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"006f115b-26b9-452c-8af3-68b926b457f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/feature/vip-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","feature","vip-status"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"066f26ad-9e40-43e2-9125-0aff2be9a93b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/feature/vip-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","feature","vip-status"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Oct 2023 04:28:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"893"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"seller_has_vip\": true,\n        \"request_date\": \"2023-08-09T01:01:34.695379Z\",\n        \"status\": \"APPROVED\",\n        \"approved_date\": \"2023-08-26T09:48:27.177941Z\",\n        \"reject_date\": null,\n        \"reject_reason\": \"\",\n        \"deactivate_date\": null,\n        \"deactivate_reason\": \"\",\n        \"requirement\": {\n            \"phone_verified\": true,\n            \"email_verified\": true,\n            \"account_active_for_required_time\": true,\n            \"bank_valid\": true,\n            \"minimum_order_completed\": true,\n            \"minimum_rating_achieved\": true,\n            \"minimum_sla\": true\n        },\n        \"requirement_text\": [\n            {\n                \"text\": \"Verifikasi No. Ponsel\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Minimum Penjualan Rp.10.000.000\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Verifikasi Email\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Rating Toko di atas 4,5\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Akun VCGamers aktif minimum 60 Hari\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Rata-rata kecepatan kirim < 10 menit\",\n                \"active\": true\n            },\n            {\n                \"text\": \"Wajib menggunakan rekening bank untuk penarikan saldo toko\",\n                \"active\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"006f115b-26b9-452c-8af3-68b926b457f8"},{"name":"GetKilatStatus","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"a11878e2-12aa-48c0-935f-a541edbd181e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/feature/kilat-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","feature","kilat-status"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"a0446141-7004-44de-8cb7-c3c5f53e9317","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/feature/kilat-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","feature","kilat-status"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Oct 2023 04:28:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"306"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"43"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_transaction\": 50,\n        \"total_success_transaction\": 50,\n        \"total_rate_transaction\": 100,\n        \"seller_has_kilat\": true,\n        \"request_status\": \"APPROVED\",\n        \"request_date\": \"2023-08-26T09:03:02.740933Z\",\n        \"approved_date\": \"2023-08-30T04:00:54Z\",\n        \"reject_date\": null,\n        \"reject_reason\": \"\"\n    }\n}"}],"_postman_id":"a11878e2-12aa-48c0-935f-a541edbd181e"},{"name":"GetInstantStatus","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"7205465c-12da-43c7-9583-c491bc064f21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/feature/instant-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","feature","instant-status"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"16ef8065-09e8-4360-aef4-82ec1b570ebe","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/feature/instant-status?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","feature","instant-status"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Oct 2023 04:28:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"308"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"26"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_transaction\": 50,\n        \"total_success_transaction\": 50,\n        \"total_rate_transaction\": 100,\n        \"seller_has_instant\": true,\n        \"request_status\": \"APPROVED\",\n        \"request_date\": \"2023-08-26T09:05:04.666125Z\",\n        \"approved_date\": \"2023-08-30T04:00:14Z\",\n        \"reject_date\": null,\n        \"reject_reason\": \"\"\n    }\n}"}],"_postman_id":"7205465c-12da-43c7-9583-c491bc064f21"},{"name":"GetProfile","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"167f554a-63c4-414f-910e-7eacc529cd81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/profile/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","profile","get"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"6f676780-5915-43bf-8226-c00edc73d622","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/profile/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","profile","get"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Oct 2023 04:29:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1952"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"id\": \"fe1a8534-4e69-420f-8f05-d6805eadeca7\",\n        \"user_id\": \"6afbec70-d6d5-46ec-aa95-ce740f072aee\",\n        \"seller_name\": \"Store\",\n        \"seller_url\": \"store\",\n        \"seller_photo\": {\n            \"object_key\": \"seller/assets/20230927153229-20230916053740-cropped-image.jpg\",\n            \"object_url\": \"https://cdn.vcgamers.io/seller/assets/20230927153229-20230916053740-cropped-image.jpg\"\n        },\n        \"seller_cover_photo\": {\n            \"object_key\": \"seller/assets/20231010133649-default-banner-cover-fanpage.png\",\n            \"object_url\": \"https://cdn.vcgamers.io/seller/assets/20231010133649-default-banner-cover-fanpage.png\"\n        },\n        \"seller_description\": \"Deskripsi\",\n        \"seller_address\": \"\",\n        \"seller_has_instant\": true,\n        \"seller_has_kilat\": true,\n        \"seller_has_vip\": true,\n        \"phone\": \"021\",\n        \"email\": \"support@vcgamers.com\",\n        \"seller_join_date\": \"2023-06-01T08:26:58Z\",\n        \"rating\": 5,\n        \"total_transaction\": 50,\n        \"total_success_transaction\": 50,\n        \"total_failed_transaction\": 0,\n        \"average_sla\": 0,\n        \"total_visitor\": 0,\n        \"status\": 2,\n        \"seller_bank\": {\n            \"bank_name\": \"BCA\",\n            \"bank_account_number\": \"123456789\",\n            \"bank_account_name\": \"VCGamers\"\n        },\n        \"is_closed\": false,\n        \"seller_can_change_name\": false,\n        \"operational_hours\": [\n            {\n                \"weekday\": 0,\n                \"is_always_open\": true,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"23:59:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            },\n            {\n                \"weekday\": 1,\n                \"is_always_open\": true,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"23:59:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            },\n            {\n                \"weekday\": 2,\n                \"is_always_open\": false,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"23:59:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            },\n            {\n                \"weekday\": 3,\n                \"is_always_open\": true,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"23:59:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            },\n            {\n                \"weekday\": 4,\n                \"is_always_open\": false,\n                \"hour_start\": \"09:00:00\",\n                \"hour_finish\": \"22:35:00\",\n                \"is_active\": true,\n                \"is_today\": true\n            },\n            {\n                \"weekday\": 5,\n                \"is_always_open\": true,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"00:00:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            },\n            {\n                \"weekday\": 6,\n                \"is_always_open\": true,\n                \"hour_start\": \"00:00:00\",\n                \"hour_finish\": \"23:59:00\",\n                \"is_active\": true,\n                \"is_today\": false\n            }\n        ]\n    }\n}"}],"_postman_id":"167f554a-63c4-414f-910e-7eacc529cd81"},{"name":"UpdateProfile","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"e37281ae-672f-4048-9099-3aef37800424","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"seller_name\": \"Fajar Test\",\r\n    \"seller_description\": \"Deskripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/profile/update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","profile","update"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"e3a250f9-690e-454b-aea3-a3a8559e66ef","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"seller_name\": \"Staging Store\",\r\n    \"seller_description\": \"Deskripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/profile/update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","profile","update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Oct 2023 04:30:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"40"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"40"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"}],"_postman_id":"e37281ae-672f-4048-9099-3aef37800424"},{"name":"UpdateOperationalHour","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"0457be66-8ddc-47c8-9dab-a9d56fb9b24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"weekday\": 0,\r\n    \"is_always_open\": false,\r\n    \"hour_start\": \"13:00:00\",\r\n    \"hour_finish\": \"20:00:00\",\r\n    \"is_active\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/profile/update-operational-hour?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","description":"<h3 id=\"parameter-description\">Parameter Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong><code>weekday</code></strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Sunday</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Monday</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Tuesday</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Wednesday</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Thursday</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Friday</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Saturday</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["rest","profile","update-operational-hour"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"e89fb350-ae36-4d9a-b0da-70cc0b62b79c","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"weekday\": 0,\r\n    \"is_always_open\": false,\r\n    \"hour_start\": \"13:00:00\",\r\n    \"hour_finish\": \"20:00:00\",\r\n    \"is_active\": true\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/profile/update-operational-hour?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","profile","update-operational-hour"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"}],"_postman_id":"0457be66-8ddc-47c8-9dab-a9d56fb9b24c"}],"id":"e1e87d95-5d30-4162-82ee-73bea187c380","_postman_id":"e1e87d95-5d30-4162-82ee-73bea187c380","description":""},{"name":"Dashboard","item":[{"name":"GetDashboardGraphAmount","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"7677d557-ce33-42cb-87f3-853a4391b0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/graph-success-qty?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","graph-success-qty"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"b23a05ce-fdbe-4d6d-8a38-0f2ede22d347","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/graph-success-qty?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","graph-success-qty"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:06:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"117"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"label\": [\n            \"Mei\",\n            \"Jun\",\n            \"Jul\",\n            \"Ags\",\n            \"Sep\",\n            \"Okt\"\n        ],\n        \"data\": [\n            0,\n            0,\n            0,\n            14,\n            7,\n            5\n        ]\n    }\n}"}],"_postman_id":"7677d557-ce33-42cb-87f3-853a4391b0ed"},{"name":"GetDashboardGraphPrice","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"8ee2303c-2d1a-4bc5-98c8-aa5caf1e8ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/graph-success-price?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","graph-success-price"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"074b6248-4517-4a62-b813-3e0ece5f34e7","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/graph-success-price?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","graph-success-price"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:06:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"131"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"36"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"label\": [\n            \"Mei\",\n            \"Jun\",\n            \"Jul\",\n            \"Ags\",\n            \"Sep\",\n            \"Okt\"\n        ],\n        \"data\": [\n            0,\n            0,\n            0,\n            744200,\n            240000,\n            211000\n        ]\n    }\n}"}],"_postman_id":"8ee2303c-2d1a-4bc5-98c8-aa5caf1e8ce0"},{"name":"GetDashboardTotalSuccessQty","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"a1c358fe-2d94-476b-abda-a5a5153e9794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/total-success-qty?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","total-success-qty"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"8b91b9e1-2807-4f63-b307-2df3f32edae8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/total-success-qty?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","total-success-qty"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:06:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"88"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"14"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"current_value\": 28,\n        \"last_value_diff\": 0\n    }\n}"}],"_postman_id":"a1c358fe-2d94-476b-abda-a5a5153e9794"},{"name":"GetDashboardTotalSuccessPrice","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"6d768881-ae71-4575-a296-cc1207ae1acb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/total-success-price?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","total-success-price"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"092ead22-fa7d-4736-b31e-7c18fa53e251","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/total-success-price?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","total-success-price"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:07:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"93"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"116"},{"key":"X-Ratelimit-Reset","value":"5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"current_value\": 1225200,\n        \"last_value_diff\": 0\n    }\n}"}],"_postman_id":"6d768881-ae71-4575-a296-cc1207ae1acb"},{"name":"GetDashboardSellerPerformance","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"95a7a5de-b30a-4c48-8857-12a1d97f431f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/seller-performance?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","seller-performance"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"942406cb-82e3-4a23-97d2-52bdb540cede","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/seller-performance?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","seller-performance"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:07:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"219"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"rating\": 0,\n        \"rating_diff\": 0,\n        \"transaction_success_rate\": 100,\n        \"transaction_success_rate_diff\": 0,\n        \"average_sla\": 6,\n        \"average_sla_diff\": 0,\n        \"total_visitor\": 0,\n        \"total_visitor_diff\": 0\n    }\n}"}],"_postman_id":"95a7a5de-b30a-4c48-8857-12a1d97f431f"},{"name":"GetDashboardSummary","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"4f5d86c3-f2ab-43b7-b610-27da54039b21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/transaction-summary?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","transaction-summary"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"23c55d79-13ad-4b00-aab3-790d01877a89","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/transaction-summary?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","transaction-summary"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:07:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"122"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"49"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_pending\": 0,\n        \"total_sent\": 2,\n        \"total_success\": 50,\n        \"total_moderation\": 3\n    }\n}"}],"_postman_id":"4f5d86c3-f2ab-43b7-b610-27da54039b21"},{"name":"GetDashboardProductStatus","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"04b39ceb-1b40-423e-8c44-1b02f2c5cea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/dashboard/product-stat?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","dashboard","product-stat"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"ad53ac4f-ed3c-489d-984f-fbbf8b6be97c","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/dashboard/product-stat?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","dashboard","product-stat"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:07:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"127"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"40"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_active\": 35,\n        \"total_inactive\": 1,\n        \"total_stock_run_out\": 6,\n        \"total_review\": 0\n    }\n}"}],"_postman_id":"04b39ceb-1b40-423e-8c44-1b02f2c5cea9"}],"id":"0cab93e8-acbc-452c-acd0-64cb0edac317","_postman_id":"0cab93e8-acbc-452c-acd0-64cb0edac317","description":""},{"name":"Product","item":[{"name":"GetProductCategories","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"827e1400-8bcf-4beb-b914-719f7905b28a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/categories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","product","categories"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"cc722daf-d696-467d-a06b-f51c33d08fe8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/categories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","product","categories"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:07:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1864"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"116"},{"key":"X-Ratelimit-Reset","value":"30"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"id\": \"26ca5b54-f509-4a5c-ac00-0d41d0ff9c4f\",\n            \"name\": \"Akun\",\n            \"is_kilat\": true,\n            \"is_instant\": false,\n            \"is_voucher\": false\n        },\n        {\n            \"id\": \"750241c7-85b4-457d-849e-71d27ed4ccad\",\n            \"name\": \"TopUp\",\n            \"is_kilat\": true,\n            \"is_instant\": false,\n            \"is_voucher\": false\n        },\n        {\n            \"id\": \"ba6eb9a9-4d0f-409c-9300-1f79499e6c46\",\n            \"name\": \"Voucher\",\n            \"is_kilat\": true,\n            \"is_instant\": true,\n            \"is_voucher\": true\n        },\n        {\n            \"id\": \"085483ee-20fa-43df-9137-a0544f1cd46b\",\n            \"name\": \"Item & Skin ( OLD )\",\n            \"is_kilat\": true,\n            \"is_instant\": false,\n            \"is_voucher\": false\n        }\n    ]\n}"}],"_postman_id":"827e1400-8bcf-4beb-b914-719f7905b28a"},{"name":"GetProductBrands","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"3e192ffc-4d6c-447b-881d-dee0c1b9ab7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/brands?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&category_id=750241c7-85b4-457d-849e-71d27ed4ccad","urlObject":{"path":["rest","product","brands"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"category_id","value":"750241c7-85b4-457d-849e-71d27ed4ccad"}],"variable":[]}},"response":[{"id":"c10d9d0b-d50c-41f6-8216-867a862e2bbe","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/brands?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&category_id=750241c7-85b4-457d-849e-71d27ed4ccad","host":["https://apis.vcgamers.com"],"path":["rest","product","brands"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"category_id","value":"750241c7-85b4-457d-849e-71d27ed4ccad"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:10:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"44277"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"id\": \"049fcfef-fe31-4eea-95e8-7ee00f074641\",\n            \"type\": \"Games\",\n            \"name\": \"Ragnarok Eternal Love\",\n            \"slug\": \"ragnarok-eternal-love-7ee00f074641\",\n            \"description\": \"Temukan segala kebutuhan \\\"Game Ragnarok Eternal Love\\\" kamu di sini, dapatkan harga termurah, layanan terpercaya, serta transaksi yang nyaman dan mudah di VCGamers Marketplace. Bayar seluruh transaksi produk kamu, dengan berbagai pilihan bank, e-wallet, pembayaran instan VC Coin, dan lainnya.\\r\\n\\r\\nNikmati jual beli produk \\\"Game Ragnarok Eternal Love\\\" murah terlengkap, 24/7 tanpa batasan waktu yang aman dengan VC Protection. Buka toko dan belanja semua produk games atau produk digital lainnya hanya di vcgamers.com, all about games.\",\n            \"is_active\": true\n        },\n        {\n            \"id\": \"0a9e4294-2975-4fef-b937-d18f76f627bd\",\n            \"type\": \"Games\",\n            \"name\": \"Genshin Impact\",\n            \"slug\": \"genshin-impact-d18f76f627bd\",\n            \"description\": \"Genshin Impact adalah game action genre RPG yang dikembangkan oleh miHoYo dan resmi rilis pada akhir september tahun lalu. Disebut sebagai IP game lanjutan dimana MiHoYo sebelumnya mempopulerkan game IP pertama mereka yakni Honkai Impact 3 dengan genre yang sama.<br />\\r\\nMeskipun tergolong game berat, Genshin Impact mampu menduduki game RPG terpopuler di google playstore. Seperti yang kita tahu bahwa game tersebut memiliki grafik yang menakjubkan dan alur cerita yang bagus.Hanya saja beberapa event skin atau character baru yang diperlukan top up untuk gacha agar bisa mendapatkannya. Nah, VCGamers solusinya!<br />\\r\\nVCGamers menyediakan berbagai kebutuhan top up game termasuk Genesis Crystals Genshin Impact. Kamu juga bisa membeli akun genshin impact agar kamu dapat keuntungan lebih besar dan langsung mempunyai level yang tinggi. <br />\\r\\n<br />\\r\\nGenshin juga menyediakan welkin moon untuk kamu yang ingin mendapatkan Genesis Crystal sekaligus juga dengan Primogem. Jika kamu membeli Welkin Moon di VCGamers maka kamu akan langsung mendapatkan 300 Genesis Crystal dan juga akan mendapatkan 30 primogems setiap harinya dalam jangka waktu 1 Bulan dengan total sebanyak 2700 Primogems. Beli Welkin Moon di VCGamers dan jangan sampai ketinggalan untuk Gacha karakter favorit kamu! Seller VCGamers Jual Welkin Moon dengan harga yang sangat terjangkau sehingga tidak menguras kantong kamu.<br />\\r\\n<br />\\r\\nBuruan Beli Genesis Crystal dan Dapatkan Yelan Genshin Impact Segera. <br />\\r\\n<br />\\r\\nDi online store ini kamu bisa memilih jumlah Genesis Crystals, Welkin Moon, atau akun genshin impact dengan metode pembayaran sesuai keinginanmu. Beberapa metode pembayaran yang bisa digunakan saat ini yaitu e-wallet gopay, ovo, shopeepay, bank BCA, BNI, Mandiri. Jika tidak memiliki m-banking atau e-wallet, kamu bisa membayarnya melalui Alfamart dan Alfamidi terdekat. Yuk, top up sekarang dan nikmati berbagai promo dan kemudahan transaksi di VCGamers.\",\n            \"is_active\": true\n        },\n        {\n            \"id\": \"1256ffdb-690c-48e5-97c7-392771401417\",\n            \"type\": \"Games\",\n            \"name\": \"Blue Archive\",\n            \"slug\": \"blue-archive-392771401417\",\n            \"description\": \"\",\n            \"is_active\": true\n        }\n    ]\n}"}],"_postman_id":"3e192ffc-4d6c-447b-881d-dee0c1b9ab7e"},{"name":"GetProductGroups","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"0f60fd6f-d9ce-4de0-8e90-03991a40c028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/groups?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&category_id=d6acad2f-22c4-4d60-881b-b2b54b068472&brand_id=7319afce-7c66-4799-97cf-d686c16c38f4","urlObject":{"path":["rest","product","groups"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"category_id","value":"d6acad2f-22c4-4d60-881b-b2b54b068472"},{"key":"brand_id","value":"7319afce-7c66-4799-97cf-d686c16c38f4"}],"variable":[]}},"response":[{"id":"adb38e82-c3ba-4a5b-b04c-9edb50433b68","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/groups?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&category_id=d6acad2f-22c4-4d60-881b-b2b54b068472&brand_id=7319afce-7c66-4799-97cf-d686c16c38f4","host":["https://apis.vcgamers.com"],"path":["rest","product","groups"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"category_id","value":"d6acad2f-22c4-4d60-881b-b2b54b068472"},{"key":"brand_id","value":"7319afce-7c66-4799-97cf-d686c16c38f4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:11:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"id\": \"6717cae2-c47c-4550-856e-d71d93b9f554\",\n            \"name\": \"Server ASIA\",\n            \"is_active\": true\n        },\n        {\n            \"id\": \"6717cae2-c47c-4550-856e-d71d93b9f55f\",\n            \"name\": \"Server USA\",\n            \"is_active\": true\n        }\n    ]\n}"}],"_postman_id":"0f60fd6f-d9ce-4de0-8e90-03991a40c028"},{"name":"GetProductVariationMasters","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"546148a4-d9b5-4aef-bb6c-0e6b14047d12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/variation-masters?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&group_id=6717cae2-c47c-4550-856e-d71d93b9f554","urlObject":{"path":["rest","product","variation-masters"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"group_id","value":"6717cae2-c47c-4550-856e-d71d93b9f554"}],"variable":[]}},"response":[{"id":"9223cf2f-421f-43e3-9363-38df6437d328","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/variation-masters?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&group_id=6717cae2-c47c-4550-856e-d71d93b9f554","host":["https://apis.vcgamers.com"],"path":["rest","product","variation-masters"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"group_id","value":"6717cae2-c47c-4550-856e-d71d93b9f554"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:12:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"340"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"id\": \"03c69b8e-56bf-42d0-9d09-8c71cd01b877\",\n            \"name\": \"20 Crystal\",\n            \"price\": 15000,\n            \"is_active\": true\n        },\n        {\n            \"id\": \"e48ada91-5ee4-41be-8a6f-2a347a01cdd4\",\n            \"name\": \"30 Crystal\",\n            \"price\": 25000,\n            \"is_active\": true\n        },\n        {\n            \"id\": \"f0112ec6-ba37-489e-a1f5-77c8b83e53f4\",\n            \"name\": \"40 Crystal\",\n            \"price\": 35000,\n            \"is_active\": true\n        }\n    ]\n}"}],"_postman_id":"546148a4-d9b5-4aef-bb6c-0e6b14047d12"},{"name":"ListProduct","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"db85e85a-fd0e-4e51-9e27-bb2ae706779b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&next_cursor=&prev_cursor=&limit=&search=","urlObject":{"path":["rest","product","all"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":""},{"key":"prev_cursor","value":""},{"key":"limit","value":""},{"key":"search","value":""}],"variable":[]}},"response":[{"id":"ca2658bc-16da-4b57-b7fa-815e5df210f3","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&next_cursor=&prev_cursor=&limit=&search=","host":["https://apis.vcgamers.com"],"path":["rest","product","all"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":""},{"key":"prev_cursor","value":""},{"key":"limit","value":""},{"key":"search","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:13:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4271"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"final_price\": 103000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015093913-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": true,\n                \"is_kilat_switchable\": true,\n                \"name\": \"IDR 90.000\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"af901268-2659-4a31-8037-c6eb82625828\",\n                \"slug\": \"idr-90-000-1acea6a7\",\n                \"stock\": 367,\n                \"variation_id\": \"1acea6a7-c55d-4503-a87a-1f3be3e8f640\"\n            },\n            {\n                \"final_price\": 51000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015093913-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": true,\n                \"is_kilat_switchable\": true,\n                \"name\": \"IDR 45.000\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"af901268-2659-4a31-8037-c6eb82625828\",\n                \"slug\": \"idr-45-000-8010faa2\",\n                \"stock\": 235,\n                \"variation_id\": \"8010faa2-c8dc-4878-a7e6-5a42d867a890\"\n            },\n            {\n                \"final_price\": 7000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015093913-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"IDR 6.000\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"af901268-2659-4a31-8037-c6eb82625828\",\n                \"slug\": \"idr-6-000-1843bbbd\",\n                \"stock\": 999,\n                \"variation_id\": \"1843bbbd-9073-440b-ac4e-2a17270c82b3\"\n            },\n            {\n                \"final_price\": 12000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015085502-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"44 Diamonds\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"8f263143-ddcf-4208-a95a-2354e3f88aaf\",\n                \"slug\": \"44-diamonds-c821298a\",\n                \"stock\": 460,\n                \"variation_id\": \"c821298a-c160-4f0d-a040-5d7503bb64ca\"\n            },\n            {\n                \"final_price\": 10000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015085502-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"36 Diamonds\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"8f263143-ddcf-4208-a95a-2354e3f88aaf\",\n                \"slug\": \"36-diamonds-e9a3642e\",\n                \"stock\": 999,\n                \"variation_id\": \"e9a3642e-5f1d-4a79-9451-c392cadac04e\"\n            },\n            {\n                \"final_price\": 10000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231017051604-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"IDR 10.000\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"c0d642f5-630d-4601-b9d5-500436de79d2\",\n                \"slug\": \"idr-10-000-e90dca98\",\n                \"stock\": 147,\n                \"variation_id\": \"e90dca98-5948-479a-82ef-017bac4a8195\"\n            },\n            {\n                \"final_price\": 5000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231017051604-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"IDR 5.000\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"c0d642f5-630d-4601-b9d5-500436de79d2\",\n                \"slug\": \"idr-5-000-d6dd3c23\",\n                \"stock\": 500,\n                \"variation_id\": \"d6dd3c23-d5ec-494f-9ca4-6775b9c15f82\"\n            },\n            {\n                \"final_price\": 15000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231006044918-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": true,\n                \"is_kilat_switchable\": true,\n                \"name\": \"63 UC\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"995cd415-a5c7-448d-a3de-58234de1f0d7\",\n                \"slug\": \"63-uc-45fa183a\",\n                \"stock\": 34,\n                \"variation_id\": \"45fa183a-0f6e-4ebd-b099-c50d326bd50d\"\n            },\n            {\n                \"final_price\": 10000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231006044918-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"50 UC\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"995cd415-a5c7-448d-a3de-58234de1f0d7\",\n                \"slug\": \"50-uc-3b2892d5\",\n                \"stock\": 305,\n                \"variation_id\": \"3b2892d5-da96-4f7c-877c-5d741b322394\"\n            },\n            {\n                \"final_price\": 7000,\n                \"image_url\": \"https://cdn.vcgamers.io/seller/assets/20231006044918-cropped-image.jpg\",\n                \"is_active\": true,\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"is_kilat_switchable\": true,\n                \"name\": \"35 UC\",\n                \"next_activate_kilat\": null,\n                \"next_update_price\": null,\n                \"product_id\": \"995cd415-a5c7-448d-a3de-58234de1f0d7\",\n                \"slug\": \"35-uc-59129eb7\",\n                \"stock\": 197,\n                \"variation_id\": \"59129eb7-f33c-475a-a3ca-9dcfce63b5f6\"\n            }\n        ],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"MjAyMy0wOS0yOSAxNjo0NDo0NS4wMTM1NDc2MDQ1OGIxYy00OGQ2LTRjNDctODUzZS05Y2U4NGY0YTAxODE=\",\n            \"current_records\": 10\n        }\n    }\n}"}],"_postman_id":"db85e85a-fd0e-4e51-9e27-bb2ae706779b"},{"name":"StockUpdate","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"e0ca1a0f-a80f-4ab9-818d-49f0d2fddf49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"stock\": 23\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/product/stock-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=7e2e65f1-17f9-4081-bedf-fdb1a01ae257","urlObject":{"path":["rest","product","stock-update"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"7e2e65f1-17f9-4081-bedf-fdb1a01ae257"}],"variable":[]}},"response":[{"id":"986a6cf4-537d-4703-a571-24604a259c00","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"stock\": 23\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/stock-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=7e2e65f1-17f9-4081-bedf-fdb1a01ae257","host":["https://apis.vcgamers.com"],"path":["rest","product","stock-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"7e2e65f1-17f9-4081-bedf-fdb1a01ae257"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:15:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"47"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"},{"id":"5edaa269-c50d-495d-ba9f-5ee2bc9a784c","name":"Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"stock\": 23\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/stock-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=7e2e65f1-17f9-4081-bedf-fdb1a01ae257","host":["https://apis.vcgamers.com"],"path":["rest","product","stock-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"7e2e65f1-17f9-4081-bedf-fdb1a01ae257"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Oct 2023 14:15:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"47"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"44\",\n    \"message\": \"data not found\"\n}"}],"_postman_id":"e0ca1a0f-a80f-4ab9-818d-49f0d2fddf49"},{"name":"PriceUpdate","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"c7708d10-9d21-4b3d-9390-7619f94b67c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"price\": 25500\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/product/price-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=9549fd99-31c4-4b62-ace9-f4326f6f5674","urlObject":{"path":["rest","product","price-update"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"9549fd99-31c4-4b62-ace9-f4326f6f5674"}],"variable":[]}},"response":[{"id":"f20e1e79-3e80-4d12-93ad-efdf4548c1cd","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"price\": 25000\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/price-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=9549fd99-31c4-4b62-ace9-f4326f6f5674","host":["https://apis.vcgamers.com"],"path":["rest","product","price-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"9549fd99-31c4-4b62-ace9-f4326f6f5674"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 04:58:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"40"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"},{"id":"932dc4b8-c54b-441e-85c5-33def8f59942","name":"Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"price\": 25000\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/price-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=f4bdcdfc-a310-4832-8ec9-b75874255307","host":["https://apis.vcgamers.com"],"path":["rest","product","price-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"f4bdcdfc-a310-4832-8ec9-b75874255307"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 04:57:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"116"},{"key":"X-Ratelimit-Reset","value":"25"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"44\",\n    \"message\": \"varian tidak ditemukan\"\n}"},{"id":"26a7fd81-14fa-45ad-8513-3c30b8337438","name":"Forbidden","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"price\": 25500\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/price-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=9549fd99-31c4-4b62-ace9-f4326f6f5674","host":["https://apis.vcgamers.com"],"path":["rest","product","price-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"9549fd99-31c4-4b62-ace9-f4326f6f5674"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 04:58:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"102"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"45"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"43\",\n    \"message\": \"silahkan menunggu sampai 2024-02-21 12:58 untuk mengubah harga produk\"\n}"}],"_postman_id":"c7708d10-9d21-4b3d-9390-7619f94b67c2"},{"name":"AddVouchers","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"09f7c708-b227-4295-86b0-6676c882313d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"vouchers\": [\r\n        \"JSDHE92Q8847785\",\r\n        \"JSDHE92Q8847786\",\r\n        \"JSDHE92Q8847787\",\r\n        \"JSDHE92Q8847788\",\r\n        \"JSDHE92Q8847789\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/product/add-voucher?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=ce78dbeb-6c01-4774-bfe5-cd820b03ad16","urlObject":{"path":["rest","product","add-voucher"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"ce78dbeb-6c01-4774-bfe5-cd820b03ad16"}],"variable":[]}},"response":[{"id":"ef143dc0-6eb1-4862-9ef7-342c1f12e829","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"vouchers\": [\r\n        \"JSDHE92Q8847785\",\r\n        \"JSDHE92Q8847786\",\r\n        \"JSDHE92Q8847787\",\r\n        \"JSDHE92Q8847788\",\r\n        \"JSDHE92Q8847789\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/add-voucher?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=ce78dbeb-6c01-4774-bfe5-cd820b03ad16","host":["https://apis.vcgamers.com"],"path":["rest","product","add-voucher"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"ce78dbeb-6c01-4774-bfe5-cd820b03ad16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"}],"_postman_id":"09f7c708-b227-4295-86b0-6676c882313d"},{"name":"ListVouchers","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"e1ed663f-1ad2-43d7-b4fa-45d487668204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/product/vouchers?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=ce78dbeb-6c01-4774-bfe5-cd820b03ad16","urlObject":{"path":["rest","product","vouchers"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"ce78dbeb-6c01-4774-bfe5-cd820b03ad16"}],"variable":[]}},"response":[{"id":"b460492a-bdd8-4fc7-ad85-2b2eee28fad5","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/product/vouchers?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&variation_id=ce78dbeb-6c01-4774-bfe5-cd820b03ad16","host":["https://apis.vcgamers.com"],"path":["rest","product","vouchers"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"variation_id","value":"ce78dbeb-6c01-4774-bfe5-cd820b03ad16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:45:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"474"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"available\": 1,\n        \"vouchers\": [\n            {\n                \"id\": \"03a66d17-af40-4b7a-a73e-56193cba57d2\",\n                \"voucher_code\": \"PRIMARY1238784\",\n                \"status\": 2,\n                \"status_name\": \"Terjual\",\n                \"pulled_reason\": \"\"\n            },\n            {\n                \"id\": \"056d6d5e-c5bd-4209-b6b6-985f4b69cd33\",\n                \"voucher_code\": \"123888UU9123784\",\n                \"status\": 2,\n                \"status_name\": \"Terjual\",\n                \"pulled_reason\": \"\"\n            },\n            {\n                \"id\": \"19d2dd00-0b08-44ce-baf4-b189a1d3e071\",\n                \"voucher_code\": \"TESTVOUCHER123\",\n                \"status\": 1,\n                \"status_name\": \"Tersedia\",\n                \"pulled_reason\": \"\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e1ed663f-1ad2-43d7-b4fa-45d487668204"},{"name":"WithdrawVoucher","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"cec0c448-c267-446f-9526-e1acf294382c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pulled_reason\": \"Sudah terjual\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/product/withdraw-voucher?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&voucher_id=6d36cc9b-9a92-40b3-a6df-02a515a7adb5","urlObject":{"path":["rest","product","withdraw-voucher"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"voucher_id","value":"6d36cc9b-9a92-40b3-a6df-02a515a7adb5"}],"variable":[]}},"response":[{"id":"78b90cbc-bf18-41f1-98dc-2773620599ef","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pulled_reason\": \"Sudah terjual\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/withdraw-voucher?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&voucher_id=6d36cc9b-9a92-40b3-a6df-02a515a7adb5","host":["https://apis.vcgamers.com"],"path":["rest","product","withdraw-voucher"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"voucher_id","value":"6d36cc9b-9a92-40b3-a6df-02a515a7adb5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"},{"id":"0aca8d47-7e89-4782-b4d3-ba634d7770b0","name":"Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"pulled_reason\": \"Sudah terjual\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/withdraw-voucher?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&voucher_id=6d36cc9b-9a92-40b3-a6df-02a515a7adb5","host":["https://apis.vcgamers.com"],"path":["rest","product","withdraw-voucher"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"voucher_id","value":"6d36cc9b-9a92-40b3-a6df-02a515a7adb5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:45:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"42"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"38"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"44\",\n    \"message\": \"not found\"\n}"}],"_postman_id":"cec0c448-c267-446f-9526-e1acf294382c"},{"name":"BatchKilatSwitch","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"42085d51-49d9-4db7-b479-c09e0aa854c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"value\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/product/mass-kilat-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","product","mass-kilat-update"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"2503c49a-8789-4152-a416-72c2b0c670d4","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"value\": true\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/product/mass-kilat-update?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","product","mass-kilat-update"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 08:19:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"68"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_modified\": 5\n    }\n}"}],"_postman_id":"42085d51-49d9-4db7-b479-c09e0aa854c5"}],"id":"81a4c88f-4ad3-4e81-b13e-97cd008daf02","_postman_id":"81a4c88f-4ad3-4e81-b13e-97cd008daf02","description":""},{"name":"Transaction","item":[{"name":"ListTransaction","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"17129221-a812-4bec-a338-31a83d066314","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/transaction/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","transaction","all"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"disabled":true,"key":"next_cursor","value":""},{"disabled":true,"key":"prev_cursor","value":""},{"disabled":true,"key":"limit","value":""},{"disabled":true,"key":"search","value":""},{"disabled":true,"description":{"content":"<p>Format : YYY-MM-DD</p>\n","type":"text/plain"},"key":"date_start","value":""},{"disabled":true,"description":{"content":"<p>Format : YYY-MM-DD</p>\n","type":"text/plain"},"key":"date_end","value":null},{"disabled":true,"key":"status","value":""}],"variable":[]}},"response":[{"id":"987858b4-38cc-4203-b3c1-6cb2256bf974","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/transaction/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&next_cursor=&prev_cursor=&limit=&search=&date_start=&date_end=&status=","host":["https://apis.vcgamers.com"],"path":["rest","transaction","all"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":""},{"key":"prev_cursor","value":""},{"key":"limit","value":""},{"key":"search","value":""},{"key":"date_start","value":"","description":"Format : YYY-MM-DD"},{"key":"date_end","value":"","description":"Format : YYY-MM-DD"},{"key":"status","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Oct 2023 03:02:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4653"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"code\": \"TRX-1697685793-09CF5E1D-1111720F\",\n                \"id\": \"09cf5e1d-189e-4237-9ce0-6c7c10764650\",\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"member_name\": \"VCGamers User\",\n                \"notes\": \"\",\n                \"order_date\": \"2023-10-19T10:23:00+07:00\",\n                \"price\": 10000,\n                \"product_image_url\": \"https://cdn.vcgamers.io/seller/assets/20231017051604-cropped-image.jpg\",\n                \"product_name\": \"IDR 10.000\",\n                \"qty\": 3,\n                \"status\": 4,\n                \"status_name\": \"Selesai\",\n                \"transaction_detail_id\": \"1111720f-fe9a-4172-93bd-f175adff56da\"\n            },\n            {\n                \"code\": \"TRX-1697528527-1C6020C7-9CD5AE64\",\n                \"id\": \"1c6020c7-e820-4267-a2e2-779ca3464986\",\n                \"is_instant\": false,\n                \"is_kilat\": false,\n                \"member_name\": \"VCGamers User\",\n                \"notes\": \"\",\n                \"order_date\": \"2023-10-17T14:42:00+07:00\",\n                \"price\": 12000,\n                \"product_image_url\": \"https://cdn.vcgamers.io/seller/assets/20231015085502-cropped-image.jpg\",\n                \"product_name\": \"44 Diamonds\",\n                \"qty\": 1,\n                \"status\": 4,\n                \"status_name\": \"Selesai\",\n                \"transaction_detail_id\": \"9cd5ae64-ccff-45ed-abe1-1ccc2a10686e\"\n            }\n        ],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"MjAyMy0wOS0xMyAxNDowMTozOC42NDQ3MDYwYzUwNDQxYy1kMzYzLTRlNTYtOWQyYy05MjNmZWY0NzQ0YmI=\",\n            \"current_records\": 10\n        }\n    }\n}"}],"_postman_id":"17129221-a812-4bec-a338-31a83d066314"},{"name":"GetTransaction","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"213a2e64-b719-4fa3-8144-49ce6422e322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/transaction/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_id=7f8d5176-c78a-4f09-968d-f6e1dc3c1dde","urlObject":{"path":["rest","transaction","get"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_id","value":"7f8d5176-c78a-4f09-968d-f6e1dc3c1dde"}],"variable":[]}},"response":[{"id":"b96404e1-d6d6-49df-af99-0de9df769d2a","name":"Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/transaction/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_id=28f1171b-1754-4e3b-93c2-2a34db918868","host":["https://apis.vcgamers.com"],"path":["rest","transaction","get"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_id","value":"28f1171b-1754-4e3b-93c2-2a34db918868"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:48:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"42"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"44\",\n    \"message\": \"not found\"\n}"},{"id":"fa8daecd-b478-481f-b7a8-a597fcd812f0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/transaction/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_id=7f8d5176-c78a-4f09-968d-f6e1dc3c1dde","host":["https://apis.vcgamers.com"],"path":["rest","transaction","get"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_id","value":"7f8d5176-c78a-4f09-968d-f6e1dc3c1dde"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:48:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1380"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"37"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"id\": \"7f8d5176-c78a-4f09-968d-f6e1dc3c1dde\",\n        \"member\": {\n            \"id\": \"a4f386fb-731f-4187-b6d5-731007a6152b\",\n            \"name\": \"Rolas Rolas\"\n        },\n        \"code\": \"TRX-1704788356-7F8D5176\",\n        \"order_date\": \"2024-01-09T15:19:16+07:00\",\n        \"histories\": [\n            {\n                \"description\": \"Pesanan Dibatalkan\",\n                \"description_text\": \"Metal Slug : Awakening\",\n                \"code\": \"TRXOD-1704788356-7F8D5176-64AFB04E\",\n                \"timestamp\": \"2024-01-10T15:20:00+07:00\",\n                \"status\": 5\n            },\n            {\n                \"description\": \"Pembayaran diterima.\",\n                \"description_text\": \"Pesanan diteruskan ke Penjual (TRXOD-1704788356-7F8D5176-64AFB04E)\",\n                \"code\": \"TRXOD-1704788356-7F8D5176-64AFB04E\",\n                \"timestamp\": \"2024-01-09T15:19:17+07:00\",\n                \"status\": 2\n            }\n        ],\n        \"items\": [\n            {\n                \"id\": \"64afb04e-6b5f-41f8-90c9-3aa5778f80d5\",\n                \"code\": \"TRXOD-1704788356-7F8D5176-64AFB04E\",\n                \"qty\": 1,\n                \"price\": 1000,\n                \"service_fee\": 1,\n                \"status\": 5,\n                \"status_name\": \"Dibatalkan\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20240102151316-cropped-image.jpg\",\n                \"is_kilat\": false,\n                \"is_instant\": false,\n                \"brand_name\": \"Metal Slug : Awakening\",\n                \"product_id\": \"9549fd99-31c4-4b62-ace9-f4326f6f5674\",\n                \"product_name\": \"Metal Slug : Awakening\",\n                \"transaction_expired_time\": \"2024-01-10T15:19:16+07:00\",\n                \"kilat_expired_time\": null,\n                \"auto_finish_time\": null,\n                \"delivery_data\": [],\n                \"is_voucher\": false,\n                \"is_account\": false,\n                \"cancel_note\": \"Pesanan dibatalkan otomatis oleh Sistem\",\n                \"note\": \"\"\n            }\n        ],\n        \"summary\": {\n            \"sub_total\": 1000,\n            \"service_fee\": 1,\n            \"promo\": 0,\n            \"grand_total\": 999\n        }\n    }\n}"}],"_postman_id":"213a2e64-b719-4fa3-8144-49ce6422e322"},{"name":"ProcessTransaction","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript","packages":{}}}],"id":"3c5b8beb-74e8-44a4-bb98-672493786a2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"delivery_data\": [\r\n        \"Voucher SN : ABCD-1234-QWERTY\" // example\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/transaction/process?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_detail_id=f6045012-f945-46c3-815c-c5f6999f3f83","urlObject":{"path":["rest","transaction","process"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_detail_id","value":"f6045012-f945-46c3-815c-c5f6999f3f83"}],"variable":[]}},"response":[{"id":"9d182e16-8b88-4627-8719-573629fc8e2b","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"delivery_data\": []\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/transaction/process?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_detail_id=f6045012-f945-46c3-815c-c5f6999f3f83","host":["https://apis.vcgamers.com"],"path":["rest","transaction","process"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_detail_id","value":"f6045012-f945-46c3-815c-c5f6999f3f83"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"}],"_postman_id":"3c5b8beb-74e8-44a4-bb98-672493786a2e"},{"name":"CancelTransaction","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"1570560d-f673-4a93-a81e-6d8b7bc522f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cancel_note\": \"Stok Habis Kak\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/transaction/cancel?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_detail_id=f6045012-f945-46c3-815c-c5f6999f3f83","urlObject":{"path":["rest","transaction","cancel"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_detail_id","value":"f6045012-f945-46c3-815c-c5f6999f3f83"}],"variable":[]}},"response":[{"id":"15d2a5e5-5256-4dca-8e19-e6fa162d59c3","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cancel_note\": \"Stok Habis Kak\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://apis.vcgamers.com/rest/transaction/cancel?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&transaction_detail_id=f6045012-f945-46c3-815c-c5f6999f3f83","host":["https://apis.vcgamers.com"],"path":["rest","transaction","cancel"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"transaction_detail_id","value":"f6045012-f945-46c3-815c-c5f6999f3f83"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"}],"_postman_id":"1570560d-f673-4a93-a81e-6d8b7bc522f6"},{"name":"TransactionExportCSV","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"4b493a84-4705-4259-9ebf-fbb0b6d356a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cancel_note\": \"Stok Habis Kak\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://apis.vcgamers.com/rest/transaction/export-csv?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&date_start=&date_end&status","urlObject":{"path":["rest","transaction","export-csv"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"date_start","value":""},{"key":"date_end","value":null},{"key":"status","value":null}],"variable":[]}},"response":[],"_postman_id":"4b493a84-4705-4259-9ebf-fbb0b6d356a4"}],"id":"e6c747c1-9358-469e-a4d7-8f5e87c6127b","_postman_id":"e6c747c1-9358-469e-a4d7-8f5e87c6127b","description":""},{"name":"VIP Feature","item":[{"name":"Campaign","item":[{"name":"ListCampaign","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"16248a1b-a699-4dd6-ae04-176c86f84014","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/vip/campaign/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","vip","campaign","all"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"disabled":true,"key":"next_cursor","value":""},{"disabled":true,"key":"prev_cursor","value":""},{"disabled":true,"key":"limit","value":""},{"disabled":true,"key":"search","value":""},{"disabled":true,"key":"status","value":"2"}],"variable":[]}},"response":[{"id":"a437fa56-d23c-4cf8-b2be-06c307faeddf","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/vip/campaign/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","vip","campaign","all"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":"","disabled":true},{"key":"prev_cursor","value":"","disabled":true},{"key":"limit","value":"","disabled":true},{"key":"search","value":"","disabled":true},{"key":"status","value":"2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:50:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3623"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"119"},{"key":"X-Ratelimit-Reset","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"57d3ab2e-47ca-4e73-90a6-1bf2291485d6\",\n                \"name\": \"Program ABC #2\",\n                \"date_start\": \"2023-10-20\",\n                \"date_end\": \"2023-10-26\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20231006074546-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-10-17\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"d56bbb9c-27f6-400b-91c1-f56b4e977dac\",\n                \"name\": \"Program ABC\",\n                \"date_start\": \"2023-10-17\",\n                \"date_end\": \"2023-10-18\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20231006074546-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-10-14\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"9ba42c3f-5bab-47bd-b076-4e2fb6322d99\",\n                \"name\": \"Mantap!\",\n                \"date_start\": \"0001-01-01\",\n                \"date_end\": \"2023-10-18\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20231006074546-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"0000-12-29\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"f24c6373-9942-4886-8c81-44ae96fa9f21\",\n                \"name\": \"Mantap!\",\n                \"date_start\": \"2023-10-11\",\n                \"date_end\": \"2023-10-18\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20231006074546-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-10-08\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"9c491a62-e423-46d0-8653-6f63e78ab553\",\n                \"name\": \"Campaign 06-16 Oktober\",\n                \"date_start\": \"2023-10-06\",\n                \"date_end\": \"2023-10-16\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230926123008-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-10-03\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"85d65afd-86fb-4693-b322-ea5ef65c4b43\",\n                \"name\": \"Seru-Seruan!\",\n                \"date_start\": \"2023-10-03\",\n                \"date_end\": \"2023-10-05\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230929164459-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-09-30\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"e8bce25e-a207-411c-a67f-0fc21b5fd9f2\",\n                \"name\": \"Promo HEBAT!\",\n                \"date_start\": \"2023-09-29\",\n                \"date_end\": \"2023-10-03\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230927082008-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-09-26\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"16d69103-7924-4293-8316-45b6c2f38078\",\n                \"name\": \"Campaign TEST #2\",\n                \"date_start\": \"2023-09-27\",\n                \"date_end\": \"2023-10-10\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230916053740-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-09-24\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"6df59c33-7145-40e5-a331-7c00f995b713\",\n                \"name\": \"Campaign TEST #1\",\n                \"date_start\": \"2023-09-27\",\n                \"date_end\": \"2023-10-05\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230920183128-cropped-image.jpg\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-09-24\",\n                \"has_joined\": false,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            },\n            {\n                \"id\": \"5f9d58fe-d8ce-4b15-9d62-b7cfbc34bc77\",\n                \"name\": \"Narsis di Banner Ads\",\n                \"date_start\": \"2023-09-05\",\n                \"date_end\": \"2023-09-10\",\n                \"image_url\": \"https://cdn.vcg.my.id/seller/assets/20230810214822-vcgicon-color.png\",\n                \"status\": 3,\n                \"status_name\": \"Berakhir\",\n                \"join_before_date\": \"2023-09-02\",\n                \"has_joined\": true,\n                \"has_performance_link\": false,\n                \"performance_link\": \"\"\n            }\n        ],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"MjAyMy0wOC0yNSAxMDowODozNi45ODE1NTZhMzI3NzEwLWJiMjAtNGEyYy05ZDE2LTZlNDVmNmU1N2MzMA==\",\n            \"current_records\": 10\n        }\n    }\n}"}],"_postman_id":"16248a1b-a699-4dd6-ae04-176c86f84014"},{"name":"ListCampaignHistory","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"58bcadaa-3ae9-42c5-a6b6-ebfdc416fc3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/vip/campaign/histories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","vip","campaign","histories"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"disabled":true,"key":"next_cursor","value":""},{"disabled":true,"key":"prev_cursor","value":""},{"disabled":true,"key":"limit","value":""},{"disabled":true,"key":"search","value":""},{"disabled":true,"key":"status","value":"2"}],"variable":[]}},"response":[{"id":"ac580e76-a8b0-49a4-babf-b1d8e2b51be2","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/vip/campaign/histories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","vip","campaign","histories"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":"","disabled":true},{"key":"prev_cursor","value":"","disabled":true},{"key":"limit","value":"","disabled":true},{"key":"search","value":"","disabled":true},{"key":"status","value":"2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:50:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2031"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"48"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"5f9d58fe-d8ce-4b15-9d62-b7cfbc34bc77\",\n                \"name\": \"Narsis di Banner Ads\",\n                \"date_start\": \"2023-09-05\",\n                \"date_end\": \"2023-09-10\",\n                \"status\": 4,\n                \"status_name\": \"Berakhir\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"6a327710-bb20-4a2c-9d16-6e45f6e57c30\",\n                \"name\": \"12983IAUDIAUWRH\",\n                \"date_start\": \"2023-09-10\",\n                \"date_end\": \"2023-09-15\",\n                \"status\": 6,\n                \"status_name\": \"Dibatalkan\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"f0a5f04c-4ea5-4495-b77b-d825fc9b0310\",\n                \"name\": \"OAO3IU9AOSIHR\",\n                \"date_start\": \"2023-09-10\",\n                \"date_end\": \"2023-09-15\",\n                \"status\": 4,\n                \"status_name\": \"Berakhir\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"54ea8208-3ee9-4168-9fd1-a08ba3db3a07\",\n                \"name\": \"12KALUWYROA\",\n                \"date_start\": \"2023-09-10\",\n                \"date_end\": \"2023-09-15\",\n                \"status\": 4,\n                \"status_name\": \"Berakhir\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"2a6da6c5-870b-4adb-bf12-f90e396d7222\",\n                \"name\": \"ASBSJHDGAER\",\n                \"date_start\": \"2023-09-10\",\n                \"date_end\": \"2023-09-15\",\n                \"status\": 4,\n                \"status_name\": \"Berakhir\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"35a2e038-f2cc-4402-b544-1a0ff032e332\",\n                \"name\": \"Campaign C\",\n                \"date_start\": \"2023-09-02\",\n                \"date_end\": \"2023-09-10\",\n                \"status\": 7,\n                \"status_name\": \"Ditolak\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"30357b7b-7b9a-434f-93b7-39027a21068b\",\n                \"name\": \"Campaign B\",\n                \"date_start\": \"2023-09-02\",\n                \"date_end\": \"2023-09-10\",\n                \"status\": 1,\n                \"status_name\": \"Menunggu Persetujuan\",\n                \"approved_date\": null,\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            },\n            {\n                \"id\": \"749cdd47-66aa-41f8-943b-17c2a980bcca\",\n                \"name\": \"Campaign A\",\n                \"date_start\": \"2023-08-28\",\n                \"date_end\": \"2023-08-30\",\n                \"status\": 4,\n                \"status_name\": \"Berakhir\",\n                \"approved_date\": \"2023-08-25T03:16:49Z\",\n                \"can_request_cancel_date\": null,\n                \"can_request_cancel\": false\n            }\n        ],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"\",\n            \"current_records\": 8\n        }\n    }\n}"}],"_postman_id":"58bcadaa-3ae9-42c5-a6b6-ebfdc416fc3d"}],"id":"5a77dbaa-e546-44ce-b095-e30f383a544f","_postman_id":"5a77dbaa-e546-44ce-b095-e30f383a544f","description":""},{"name":"Seller Promo","item":[{"name":"ListPromo","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"34769f53-7cbc-4027-ac29-b520843861af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/vip/promo/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","vip","promo","all"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"disabled":true,"key":"next_cursor","value":""},{"disabled":true,"key":"prev_cursor","value":""},{"disabled":true,"key":"limit","value":""},{"disabled":true,"key":"search","value":""},{"disabled":true,"key":"status","value":"2"}],"variable":[]}},"response":[{"id":"338ea2a3-d83c-43d6-9a02-22c79175bda3","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/vip/promo/all?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","vip","promo","all"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":"","disabled":true},{"key":"prev_cursor","value":"","disabled":true},{"key":"limit","value":"","disabled":true},{"key":"search","value":"","disabled":true},{"key":"status","value":"2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:54:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3149"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"11"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [\n            {\n                \"id\": \"9df4019c-b90f-4215-8ae8-58e2a4bd5b09\",\n                \"name\": \"WE LO WE LIF WE LA\",\n                \"promo_code\": \"WELOWELIWELA\",\n                \"periode\": \"10 Oct 23 - 17 Oct 23\",\n                \"transaction_rule\": \"Min Rp15000\",\n                \"discount_rule\": \"2.50 % - Max Rp2000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 50,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"44b556e2-082f-48d1-b64c-1eeebf1def04\",\n                \"name\": \"Lorem ipsum dolor sit amet\",\n                \"promo_code\": \"DOLORAMET\",\n                \"periode\": \"16 Oct 23 - 25 Oct 23\",\n                \"transaction_rule\": \"Min Rp10000\",\n                \"discount_rule\": \"Rp500\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"9afd2d78-75ee-4cb3-8036-d84bc74296a6\",\n                \"name\": \"Promo Test\",\n                \"promo_code\": \"MEGA2023\",\n                \"periode\": \"09 Oct 23 - 18 Oct 23\",\n                \"transaction_rule\": \"Min Rp50000\",\n                \"discount_rule\": \"2.00 % - Max Rp1000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"00022887-1b66-4da0-a82e-6d03e748812e\",\n                \"name\": \"Test Promo Percentage\",\n                \"promo_code\": \"TESTING\",\n                \"periode\": \"12 Oct 23 - 16 Oct 23\",\n                \"transaction_rule\": \"Min Rp20000\",\n                \"discount_rule\": \"20.00 % - Max Rp21000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"6087048d-a38f-4dc1-bd18-cc9a53025b21\",\n                \"name\": \"Test Promo Percentage\",\n                \"promo_code\": \"TESTING\",\n                \"periode\": \"13 Sep 23 - 13 Sep 23\",\n                \"transaction_rule\": \"Min Rp20000\",\n                \"discount_rule\": \"20.00 % - Max Rp21000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"0c40612b-cd7b-44fa-ab76-054575d711d6\",\n                \"name\": \"Test Promo Status 5\",\n                \"promo_code\": \"PRIMO\",\n                \"periode\": \"12 Sep 23 - 13 Sep 23\",\n                \"transaction_rule\": \"Min Rp30000\",\n                \"discount_rule\": \"Rp20000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"0599cced-1de8-4298-b877-3b43c4319188\",\n                \"name\": \"Promo Murah Lebay\",\n                \"promo_code\": \"ABC1234\",\n                \"periode\": \"28 Sep 23 - 30 Sep 23\",\n                \"transaction_rule\": \"Min Rp2000\",\n                \"discount_rule\": \"Rp2000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"f737c8ba-5412-4d50-89ea-b0b8efee5d4a\",\n                \"name\": \"Test Promo Status 5\",\n                \"promo_code\": \"PRIMO\",\n                \"periode\": \"26 Aug 23 - 29 Aug 23\",\n                \"transaction_rule\": \"Min Rp30000\",\n                \"discount_rule\": \"Rp20000\",\n                \"status\": 4,\n                \"status_name\": \"Dinonaktifkan\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"7b338af6-59bf-45f8-8d76-321d7d14521f\",\n                \"name\": \"Test Promo Status 4\",\n                \"promo_code\": \"PROMO\",\n                \"periode\": \"26 Aug 23 - 29 Aug 23\",\n                \"transaction_rule\": \"Min Rp30000\",\n                \"discount_rule\": \"Rp20000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            },\n            {\n                \"id\": \"222e6db0-2e57-42b8-b407-99394bb46dcc\",\n                \"name\": \"Test Promo Status 2\",\n                \"promo_code\": \"ABS3N\",\n                \"periode\": \"26 Aug 23 - 29 Aug 23\",\n                \"transaction_rule\": \"Min Rp30000\",\n                \"discount_rule\": \"Rp20000\",\n                \"status\": 5,\n                \"status_name\": \"Berakhir\",\n                \"stock\": 10,\n                \"can_request_cancel\": false,\n                \"can_deactivate\": false\n            }\n        ],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"MjAyMy0wOC0yMSAxNTozODowMS4yNzM3Mjk5MTViMDdmYy1lM2M2LTQ0NTEtOGYzMC1iZGM2NjlhYmVkNmQ=\",\n            \"current_records\": 10\n        }\n    }\n}"}],"_postman_id":"34769f53-7cbc-4027-ac29-b520843861af"},{"name":"GetPromo","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"64d0ea95-8354-4126-bafc-9531e720d9d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/vip/promo/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&promo_id=915b07fc-e3c6-4451-8f30-bdc669abed6d","urlObject":{"path":["rest","vip","promo","get"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"promo_id","value":"915b07fc-e3c6-4451-8f30-bdc669abed6d"}],"variable":[]}},"response":[{"id":"87301af3-e9de-4d3e-bbfe-df833521cc62","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/vip/promo/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&promo_id=915b07fc-e3c6-4451-8f30-bdc669abed6d","host":["https://apis.vcgamers.com"],"path":["rest","vip","promo","get"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"promo_id","value":"915b07fc-e3c6-4451-8f30-bdc669abed6d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:54:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"776"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"id\": \"915b07fc-e3c6-4451-8f30-bdc669abed6d\",\n        \"seller_id\": \"fe1a8534-4e69-420f-8f05-d6805eadeca7\",\n        \"seller\": {\n            \"id\": \"fe1a8534-4e69-420f-8f05-d6805eadeca7\",\n            \"user_id\": \"6afbec70-d6d5-46ec-aa95-ce740f072aee\",\n            \"name\": \"Fajar Test\"\n        },\n        \"name\": \"Test Promo\",\n        \"date_start\": \"2023-08-24\",\n        \"date_end\": \"2023-08-26\",\n        \"promo_code\": \"TESTI\",\n        \"stock\": 10,\n        \"limit_user\": 1,\n        \"is_percent\": false,\n        \"amount_promo\": 20000,\n        \"percent_promo\": 0,\n        \"minimum_transaction_amount\": 20000,\n        \"maximum_discount_amount\": 0,\n        \"status\": 5,\n        \"status_name\": \"Berakhir\",\n        \"request_date\": \"2023-08-21T22:38:01.273729+07:00\",\n        \"approved_date\": null,\n        \"nonactive_date\": null,\n        \"rejected_date\": null,\n        \"rejected_reason\": \"\",\n        \"created_at\": \"2023-08-21T15:38:01.273729Z\",\n        \"updated_at\": \"2023-08-21T15:38:01.273729Z\",\n        \"items\": null\n    }\n}"}],"_postman_id":"64d0ea95-8354-4126-bafc-9531e720d9d6"},{"name":"GetPerformance","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"8fd7758f-108b-4ef5-bfe0-7f3cfd52c30e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/vip/promo/performance?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&promo_id=915b07fc-e3c6-4451-8f30-bdc669abed6d","urlObject":{"path":["rest","vip","promo","performance"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"promo_id","value":"915b07fc-e3c6-4451-8f30-bdc669abed6d"}],"variable":[]}},"response":[{"id":"ef06d59a-0252-4ca4-ade1-f13cb544846b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/vip/promo/performance?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&promo_id=915b07fc-e3c6-4451-8f30-bdc669abed6d","host":["https://apis.vcgamers.com"],"path":["rest","vip","promo","performance"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"promo_id","value":"915b07fc-e3c6-4451-8f30-bdc669abed6d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:54:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"186"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"22"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"total_usage\": 0,\n        \"total_gross_amount\": 0,\n        \"total_nett_amount\": 0,\n        \"total_fee_amount\": 0,\n        \"total_discount_amount\": 0,\n        \"total_percent_comparison\": 0\n    }\n}"}],"_postman_id":"8fd7758f-108b-4ef5-bfe0-7f3cfd52c30e"}],"id":"0c3269e6-26eb-4788-8a47-3244c9cf004d","_postman_id":"0c3269e6-26eb-4788-8a47-3244c9cf004d","description":""}],"id":"23d98a60-9785-485c-a151-a6fcffc3ad63","_postman_id":"23d98a60-9785-485c-a151-a6fcffc3ad63","description":""},{"name":"Balance","item":[{"name":"GetBalance","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"f03ad3f1-fa44-4924-821f-88fd0e3b02af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/balance/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","balance","get"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"dc267bb5-44da-4074-b1e7-3461394a5ede","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/balance/get?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","balance","get"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:55:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"226"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"116"},{"key":"X-Ratelimit-Reset","value":"11"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"balance\": 0,\n        \"pending_withdrawal\": 0,\n        \"withdrawal_status\": 0,\n        \"withdrawal_status_name\": \"\",\n        \"bank\": {\n            \"bank_name\": \"BCA\",\n            \"bank_account_number\": \"123456789\",\n            \"bank_account_name\": \"VCGamers\"\n        }\n    }\n}"}],"_postman_id":"f03ad3f1-fa44-4924-821f-88fd0e3b02af"},{"name":"GetBalanceHistory","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"e037e801-9c63-4317-938b-964364f8f1c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://apis.vcgamers.com/rest/balance/histories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&limit=5","urlObject":{"path":["rest","balance","histories"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"disabled":true,"key":"next_cursor","value":""},{"disabled":true,"key":"prev_cursor","value":""},{"key":"limit","value":"5"},{"disabled":true,"key":"search","value":""}],"variable":[]}},"response":[{"id":"4d15f103-db85-4717-9aea-8f8b0fc01c08","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/balance/histories?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature&limit=5","host":["https://apis.vcgamers.com"],"path":["rest","balance","histories"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"},{"key":"next_cursor","value":"","type":"text","disabled":true},{"key":"prev_cursor","value":"","type":"text","disabled":true},{"key":"limit","value":"5"},{"key":"search","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:55:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"118"},{"key":"X-Ratelimit-Reset","value":"41"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\",\n    \"data\": {\n        \"data\": [],\n        \"pagination_data\": {\n            \"prev_cursor\": \"\",\n            \"next_cursor\": \"\",\n            \"current_records\": 0\n        }\n    }\n}"}],"_postman_id":"e037e801-9c63-4317-938b-964364f8f1c0"},{"name":"RequestWithdrawalBalance","event":[{"listen":"prerequest","script":{"id":"b071daa7-687f-4b9f-a65b-33cc236bbddb","exec":[""],"type":"text/javascript"}}],"id":"f29f75ea-84d4-403d-9116-4f23766e8562","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://apis.vcgamers.com/rest/balance/withdrawal-request?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","urlObject":{"path":["rest","balance","withdrawal-request"],"host":["https://apis.vcgamers.com"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}],"variable":[]}},"response":[{"id":"80452e1f-1245-44fb-9e43-4d3d9bf3e0da","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/balance/withdrawal-request?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","balance","withdrawal-request"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"00\",\n    \"message\": \"Success\"\n}"},{"id":"74fd5c1d-fb6b-4aa1-82f3-3544f64da765","name":"Forbidden","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://apis.vcgamers.com/rest/balance/withdrawal-request?access_token=accesskey&timestamp=YYYYMMDDHHmm&sign=signature","host":["https://apis.vcgamers.com"],"path":["rest","balance","withdrawal-request"],"query":[{"key":"access_token","value":"accesskey"},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"sign","value":"signature"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Feb 2024 07:56:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"X-Ratelimit-Limit","value":"120"},{"key":"X-Ratelimit-Remaining","value":"117"},{"key":"X-Ratelimit-Reset","value":"6"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"43\",\n    \"message\": \"minimum withdrawal balance is Rp. 20.000\"\n}"}],"_postman_id":"f29f75ea-84d4-403d-9116-4f23766e8562"}],"id":"1e17f4c0-961f-4635-bde3-aa13e0c3dff1","_postman_id":"1e17f4c0-961f-4635-bde3-aa13e0c3dff1","description":""},{"name":"Webhook","id":"d094f870-368b-4b8f-8d8a-4cbb76c136a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://your_url_callback","description":"<p>Callback Type :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong><code>message_type</code></strong></th>\n<th><strong>Name</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Withdrawal Balance Update</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Transaction Status Update</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Stock Update</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Promo Update</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Event Update ( <em><strong>Coming Soon!</strong></em> )</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Campaign Update</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Seller Feature Update</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onevent-withdraw-balance-update\"><code>OnEvent</code> Withdraw Balance Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"seller_id\": \"621084ff-e2f2-4ff5-9544-xxxxxxxxxx\",\n   \"message_type\": 1,\n   \"timestamp\": \"2024-01-01 00:00:00\",\n   \"data\": {\n      \"account_name\": \"VCGamers\",\n      \"account_number\": \"123456789\",\n      \"amount\": 10000,\n      \"bank_name\": \"BCA\",\n      \"code\": \"TRXWDB-XXXXXXXXX-XXXXXXX\",\n      \"status\": 4,\n      \"status_name\": \"Disetujui\"\n   }\n}\n\n</code></pre>\n<p>Payload Description :</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>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>1 = On Process  <br />2 = Rejected  <br />3 = On Hold  <br />4 = Approved</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onevent-transaction-status-update\"><code>OnEvent</code> Transaction Status Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"seller_id\": \"42aca201-ce0d-4a35-9686-02076bf28d1d\",\n  \"message_type\": 2,\n  \"timestamp\": \"2025-11-07 14:49:28\",\n  \"data\": {\n    \"code\": \"TRXOD-1762501764-5C3B36FE-837FB97B\",\n    \"qty\": 1,\n    \"status\": 3,\n    \"status_name\": \"Dikirim\",\n    \"is_kilat\": true,\n    \"is_instant\": false,\n    \"brand_name\": \"Mobile Legends\",\n    \"product_name\": \"Starlight Membership\",\n    \"transaction_expired_time\": \"\",\n    \"auto_finish_time\": \"2025-11-08 02:49:27\",\n    \"note\": \"Zone ID: 8779;User ID: 696456171;\",\n    \"transaction_id\": \"5c3b36fe-36c2-4080-988f-70642dece8f6\",\n    \"transaction_detail_id\": \"837fb97b-b8a8-4c56-8009-a236581c4f7a\",\n    \"customer_data\": {\n      \"user_id\": \"696456171\",\n      \"zone_id\": \"8779\"\n    },\n    \"price\": 140000,\n    \"order_income\": 137200,\n    \"variation_id\": \"2ceede57-19f6-452b-9a63-f5257f632d4d\"\n  }\n}\n\n</code></pre>\n<p>Parameter Description :</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>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>2 = On Process  <br />3 = Sent  <br />4 = Completed  <br />5 = Canceled  <br />6 = On Moderation / Complaint</td>\n</tr>\n<tr>\n<td><code>customer_data</code></td>\n<td>Contain user information like user_id or server_id, <em><strong>possible null</strong></em></td>\n</tr>\n<tr>\n<td><code>price</code></td>\n<td>Total amount of the transaction, its basically qty * price per item</td>\n</tr>\n<tr>\n<td><code>order_income</code></td>\n<td>Net Profit</td>\n</tr>\n<tr>\n<td><code>variation_id</code></td>\n<td>Variation product ID from VCGamers system</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onevent-stock-update\"><code>OnEvent</code> Stock Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"seller_id\": \"621084ff-e2f2-4ff5-9544-xxxxxxxxxx\",\n   \"message_type\": 3,\n   \"timestamp\": \"2024-01-01 00:00:00\",\n   \"data\": {\n      \"product_id\": \"758d99a5-bf4b-4473-8926-xxxxxxxx\",\n      \"product_slug\": \"variasi-i-iausyrt3\",\n      \"product_variation_id\": \"6532849e-4aa1-4e33-b485-xxxxxxxx\",\n      \"stock\": 25\n   }\n}\n\n</code></pre>\n<h3 id=\"onevent-promo-update\"><code>OnEvent</code> Promo Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"seller_id\": \"621084ff-e2f2-4ff5-9544-xxxxxxxxxx\",\n   \"message_type\": 4,\n   \"timestamp\": \"2024-01-01 00:00:00\",\n   \"data\": {\n      \"date_end\": \"2023-09-13\",\n      \"date_start\": \"2023-09-12\",\n      \"name\": \"Test Promo Status 5\",\n      \"promo_code\": \"PRIMO\",\n      \"promo_id\": \"0c40612b-cd7b-44fa-ab76-ccccxxxxxx\",\n      \"status\": 1,\n      \"status_name\": \"Request\",\n      \"stock\": 10\n   }\n}\n\n</code></pre>\n<p>Parameter Description :</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>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>1 = Requested  <br />2 = Approved  <br />3 = Active  <br />4 = Inactive  <br />5 = Completed / Expired  <br />6 = Rejected</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onevent-campaign-update\"><code>OnEvent</code> Campaign Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"seller_id\": \"621084ff-e2f2-4ff5-9544-xxxxxxxxxx\",\n   \"message_type\": 6,\n   \"timestamp\": \"2024-01-01 00:00:00\",\n   \"data\": {\n      \"campaign_id\": \"57d3ab2e-47ca-4e73-90a6-xxxxxxxx\",\n      \"date_end\": \"2023-10-26\",\n      \"date_start\": \"2023-10-20\",\n      \"name\": \"Program ABC #2\",\n      \"status\": 1,\n      \"status_name\": \"Akan Datang\"\n   }\n}\n\n</code></pre>\n<p>Parameter Description :</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>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>1 = Incoming  <br />2 = Active  <br />3 = Expired</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onevent-seller-feature-update\"><code>OnEvent</code> Seller Feature Update</h3>\n<p>Payload :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"seller_id\": \"621084ff-e2f2-4ff5-9544-xxxxxxxxxx\",\n   \"message_type\": 7,\n   \"timestamp\": \"2024-01-01 00:00:00\",\n   \"data\": {\n      \"feature_type\": \"INSTANT\",\n      \"status\": 2,\n      \"status_name\": \"Disetujui\"\n   }\n}\n\n</code></pre>\n<p>Parameter Description :</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>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>feature_type</code></td>\n<td><code>INSTANT</code> = Feature Instant  <br /><code>KILAT</code> = Feature Kilat ( 10-min deliver )  <br /><code>VIP</code> = Feature VIP Seller</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>1 = Pending  <br />2 = Approved  <br />3 = Rejected</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","host":["your_url_callback"],"query":[],"variable":[]}},"response":[],"_postman_id":"d094f870-368b-4b8f-8d8a-4cbb76c136a3"}],"event":[{"listen":"prerequest","script":{"id":"dc69518f-b760-40a9-9258-63575eab9391","type":"text/javascript","requests":{},"exec":["const moment = require('moment');","var timestmp = moment().format(\"YYYYMMDDHHmm\")","pm.collectionVariables.set(\"timestamp\", timestmp);","const secret = pm.collectionVariables.get(\"secret\");","var path = pm.request.url.getPath()","console.log(path)","var concatSignParam = path + pm.collectionVariables.get(\"access_key\") + timestmp","// generate sign","var hmac = CryptoJS.HmacSHA512(concatSignParam, secret).toString();","var sign = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(hmac));","// console.log(sign)","pm.collectionVariables.set(\"sign\", sign)"]}},{"listen":"test","script":{"id":"19553b30-666b-44e0-9d69-473ff0e2644d","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"api_url","value":"https://apis.vcgamers.io","disabled":true},{"key":"access_key","value":"access_token","disabled":true},{"key":"timestamp","value":"YYYYMMDDHHmm"},{"key":"secret_key","value":"","disabled":true},{"key":"secret","value":"secret","disabled":true},{"key":"sign","value":"signature"},{"key":"api_url","value":"https://apis.vcgamers.com"},{"key":"secret","value":"","disabled":true},{"key":"access_key","value":"","disabled":true},{"key":"secret","value":"secretkey"},{"key":"access_key","value":"accesskey"},{"key":"api_url","value":"","disabled":true},{"key":"secret","value":"","disabled":true},{"key":"access_key","value":"","disabled":true},{"key":"timestamp","value":"","disabled":true}]}