{"info":{"_postman_id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","name":"AccsMaster Resellers","description":"<html><head></head><body><h3 id=\"table-of-contents\">Table of contents</h3>\n<ol>\n<li><a href=\"#description\">Description</a></li>\n<li><a href=\"#authorization\">Authorization</a></li>\n<li><a href=\"#callback\">Callback</a></li>\n<li><a href=\"#order-statuses\">Order statuses</a></li>\n</ol>\n<h3 id=\"description\">Description</h3>\n<p>Official API for Accsmaster resellers. With it you can easily get Accsmaster's list of offers, filter offers, get list of categories, get data about your orders, their status and, most importantly, create new orders! There is also ready-to-use PHP SDK!</p>\n<p>PHP SDK:</p>\n<p><a href=\"https://packagist.org/packages/accsm/reseller-api-sdk\">https://packagist.org/packages/accsm/reseller-api-sdk</a></p>\n<h3 id=\"authorization\">Authorization</h3>\n<p>All API requests require bearer token authorization. To get bearer token you need to you Authentication endpoint.</p>\n<h3 id=\"callback\">Callback</h3>\n<p>If you provide callback_url in buy method, Accsmaster will send you order data when order is complete with this data:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">$response = [\n  'number' =&gt; 'order_number', // order number\n  'status' =&gt; 'status_id', //order status\n  'total' =&gt; 'price', //total price of order\n  'secret_key' =&gt; 'secret_key' //order secret key          \n  'download_link' - 'link' // if needed\n];\n\n</code></pre>\n<p>Call to you endpoint (your callback_url) will always have Signature header. This will allow you to be sure call is coming from Accsmaster. To check if it's valid you're going to need to:</p>\n<ol>\n<li>function signCallbackData(string $secret, array $data) { ksort($data); $string = ''; foreach($data as $value) { if (in_array(gettype($value), ['array', 'object', 'NULL']) ){ continue; } if(is_bool($value) &amp;&amp; $value){ $string .= 1; } else { $string .= $value; } } return hash_hmac('sha512', strtolower($string), $secret); }</li>\n<li>$json = file_get_contents('php://input'); $data = json_decode($json); $headers = getallheaders(); $secret = 'my_secret'; $testSignature = signCallbackData($secret, $data); $signature = $headers['Signature']; if (!hash_equals($signature, $testSignature)) { // Error, wrong signature die; } // Process data // ...Order statuses</li>\n</ol>\n<ul>\n<li>1: new:</li>\n<li>2: in_progress</li>\n<li>3: complete</li>\n<li>4: canceled</li>\n<li>5: pending</li>\n<li>6: refunded</li>\n<li>7: mispaid</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"26405500","collectionId":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","publishedId":"2s93Jxs2HD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"2fd6a5"},"publishDate":"2023-03-16T21:43:55.000Z"},"item":[{"name":"Authentication","id":"425740ff-5109-41ad-aeca-e038438dd42d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"blablabl@dev.null","description":"<p>User email</p>\n","type":"text"},{"key":"password","value":"wrong_password","description":"<p>User password</p>\n","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/login","description":"<p>User login</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","name":"AccsMaster Resellers","type":"collection"}},"urlObject":{"path":["api","v1","user","login"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"1428f054-154d-4262-a987-6f1a8c862d2b","name":"Authentication success","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"blablabl@dev.null","description":"User email","type":"text"},{"key":"password","value":"my_password","description":"User password","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Aug 2021 14:44:01 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"354"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjMyLCJpc3MiOiJodHRwOi8vYWNjc2Zhcm0ubG9jYWxob3N0L2FwaS92MS91c2VyL2xvZ2luIiwiaWF0IjoxNjI4OTUyMjQxLCJleHAiOjE2NjA0ODgyNDEsIm5iZiI6MTYyODk1MjI0MSwianRpIjoicjhMd0E5RHNIdzhYcWJvWSJ9.3Y7wlyfoEyvVBM5gvgPPaACQX6D-zkdTdb89eWIhHfc\",\n    \"user\": {\n        \"id\": 32,\n        \"email\": \"blablabl@dev.null\",\n        \"is_activated\": true,\n        \"balance\": 0,\n        \"secret\": \"User secret\"\n    }\n}"},{"id":"34e2b301-9f3a-4528-ac7c-0a450612d085","name":"Authentication wrong auth data","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"blablabl@dev.null","description":"User email","type":"text"},{"key":"password","value":"wrong_password","description":"User password","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/login"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Aug 2021 14:49:09 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"33"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Password is not valid\"\n}"}],"_postman_id":"425740ff-5109-41ad-aeca-e038438dd42d"},{"name":"Get Offers","id":"24bbfcda-fc38-43b9-b158-2e1ac32ffc61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/offers","description":"<p>Get current trading offers for your shop</p>\n","urlObject":{"path":["api","v1","offers"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"e2008ef5-0edc-4af8-b162-8a69add4a411","name":"Get Offers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://accsmaster.com/api/v1/offers?category_id=1","host":["https://accsmaster.com"],"path":["api","v1","offers"],"query":[{"key":"category_id","value":"1","description":"Category Id of offers"},{"key":"product_id","value":"15","description":"Product Id of offers","disabled":true},{"key":"discount","value":"1","description":"Only discount offers shown","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Aug 2021 11:48:34 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 141,\n        \"name\": \"10 PVA Facebook Account with Email Latin Name and RU IPs\",\n        \"preview_text\": \"Pack of 10 Quality PVA Facebook Accounts. Accounts registered through different IPs and include an Email address. \\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin:password:id\",\n        \"quantity\": 18,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"14.30\",\n        \"old_price_value\": \"15.90\",\n        \"no_promocode\": 1\n    },\n    {\n        \"id\": 142,\n        \"name\": \"50 PVA Facebook Account with Email Latin Name and RU IPs\",\n        \"preview_text\": \"Quality PVA Facebook Accounts. Accounts registered through different IPs and include an Email address. \\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin:password:id\",\n        \"quantity\": 13,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"69.96\",\n        \"old_price_value\": \"79.50\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 143,\n        \"name\": \"100 PVA Facebook Account with Email Latin Name and RU IPs\",\n        \"preview_text\": \"\",\n        \"quantity\": 9,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"141.50\",\n        \"old_price_value\": \"159.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 144,\n        \"name\": \"10 Exclusive PVA Facebook Account: Profile Picture and IP included\",\n        \"preview_text\": \"<br/>\\r\\nExclusive PVA Facebook Accounts without content. Accounts with email, avatar and original IPs.<br/>\\r\\n<br/>\\r\\nPlease Note the Format of Credentials for the Accounts:<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\nPVA Facebook account with registration IP included.<br/>\\r\\nNo Content or Posts in the account.<br/>\\r\\nAvatar and email added to the account<br/>\\r\\nPlease use the included IP address when logging into the accounts.<br/>\\r\\n<br/>\\r\\n<b>Format of accounts:</b><br/>\\r\\n<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:<br/>:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\n<b>Important Instructions for the use of Premium Facebook Accounts</b><br/>\\r\\n<br/>\\r\\n<b>Only use the proxies included in the credentials set!</b><br/>\\r\\n<br/>\\r\\nWe recommend changing the Account Password after Purchase<br/>\\r\\n<br/>\\r\\nPlease check how to select proxy option in firefox:<br/>\\r\\nhttps://www.youtube.com/watch?v=qyvjq9Wboss<br/>\\r\\n<br/>\\r\\n1) Select Manual proxy configuration<br/>\\r\\n<br/>\\r\\n2) Check the account data we sent you, there is a proxy-ip field, proxy-port, proxy-user, proxy-pass:<br/>\\r\\ninput in \\\"Http-proxy\\\" config proxy ip and port mentioned in your account data, select \\\"use this proxy for all protocols\\\"<br/>\\r\\n<br/>\\r\\n3) Click \\\"ok\\\" to save configuration<br/>\\r\\n<br/>\\r\\n4) After this go to https://www.whatismyip.com/ <br/> \\r\\nThe browser will ask to input login and pass: input proxy-user/proxy-pass as mentioned in account data<br/>\\r\\n<br/>\\r\\n5) Check that you are connected through proxy - <br/>\\r\\nyour current ip will be shown on https://www.whatismyip.com/<br/>\\r\\n<br/>\\r\\n6) Go to facebook.com and enter account<br/>\\r\\n<br/>\\r\\nWe also recommend to use cookies and user-agent that is mentioned in account data\",\n        \"quantity\": 27,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"26.90\",\n        \"old_price_value\": \"29.90\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 145,\n        \"name\": \"50 Exclusive PVA Facebook Account: Profile Picture and IP included\",\n        \"preview_text\": \"<br/>\\r\\nExclusive PVA Facebook Accounts without content. Accounts with email, avatar and original IPs.<br/>\\r\\n<br/>\\r\\nPlease Note the Format of Credentials for the Accounts:<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\nPVA Facebook account with registration IP included.<br/>\\r\\nNo Content or Posts in the account.<br/>\\r\\nAvatar and email added to the account<br/>\\r\\nPlease use the included IP address when logging into the accounts.<br/>\\r\\n<br/>\\r\\n<b>Format of accounts:</b><br/>\\r\\n<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:<br/>:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\n<b>Important Instructions for the use of Premium Facebook Accounts</b><br/>\\r\\n<br/>\\r\\n<b>Only use the proxies included in the credentials set!</b><br/>\\r\\n<br/>\\r\\nWe recommend changing the Account Password after Purchase<br/>\\r\\n<br/>\\r\\nPlease check how to select proxy option in firefox:<br/>\\r\\nhttps://www.youtube.com/watch?v=qyvjq9Wboss<br/>\\r\\n<br/>\\r\\n1) Select Manual proxy configuration<br/>\\r\\n<br/>\\r\\n2) Check the account data we sent you, there is a proxy-ip field, proxy-port, proxy-user, proxy-pass:<br/>\\r\\ninput in \\\"Http-proxy\\\" config proxy ip and port mentioned in your account data, select \\\"use this proxy for all protocols\\\"<br/>\\r\\n<br/>\\r\\n3) Click \\\"ok\\\" to save configuration<br/>\\r\\n<br/>\\r\\n4) After this go to https://www.whatismyip.com/ <br/> \\r\\nThe browser will ask to input login and pass: input proxy-user/proxy-pass as mentioned in account data<br/>\\r\\n<br/>\\r\\n5) Check that you are connected through proxy - <br/>\\r\\nyour current ip will be shown on https://www.whatismyip.com/<br/>\\r\\n<br/>\\r\\n6) Go to facebook.com and enter account<br/>\\r\\n<br/>\\r\\nWe also recommend to use cookies and user-agent that is mentioned in account data\",\n        \"quantity\": 19,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"131.50\",\n        \"old_price_value\": \"149.50\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 146,\n        \"name\": \"100 Exclusive PVA Facebook Account: Profile Picture and IP included\",\n        \"preview_text\": \"<br/>\\r\\nExclusive PVA Facebook Accounts without content. Accounts with email, avatar and original IPs.<br/>\\r\\n<br/>\\r\\nPlease Note the Format of Credentials for the Accounts:<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\nPVA Facebook account with registration IP included.<br/>\\r\\nNo Content or Posts in the account.<br/>\\r\\nAvatar and email added to the account<br/>\\r\\nPlease use the included IP address when logging into the accounts.<br/>\\r\\n<br/>\\r\\n<b>Format of accounts:</b><br/>\\r\\n<br/>\\r\\nphone(login):password:email:name:surname:birthday:gender:region:<br/>:proxy_ip:proxy_port:proxy_user:proxy_pass:useragent:cookies:link<br/>\\r\\n<br/>\\r\\n<b>Important Instructions for the use of Premium Facebook Accounts</b><br/>\\r\\n<br/>\\r\\n<b>Only use the proxies included in the credentials set!</b><br/>\\r\\n<br/>\\r\\nWe recommend changing the Account Password after Purchase<br/>\\r\\n<br/>\\r\\nPlease check how to select proxy option in firefox:<br/>\\r\\nhttps://www.youtube.com/watch?v=qyvjq9Wboss<br/>\\r\\n<br/>\\r\\n1) Select Manual proxy configuration<br/>\\r\\n<br/>\\r\\n2) Check the account data we sent you, there is a proxy-ip field, proxy-port, proxy-user, proxy-pass:<br/>\\r\\ninput in \\\"Http-proxy\\\" config proxy ip and port mentioned in your account data, select \\\"use this proxy for all protocols\\\"<br/>\\r\\n<br/>\\r\\n3) Click \\\"ok\\\" to save configuration<br/>\\r\\n<br/>\\r\\n4) After this go to https://www.whatismyip.com/ <br/> \\r\\nThe browser will ask to input login and pass: input proxy-user/proxy-pass as mentioned in account data<br/>\\r\\n<br/>\\r\\n5) Check that you are connected through proxy - <br/>\\r\\nyour current ip will be shown on https://www.whatismyip.com/<br/>\\r\\n<br/>\\r\\n6) Go to facebook.com and enter account<br/>\\r\\n<br/>\\r\\nWe also recommend to use cookies and user-agent that is mentioned in account data\",\n        \"quantity\": 8,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"266.00\",\n        \"old_price_value\": \"300.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 147,\n        \"name\": \"50 Softreg Facebook Accounts RU Ip\",\n        \"preview_text\": \"Pack of 50 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and include an Email address.\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin(email):password:email password\",\n        \"quantity\": 14,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"25.99\",\n        \"old_price_value\": \"29.50\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 148,\n        \"name\": \"50 Facebook PVA Account with Profile Picture. Registered with RU/UA IP\",\n        \"preview_text\": \"Pack of 50 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and Phone verificated\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin:password:id\",\n        \"quantity\": 17,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"43.50\",\n        \"old_price_value\": \"49.50\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 149,\n        \"name\": \"100 Softreg Facebook Accounts RU Ip\",\n        \"preview_text\": \"Pack of 100 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and include an Email address.\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin(email):password:email password\",\n        \"quantity\": 7,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"52.50\",\n        \"old_price_value\": \"59.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 150,\n        \"name\": \"100 Facebook PVA Account with Profile Picture. Registered with RU/UA IP\",\n        \"preview_text\": \"Pack of 100 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and Phone verificated\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin:password:id\",\n        \"quantity\": 9,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"88.00\",\n        \"old_price_value\": \"99.00\",\n        \"no_promocode\": 1\n    },\n    {\n        \"id\": 151,\n        \"name\": \"10 Softreg Facebook Accounts RU Ip\",\n        \"preview_text\": \"Pack of 10 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and include an Email address.\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin(email):password:email password\",\n        \"quantity\": 16,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"5.30\",\n        \"old_price_value\": \"5.90\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 152,\n        \"name\": \"10 Facebook PVA Account with Profile Picture. Registered with RU/UA IP\",\n        \"preview_text\": \"Pack of 10 Quality Softreg Facebook Accounts. Accounts registered with Russian IPs and Phone verificated\\r\\n\\r\\nPlease Note the Format of Credentials for the Accounts:\\r\\nlogin:password:id\",\n        \"quantity\": 23,\n        \"instruction\": null,\n        \"product_id\": 15,\n        \"category_id\": 1,\n        \"price_value\": \"8.90\",\n        \"old_price_value\": \"9.90\",\n        \"no_promocode\": 1\n    }\n]"},{"id":"9af7a70e-7429-4625-9c55-49876a63b2b1","name":"Get Offers - Auth token not provided","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://accsmaster.com/api/v1/offers?category_id=1&product_id=15&discount=1","host":["https://accsmaster.com"],"path":["api","v1","offers"],"query":[{"key":"category_id","value":"1","description":"Category Id of offers"},{"key":"product_id","value":"15","description":"Product Id of offers"},{"key":"discount","value":"1","description":"Only discount offers shown"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Aug 2021 15:22:31 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"30"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"token_not_provided\"\n}"},{"id":"585b1c83-348a-42b1-90c9-588285ae9d1a","name":"Get Offers - get offers from 'positive reviews' category","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://accsmaster.com/api/v1/offers?category_id=21","host":["https://accsmaster.com"],"path":["api","v1","offers"],"query":[{"key":"product_id","value":"15","description":"Product Id of offers","disabled":true},{"key":"discount","value":"0","description":"Only discount offers shown","disabled":true},{"key":"category_id","value":"21"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Sep 2021 10:25:54 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 265,\n        \"name\": \"Positive Facebook Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 36,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"12.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 563,\n        \"name\": \"Positive Facebook Reviews With Our Custom Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 36,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"14.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 242,\n        \"name\": \"Positive Trustpilot Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 37,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"4.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 242,\n        \"name\": \"Positive Trustpilot Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 37,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"2.00\",\n        \"old_price_value\": \"2.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 528,\n        \"name\": \"Positive Trustpilot Reviews With Our Custom Texts\",\n        \"quantity\": 899,\n        \"instruction\": \"\",\n        \"product_id\": 37,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"6.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 255,\n        \"name\": \"Positive Google Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 38,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"9.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 562,\n        \"name\": \"Positive Google Reviews With Our Custom Texts\",\n        \"quantity\": 899,\n        \"instruction\": \"\",\n        \"product_id\": 38,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"11.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2704,\n        \"name\": \"Positive Google Reviews With Your Own Texts (Local Guide)\",\n        \"quantity\": 799,\n        \"instruction\": \"\",\n        \"product_id\": 38,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"19.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2705,\n        \"name\": \"Positive Google Reviews With Our Custom Texts (Local Guide)\",\n        \"quantity\": 698,\n        \"instruction\": \"\",\n        \"product_id\": 38,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"21.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 1\n    },\n    {\n        \"id\": 248,\n        \"name\": \"Positive Tripadvisor Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 39,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"27.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 1692,\n        \"name\": \"Positive Tripadvisor Reviews With Our Custom Texts\",\n        \"quantity\": 899,\n        \"instruction\": \"\",\n        \"product_id\": 39,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"29.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 529,\n        \"name\": \"Positive Yelp Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 77,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"99.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 617,\n        \"name\": \"Elite Yelp Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 77,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"149.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 530,\n        \"name\": \"Positive Producthunt reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 78,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"4.99\",\n        \"old_price_value\": \"4.99\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 560,\n        \"name\": \"Positive iOS Reviews With Your Own Texts (3 rates + 20 Direct Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 87,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"7.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 565,\n        \"name\": \"Positive iOS Reviews With Our Custom Texts (3 rates + 20 Direct Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 87,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"9.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2666,\n        \"name\": \"Positive iOS Reviews With Your Own Texts (3 rates + 20 Keyword Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 87,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"9.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2667,\n        \"name\": \"Positive iOS Reviews With Our Custom Texts (3 rates + 20 Keyword Installs Included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 87,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"11.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 1\n    },\n    {\n        \"id\": 561,\n        \"name\": \"Positive Android Reviews With Your Own Texts (3 rates + 20 Direct Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 88,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"7.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 564,\n        \"name\": \"Positive Android Reviews With Our Custom Texts (3 rates + 20 Direct Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 88,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"9.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2664,\n        \"name\": \"Positive Android Reviews With Your Own Texts (3 rates + 20 Keyword Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 88,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"9.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2665,\n        \"name\": \"Positive Android Reviews With Our Custom Texts (3 rates + 20 Keyword Installs included)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 88,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"11.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 580,\n        \"name\": \"Verified Reviews.io Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 91,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"12.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2697,\n        \"name\": \"Verified Reviews.io Reviews With Our Custom Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 91,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"14.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 574,\n        \"name\": \"Verified Amazon Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 92,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"39.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2680,\n        \"name\": \"Amazon Kindle Book Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 92,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"49.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 581,\n        \"name\": \"Positive Steam Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 94,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"4.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 582,\n        \"name\": \"Positive Fiverr Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 95,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"24.99\",\n        \"old_price_value\": \"24.99\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 583,\n        \"name\": \"Positive Upwork Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 96,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"59.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2686,\n        \"name\": \"Positive Upwork Reviews With Our Custom Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 96,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"61.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 584,\n        \"name\": \"Positive eBay Feedbacks With Your Own Tests\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 97,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"24.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2685,\n        \"name\": \"Positive eBay Feedbacks With Our Custom Tests\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 97,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"26.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 585,\n        \"name\": \"Positive Etsy Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 98,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"49.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 586,\n        \"name\": \"Positive BBB Reviews With Your Own Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 99,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"14.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2696,\n        \"name\": \"Positive BBB Reviews With Our Custom Texts\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 99,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"16.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 616,\n        \"name\": \"Positive Glassdoor Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 109,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"29.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 1674,\n        \"name\": \"Positive Houzz Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 119,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"19.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 1675,\n        \"name\": \"Positive Lazada Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 120,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"19.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 1676,\n        \"name\": \"Positive Yellow Pages Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 121,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"14.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 1703,\n        \"name\": \"Custom Texts for Reviews\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 130,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"1.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2693,\n        \"name\": \"Funds to pay for your job (Fiverr, Upwork)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 143,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"1.00\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2694,\n        \"name\": \"Funds to pay for your product (Amazon, eBay)\",\n        \"quantity\": 999,\n        \"instruction\": \"\",\n        \"product_id\": 143,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"1.00\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    },\n    {\n        \"id\": 2699,\n        \"name\": \"Positive AliExpress Reviews\",\n        \"quantity\": 5,\n        \"instruction\": \"\",\n        \"product_id\": 144,\n        \"type\": 1,\n        \"category_id\": 21,\n        \"price_value\": \"49.99\",\n        \"old_price_value\": \"0.00\",\n        \"no_promocode\": 0\n    }\n]"}],"_postman_id":"24bbfcda-fc38-43b9-b158-2e1ac32ffc61"},{"name":"Get Offer","id":"52264c58-4b1d-4762-90be-8d5298b46a15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/offer?id=200","description":"<p>Get trading offer by its id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","name":"AccsMaster Resellers","type":"collection"}},"urlObject":{"path":["api","v1","offer"],"host":["https://accsmaster.com"],"query":[{"description":{"content":"<p>Offer id (required)</p>\n","type":"text/plain"},"key":"id","value":"200"}],"variable":[]}},"response":[{"id":"94cfcfcb-b972-488d-8970-81b04ed21a35","name":"Get Offer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://accsmaster.com/api/v1/offer?id=2705","host":["https://accsmaster.com"],"path":["api","v1","offer"],"query":[{"key":"id","value":"2705","description":"Offer id (required)"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2705,\n    \"name\": \"Positive Google Reviews With Our Custom Texts (Local Guide)\",\n    \"quantity\": 698,\n    \"instruction\": \"\",\n    \"product_id\": 38,\n    \"type\": 1,\n    \"category_id\": 21,\n    \"price_value\": \"21.99\",\n    \"old_price_value\": \"0.00\",\n    \"no_promocode\": 1\n}"}],"_postman_id":"52264c58-4b1d-4762-90be-8d5298b46a15"},{"name":"Get Categories","id":"2b288f86-2b8a-4620-a9fb-0e99b75258c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/categories","description":"<p>Get list of categories and subcategories</p>\n","urlObject":{"path":["api","v1","categories"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"8f5bb3f3-39d1-409d-93af-8569332a3387","name":"Get Categories","originalRequest":{"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Aug 2021 11:50:03 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2470"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 3,\n        \"name\": \"Buy Instagram Accounts\",\n        \"preview_image\": \"/offers/insta_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 1,\n                \"name\": \"Instagram PVA accounts\",\n                \"category_id\": 3,\n                \"preview_image\": \"/Instagram_icon.png\"\n            },\n            {\n                \"id\": 11,\n                \"name\": \"Aged Instagram Accounts\",\n                \"category_id\": 3,\n                \"preview_image\": \"/Instagram_icon.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Buy Reddit Accounts\",\n        \"preview_image\": \"/offers/reddit_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 6,\n                \"name\": \"Softreg Reddit Accounts\",\n                \"category_id\": 4,\n                \"preview_image\": \"/shjfte9pyxo31.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 1,\n        \"name\": \"Buy Facebook Accounts\",\n        \"preview_image\": \"/offers/fb_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 2,\n                \"name\": \"Facebook Softreg Accounts\",\n                \"category_id\": 1,\n                \"preview_image\": \"\"\n            },\n            {\n                \"id\": 15,\n                \"name\": \"Packs of Facebook Accounts\",\n                \"category_id\": 1,\n                \"preview_image\": \"/fb_icon_325x325.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Buy Twitter Accounts\",\n        \"preview_image\": \"/offers/twitter_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 5,\n                \"name\": \"Softreg Twitter Accounts\",\n                \"category_id\": 6,\n                \"preview_image\": \"\"\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Buy Gmail Accounts\",\n        \"preview_image\": \"/offers/gmail_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 3,\n                \"name\": \"Softreg Gmail Accounts\",\n                \"category_id\": 2,\n                \"preview_image\": \"\"\n            }\n        ]\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Buy Steam Accounts\",\n        \"preview_image\": \"/offers/steam_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 4,\n                \"name\": \"Old Steam Accounts\",\n                \"category_id\": 5,\n                \"preview_image\": \"/steam.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Buy Vkontakte (VK) Accounts\",\n        \"preview_image\": \"/offers/vk_logo.svg\",\n        \"product\": [\n            {\n                \"id\": 12,\n                \"name\": \"Softreg Vkontakte (VK) Accounts\",\n                \"category_id\": 7,\n                \"preview_image\": \"/1478241.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Buy TikTok Accounts\",\n        \"preview_image\": \"/offers/tiktok-logo.svg\",\n        \"product\": [\n            {\n                \"id\": 14,\n                \"name\": \"Softreg TikTok Accounts\",\n                \"category_id\": 9,\n                \"preview_image\": \"/1024x0w.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 11,\n        \"name\": \"Buy Paypal Accounts\",\n        \"preview_image\": \"/Paypal-512.png\",\n        \"product\": [\n            {\n                \"id\": 22,\n                \"name\": \"Verified Paypal Accounts for Sale\",\n                \"category_id\": 11,\n                \"preview_image\": \"/PayPal_Logo_Icon.png\"\n            },\n            {\n                \"id\": 23,\n                \"name\": \"Business Paypal Accounts\",\n                \"category_id\": 11,\n                \"preview_image\": \"/PayPal_Logo_Icon.png\"\n            }\n        ]\n    },\n    {\n        \"id\": 12,\n        \"name\": \"Buy Netflix Accounts\",\n        \"preview_image\": \"/kisspng-logo-brand-line-5af686b8736dc5.7096093215261057844728.png\",\n        \"product\": [\n            {\n                \"id\": 24,\n                \"name\": \"Netflix Verified Accounts\",\n                \"category_id\": 12,\n                \"preview_image\": \"\"\n            }\n        ]\n    },\n    {\n        \"id\": 14,\n        \"name\": \"Buy Proxy\",\n        \"preview_image\": \"/proxy_png.png\",\n        \"product\": []\n    },\n    {\n        \"id\": 16,\n        \"name\": \"Boosted\",\n        \"preview_image\": \"\",\n        \"product\": [\n            {\n                \"id\": 28,\n                \"name\": \"Instagram\",\n                \"category_id\": 16,\n                \"preview_image\": \"/Netflix_icon.svg\"\n            },\n            {\n                \"id\": 29,\n                \"name\": \"TikTok\",\n                \"category_id\": 16,\n                \"preview_image\": \"/Instagram_icon.png\"\n            }\n        ]\n    }\n]"}],"_postman_id":"2b288f86-2b8a-4620-a9fb-0e99b75258c0"},{"name":"Get Orders","id":"256bfc64-e939-45bc-a607-a1a5381bcdcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/orders","description":"<p>Get all user's orders.</p>\n","urlObject":{"path":["api","v1","orders"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"455b5c84-8cfb-464c-aa55-cd48edb3336b","name":"Get Orders","originalRequest":{"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/orders"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"orders\": [\r\n        {\r\n            \"number\": \"190913-0001\",\r\n            \"total\": 140.3,\r\n            \"status\": 3,\r\n            \"callback\": \"http:\\/\\/localhost\\/\"\r\n        },\r\n        {\r\n            \"number\": \"a210927-0001\",\r\n            \"total\": 19.8,\r\n            \"status\": 1,\r\n            \"callback\": \"\"\r\n        },\r\n        {\r\n            \"number\": \"a210927-0002\",\r\n            \"total\": 9.9,\r\n            \"status\": 1,\r\n            \"callback\": \"\"\r\n        },\r\n        {\r\n            \"number\": \"a210927-0003\",\r\n            \"total\": 13,\r\n            \"status\": 2,\r\n            \"callback\": \"\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"256bfc64-e939-45bc-a607-a1a5381bcdcb"},{"name":"Get Order","id":"2a108363-d2bf-4572-a740-39c2007afe8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/order?order_number=","description":"<p>Get order by order number.</p>\n","urlObject":{"path":["api","v1","order"],"host":["https://accsmaster.com"],"query":[{"description":{"content":"<p>Order number (required)</p>\n","type":"text/plain"},"key":"order_number","value":""}],"variable":[]}},"response":[{"id":"868b7410-0a4e-4cdc-b68d-eb21f963e2ff","name":"Get Order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://accsmaster.com/api/v1/order?order_number=a210927-0003","host":["https://accsmaster.com"],"path":["api","v1","order"],"query":[{"key":"order_number","value":"a210927-0003","description":"Order number (required)"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"number\": \"a210927-0003\",\r\n    \"total\": 9.9,\r\n    \"status\": 1,\r\n    \"callback\": \"\"\r\n}"}],"_postman_id":"2a108363-d2bf-4572-a740-39c2007afe8d"},{"name":"Get User","id":"229ac402-c432-418c-a030-f3e6ea6afc89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/user","urlObject":{"path":["api","v1","user"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"cbc20e6c-8707-45fd-a423-b2313498bfec","name":"Get User","originalRequest":{"method":"GET","header":[],"url":"https://accsmaster.com/api/v1/user"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n        \"id\": 32,\r\n        \"email\": \"blablabl@dev.null\",\r\n        \"is_activated\": true,\r\n        \"balance\": 0,\r\n        \"secret\": \"User secret\"\r\n}"}],"_postman_id":"229ac402-c432-418c-a030-f3e6ea6afc89"},{"name":"Refresh Token","id":"52552e12-7824-4e03-82d7-fb3440779c10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9pbnZlc3RuaXgubG9jYWxob3N0L3YxL3VzZXIvbG9naW4iLCJpYXQiOjE2MTM5OTg0NjksImV4cCI6MTYxNDAwMjA2OSwibmJmIjoxNjEzOTk4NDY5LCJqdGkiOiJxZ2dHaVMwU29uUE9KSGJJIn0.jXWVOCdQgI2BMXJEue3O0jBb9njY0yoo4T17dedV8KM","description":"<p>token to refresh</p>\n","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/refresh","description":"<p>Refresh token</p>\n","urlObject":{"path":["api","v1","user","refresh"],"host":["https://accsmaster.com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"124784b4-f401-4152-a66a-3c796b73456b","name":"Refresh Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9pbnZlc3RuaXgubG9jYWxob3N0L3YxL3VzZXIvbG9naW4iLCJpYXQiOjE2MTM5OTg0NjksImV4cCI6MTYxNDAwMjA2OSwibmJmIjoxNjEzOTk4NDY5LCJqdGkiOiJxZ2dHaVMwU29uUE9KSGJJIn0.jXWVOCdQgI2BMXJEue3O0jBb9njY0yoo4T17dedV8KM","description":"token to refresh","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/refresh"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIsImlzcyI6Imh0dHA6Ly9pbnZlc3RuaXgubG9jYWxob3N0L3YxL3VzZXIvbG9naW4iLCJpYXQiOjE2MTUyODUxMDUsImV4cCI6MTY0NjgyMTEwNSwibmJmIjoxNjE1Mjg1MTA1LCJqdGkiOiJwRnp6b09wV25OZFM4VVA4In0.Juod9Ft4hYaF2vt6mL7KNzklO4ju4PnM2dVXGA7Gbds\"\r\n}"}],"_postman_id":"52552e12-7824-4e03-82d7-fb3440779c10"},{"name":"Invalidate Token","id":"60d3ff37-ba55-46c9-bac1-df2bdf4f242a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9pbnZlc3RuaXgubG9jYWxob3N0L3YxL3VzZXIvbG9naW4iLCJpYXQiOjE2MTM5OTg0NjksImV4cCI6MTYxNDAwMjA2OSwibmJmIjoxNjEzOTk4NDY5LCJqdGkiOiJxZ2dHaVMwU29uUE9KSGJJIn0.jXWVOCdQgI2BMXJEue3O0jBb9njY0yoo4T17dedV8KM","description":"<p>token to invalidate</p>\n","type":"text"}]},"url":"https://accsmaster.com/api/v1/user/invalidate","description":"<p>Logout/Invalidate token</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","id":"ac520a6b-83c1-4eba-94e1-33b8f1847dd8","name":"AccsMaster Resellers","type":"collection"}},"urlObject":{"path":["api","v1","user","invalidate"],"host":["https://accsmaster.com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"9faa355d-99f6-4ae3-84fc-01b2e0db2155","name":"Logout","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9pbnZlc3RuaXgubG9jYWxob3N0L3YxL3VzZXIvbG9naW4iLCJpYXQiOjE2MTM5OTg0NjksImV4cCI6MTYxNDAwMjA2OSwibmJmIjoxNjEzOTk4NDY5LCJqdGkiOiJxZ2dHaVMwU29uUE9KSGJJIn0.jXWVOCdQgI2BMXJEue3O0jBb9njY0yoo4T17dedV8KM","description":"token to invalidate","type":"text"}]},"url":{"raw":"https://accsmaster.com/v1/user/invalidate","host":["https://accsmaster.com"],"path":["v1","user","invalidate"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Feb 2021 12:56:53 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"19"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"msg\": \"token_invalidated\"\r\n}"}],"_postman_id":"60d3ff37-ba55-46c9-bac1-df2bdf4f242a"},{"name":"Buy","id":"3c7de608-c3c0-47c7-9cd9-4e3ad05ab4a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"offer_id","value":"528","description":"<p>Offer Id that is purchased (required)</p>\n","type":"text"},{"key":"quantity","value":"1","description":"<p>Quantity of items in order (required)</p>\n","type":"text"},{"key":"callback_url","value":"","description":"<p>Url endpoint to send order data to (optional)</p>\n","type":"text"},{"key":"sandbox","value":"1","description":"<p>Sandbox mode (your balance won't be charged but it will ble checked/the order won't appear in your user profile), if you don't want to use sandbox mode omit this variable (optional)</p>\n","type":"text"}]},"url":"https://accsmaster.com/api/v1/buy","description":"<p>Buy offer.</p>\n<p>Order statuses: </p>\n<ul>\n<li>2 - in progress</li>\n<li>3 - complete</li>\n</ul>\n","urlObject":{"path":["api","v1","buy"],"host":["https://accsmaster.com"],"query":[],"variable":[]}},"response":[{"id":"91b1cfa7-c4ee-4334-9481-f9a15b9ec5cd","name":"Invalid promocode","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"offer_id","value":"528","description":"Offer Id that is purchased","type":"text"},{"key":"quantity","value":"12","description":"Quantity of items in order","type":"text"},{"key":"coupon","value":"YushUy89","description":"Discount coupon code","type":"text"}]},"url":"https://accsmaster.com/api/v1/buy"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Sep 2021 10:55:32 GMT"},{"key":"Server","value":"Apache/2.4.33 (Win32) OpenSSL/1.1.0h PHP/7.2.7"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"50"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"errors\": \"The promocode is not valid\"\n}"}],"_postman_id":"3c7de608-c3c0-47c7-9cd9-4e3ad05ab4a5"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"6d90b31d-d882-4b90-9144-bbeab33e337c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"94c9dfa8-5f38-447e-aea0-d4480108f235"}}],"variable":[{"key":"baseUrl","value":"https://accsmaster.com"}]}