{"info":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","description":"<html><head></head><body><h3 id=\"get-started-with-morelogin-open-apis\">Get started with MoreLogin Open APIs</h3>\n<p>The API function can help you programmatically perform basic functions such as quickly creating a cloud phone profile, start it or stop, and so on. It can also be used to debug or remotely control the cloud phone through ADB mode.</p>\n<p>For more interface descriptions, please check the website.</p>\n<p><a href=\"https://docs.morelogin.com/l/en/api-2-0-0\">MoreLogin API Documentation</a></p>\n<h4 id=\"1-get-api-id-and-api-key\">1. Get API ID and API Key</h4>\n<p>MoreLogin integrations use a API ID and API Key to authenticate API calls:</p>\n<ul>\n<li><p>A API ID identifies an member.</p>\n</li>\n<li><p>A API Key authenticates a client ID. To call MoreLogin APIs, you'll exchange your API ID and API Key for an access token. Keep this secret safe.</p>\n</li>\n</ul>\n<p>Here's how to get your API ID and API Key:</p>\n<ol>\n<li><p>Open client to get the API interface.</p>\n</li>\n<li><p>Copy the API ID and API key to global variables or for your app</p>\n</li>\n</ol>\n<h4 id=\"2-get-access-token\">2. Get access token</h4>\n<p>Exchange your API ID and API Key for an access token. The access token authenticates your app when calling MoreLogin APIs. You can call the MoreLogin OAuth API in any language. in the Postman app, complete the following:</p>\n<ol>\n<li><p>Select the Authorization collection.</p>\n</li>\n<li><p>Send requests using <em><strong>Generate access_token</strong></em></p>\n</li>\n<li><p>In the Post Response script, data will be automatically saved to the Globals variable.</p>\n</li>\n</ol>\n<p><strong>Sample Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": {\n        \"scope\": \"cloudphone\",\n        \"access_token\": \"{{vault:json-web-token}}\",\n        \"token_type\": \"Bearer\",\n        \"expires_in\": 3600,\n        \"client_metadata\": {\n            \"name\": \"Example Team\"\n        }\n    },\n    \"requestId\": \"4b727b1d53a445d0a46389465b562360\"\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"5154595","collectionId":"a55c45f0-ddc0-4135-9f2f-c539facada36","publishedId":"2sB3dQwpjt","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-12-10T08:11:42.000Z"},"item":[{"name":"Authorization","item":[{"name":"Generate access_token","event":[{"listen":"test","script":{"id":"87552d00-9107-404c-afc2-0f77b40db724","exec":["var resp = pm.response.json()","var data = resp.data","if(resp.code != 0 ){","    return;","}","","pm.globals.set(\"accessToken\", data.access_token);","pm.globals.set(\"tokenType\", data.token_type);","console.log(\"Saved access token: \" + data.token_type + \" \" + data.access_token);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"89896032-ce53-4f9b-9439-131ee84c80ba","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2930b14d-eb87-4940-bd73-d01a7361cc11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // API ID\n    \"client_id\": \"{{apiId}}\",\n    // API Key\n    \"client_secret\": \"{{apiKey}}\",\n    // Grant type.\n    \"grant_type\": \"client_credentials\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/oauth2/token","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>The credential type to exchange for an access token.</p>\n","type":"text/plain"},"key":"grant_type","value":"client_credentials"},{"disabled":true,"description":{"content":"<p>API ID</p>\n","type":"text/plain"},"key":"client_id","value":"string"},{"disabled":true,"description":{"content":"<p>API Key</p>\n","type":"text/plain"},"key":"client_secret","value":"string"}],"variable":[]}},"response":[{"id":"ddb1295e-83d9-4722-b719-2a0beb73d70f","name":"Generate access_token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{apiId}}\",  // API ID\n    \"client_secret\": \"{{apiKey}}\", // API Key\n    \"grant_type\": \"client_credentials\" // Grant type.\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.morelogin.com/oauth2/token","protocol":"https","host":["api","morelogin","com"],"path":["oauth2","token"],"query":[{"key":"grant_type","value":"client_credentials","description":"The credential type to exchange for an access token.","type":"text","disabled":true},{"key":"client_id","value":"string","description":"API ID","disabled":true},{"key":"client_secret","value":"string","description":"API Key","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"traceid","value":"5f34cedad90a486182e902214b31bee5"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Wed, 10 Dec 2025 03:30:09 GMT"},{"key":"content-length","value":"391"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    \"data\": {\n        \"scope\": \"cloudphone\",\n        // Token\n        \"access_token\": \"{{vault:json-web-token}}\",\n        // Token type\n        \"token_type\": \"Bearer\",\n        // Expiration time, in seconds\n        \"expires_in\": 3600,\n        \"client_metadata\": {\n            \"name\": \"648974154 dev\"\n        }\n    },\n    // Operation Request ID\n    \"requestId\": \"5f34cedad90a486182e902214b31bee5\"\n}"}],"_postman_id":"2930b14d-eb87-4940-bd73-d01a7361cc11"},{"name":"User Info","id":"169ec52c-103b-437b-acca-7d445a96cb7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.morelogin.com/oauth2/userinfo","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["oauth2","userinfo"],"host":["api","morelogin","com"],"query":[],"variable":[]}},"response":[{"id":"00e4fb68-fd3b-4327-9c4e-59653bef568c","name":"User Info","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{apiId}}\",\n    \"client_secret\": \"{{apiKey}}\",\n    \"grant_type\": \"client_credentials\"\n}"},"url":{"raw":"https://api.morelogin.com/oauth2/userinfo","protocol":"https","host":["api","morelogin","com"],"path":["oauth2","userinfo"],"query":[{"key":"grant_type","value":"client_credentials","description":"The credential type to exchange for an access token.","type":"text","disabled":true},{"key":"client_id","value":"string","description":"API ID","disabled":true},{"key":"client_secret","value":"string","description":"API Key","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"traceid","value":"fcdb28a984a74bdea4598966484944dc"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Wed, 10 Dec 2025 03:30:20 GMT"},{"key":"content-length","value":"222"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    \"data\": {\n        // Team ID\n        \"teamId\": \"1538499705577474\",\n        // Team Name\n        \"teamName\": \"Example team\",\n        // Member ID\n        \"memberId\": \"1538499705577473\",\n        // Nick Name\n        \"memberNickName\": \"Example\",\n        // Email\n        \"memberEmail\": \"example@gmail.com\"\n    },\n    // Operation Request ID\n    \"requestId\": \"fcdb28a984a74bdea4598966484944dc\"\n}"}],"_postman_id":"169ec52c-103b-437b-acca-7d445a96cb7a"}],"id":"5a38de52-ed32-4645-bc83-b3ede6dd1083","_postman_id":"5a38de52-ed32-4645-bc83-b3ede6dd1083","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"Cloud Phone","item":[{"name":"File APIs","item":[{"name":"Upload URL","id":"3dd549bb-f8f8-42a4-9ef7-516e922348a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Upload the filename to the phone\n    \"fileName\": \"tiktok.apk\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadUrl","description":"<p>Before uploading a file to the cloud phone, you need to obtain a temporary upload address through this interface. After successfully requesting the interface, we will return an address that supports PUT requests. Please push the file to this address within one hour. For example, using curl, the push command is:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X PUT -T &lt;Local file path&gt; \"&lt;presignedUrl&gt;\"\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","uploadUrl"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code> Upload the filename to the phone</p>\n","type":"text/plain"},"key":"fileName","value":"string"}],"variable":[]}},"response":[{"id":"56e7497f-6410-48de-b2a5-886db30f6c72","name":"Upload URL","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Upload the filename to the phone\n    \"fileName\": \"tiktok.apk\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadUrl"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:23:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"250"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": {\n        // Upload url\n        \"presignedUrl\": \"https://morelogin-s3-new.s3.cn-northwest-1.amazonaws.com.cn/prod/cloudPhoneOpenApi/1671522721456132/20251219/tiktok.apk?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20251219T023649Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential={{vault:aws-access-key}}%2F20251219%2Fcn-northwest-1%2Fs3%2Faws4_request&X-Amz-Signature=6cf53e44c94be549924e6cd60f1670a31a9dbeb078ca19b0163505b61099bfd4\"\n    },\n    \"requestId\": \"e994a4cksja34cf9b5d16251fa762849\"\n}"}],"_postman_id":"3dd549bb-f8f8-42a4-9ef7-516e922348a8"},{"name":"Uploading file","id":"7069100b-7875-4a7b-a393-61194a78863b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Download link: Obtained from the Upload URL interface\n    \"url\": \"https://\",\n    // Uploaded directories\n    \"uploadDest\": \"/sdcard/Download\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadFile","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","uploadFile"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code>Download link: Obtained from the Upload URL interface</p>\n","type":"text/plain"},"key":"url","value":"string"},{"disabled":true,"description":{"content":"<p><code>required</code>Uploaded directories</p>\n","type":"text/plain"},"key":"uploadDest","value":"string"}],"variable":[]}},"response":[{"id":"03240db5-fc6e-4a72-a76e-482e2a953f37","name":"Uploading file","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Upload the filename to the phone\n    \"url\": \"https://morelogin-s3-new.s3.cn-northwest-1.amazonaws.com.cn/prod/cloudPhoneOpenApi/1671522721456132/20251219/tiktok.apk?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20251219T023649Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ACHDSJAHDH%2F20251219%2Fcn-northwest-1%2Fs3%2Faws4_request&X-Amz-Signature=6cf53e44c94be549924e6cd60f1670a31a9dbeb078ca19b0163505b61099bfd4\",\n    // Uploaded directories\n    \"uploadDest\": \"/sdcard/Download\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadFile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:23:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"250"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": {\n        // Cloud phone ID\n        \"id\": \"1595543947673700\",\n        // Cloud Phone File ID\n        \"fileId\": \"1292831\",\n        // Upload status: 0 uploading, 1 upload successful, 2 upload failed\n        \"status\": 0\n    },\n    \"requestId\": \"lzoi4cksja34cf9b5d16251fa762849\"\n}"}],"_postman_id":"7069100b-7875-4a7b-a393-61194a78863b"},{"name":"Uploading file result","id":"572d59a2-63eb-4d5f-b8d7-ae6024eead3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Cloud Phone File ID\n    \"fileId\": \"1292831\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadFileResult","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","uploadFileResult"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code>Download link: Obtained from the Upload URL interface</p>\n","type":"text/plain"},"key":"url","value":"string"},{"disabled":true,"description":{"content":"<p><code>required</code>Uploaded directories</p>\n","type":"text/plain"},"key":"uploadDest","value":"string"}],"variable":[]}},"response":[{"id":"0210a79f-0bb3-4959-8221-f548abfc47a1","name":"Uploading file result","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\",\n    // Cloud Phone File ID\n    \"fileId\": \"1292831\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/uploadFileResult"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:23:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"250"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": {\n        // Cloud phone ID\n        \"id\": \"1595543947673700\",\n        // Cloud Phone File ID\n        \"fileId\": \"1292831\",\n        // Upload status: 0 uploading, 1 upload successful, 2 upload failed\n        \"status\": 0\n    },\n    \"requestId\": \"ckzi14cksja34cf9b5d16251fa762849\"\n}"}],"_postman_id":"572d59a2-63eb-4d5f-b8d7-ae6024eead3a"}],"id":"f30d3fc1-6ea9-425d-8467-bd0eccdd1b40","_postman_id":"f30d3fc1-6ea9-425d-8467-bd0eccdd1b40","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"App APIs","item":[{"name":"Install a Specified APP","id":"0c2e0b2c-6ec0-4850-8966-49045db0a223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // App Version ID\n    \"appVersionId\": null,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\",\n    // App Version Code\n    \"versionCode\": \"42.6.16\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/install","description":"<p>Install a Specified APP</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","install"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>App Version ID</p>\n","type":"text/plain"},"key":"appVersionId","value":"int"},{"disabled":true,"description":{"content":"<p>Package name</p>\n","type":"text/plain"},"key":"packageName","value":"string"},{"disabled":true,"description":{"content":"<p>App Version Code</p>\n","type":"text/plain"},"key":"versionCode","value":"string"}],"variable":[]}},"response":[{"id":"ffee7d2e-c555-45f6-afb6-787ff14878cb","name":"Install a Specified APP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // App Version ID\n    \"appVersionId\": null,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\",\n    // App Version Code\n    \"versionCode\": \"42.6.16\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/install"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"17b30ck1985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"0c2e0b2c-6ec0-4850-8966-49045db0a223"},{"name":"Start APP","id":"1b6e9cbd-3cdc-414d-ae23-8abf3dae3aab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/start","description":"<p>Start App on Cloud Phone</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","start"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>Package name</p>\n","type":"text/plain"},"key":"packageName","value":"string"}],"variable":[]}},"response":[{"id":"4c07e0db-f095-432b-812a-4d1ad5c2502c","name":"Start APP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/start"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"17b3ckso985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"1b6e9cbd-3cdc-414d-ae23-8abf3dae3aab"},{"name":"Restart APP","id":"487c3179-bce3-48d0-b1b1-d797d62c7bf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/restart","description":"<p>Restart App on Cloud Phone</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","restart"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>Package name</p>\n","type":"text/plain"},"key":"packageName","value":"string"}],"variable":[]}},"response":[{"id":"920adc1f-81bf-4e3e-a89c-f9e43357766f","name":"Restart APP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/restart"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"17b96814985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"487c3179-bce3-48d0-b1b1-d797d62c7bf3"},{"name":"Stop APP","id":"82e6dc81-37c0-404c-904e-4f346a5a06bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/stop","description":"<p>Terminate App Process on the Cloud Phone</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","stop"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>Package name</p>\n","type":"text/plain"},"key":"packageName","value":"string"}],"variable":[]}},"response":[{"id":"cef14f77-b6c1-417b-8152-0ef7ab123357","name":"Stop APP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/stop"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"17b38817385640a2b2745759d69b4e49\"\n}"}],"_postman_id":"82e6dc81-37c0-404c-904e-4f346a5a06bc"},{"name":"Uninstall APP","id":"a5a6d318-4f36-43e5-a0ec-655b58597387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/uninstall","description":"<p>Uninstall Cloud Phone App</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","uninstall"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>Package name</p>\n","type":"text/plain"},"key":"packageName","value":"string"}],"variable":[]}},"response":[{"id":"d85c201a-d6df-412d-871f-ce1c2bf804ee","name":"Uninstall APP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/uninstall"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"175918d64985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"a5a6d318-4f36-43e5-a0ec-655b58597387"},{"name":"Retrieve the List of Installed Apps","id":"faec57c7-a51a-4792-be6a-54a7e57dc863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // AppName (supports fuzzy search)\n    \"appName\": \"TikTok\",\n    // Page Number\n    \"pageNum\": 0,\n    // Page Size\n    \"pageSize\": 20\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/page","description":"<p>Query for Installed Applications List</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","app","page"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>AppName (supports fuzzy search)</p>\n","type":"text/plain"},"key":"appName","value":"string"},{"disabled":true,"description":{"content":"<p>Current page. Default 1</p>\n","type":"text/plain"},"key":"pageNum","value":"int"},{"disabled":true,"description":{"content":"<p>Number of articles per page, default 10</p>\n","type":"text/plain"},"key":"pageSize","value":"int"}],"variable":[]}},"response":[{"id":"7e57505f-5637-47e3-a539-40d4cf12da7a","name":"Retrieve the List of Installed Apps","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // AppName (supports fuzzy search)\n    \"appName\": \"TikTok\",\n    // Page Number\n    \"pageNum\": 0,\n    // Page Size\n    \"pageSize\": 20\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": {\n        \"total\": \"5\",\n        \"current\": \"0\",\n        \"pages\": \"1\",\n        \"dataList\": [\n            {\n                \"id\": \"1602091265409179\",\n                \"appName\": \"TikTok\",\n                // App icon\n                \"appIcon\": \"https://get.morelogin.com/cloud_phone/app/d029862e6b925fb38159e3deb159891d_icon.png\",\n                //Package name\n                \"packageName\": \"com.zhiliaoapp.musically\",\n                \"categoryValue\": 3,\n                // App version\n                \"appVersionList\": [\n                    {\n                        // App version ID\n                        \"id\": \"1671847899635713\",\n                        // App install status: 0-installing, 1-installed successfully, 2-installation failed, others-not installed\n                        \"installStatus\": 0,\n                        // App version code\n                        \"versionCode\": \"2024206160\",\n                        // App version name\n                        \"versionName\": \"42.6.16\"\n                    }\n                ],\n                // Sort order number\n                \"sortNo\": 0\n            }\n        ]\n    },\n    // Operation Request ID\n    \"requestId\": \"17b38dxkaj15640a2b2745759d69b4e49\"\n}"}],"_postman_id":"faec57c7-a51a-4792-be6a-54a7e57dc863"}],"id":"c5f3de6b-9c7a-4c8c-a253-4e729064b55d","_postman_id":"c5f3de6b-9c7a-4c8c-a253-4e729064b55d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"Getting a list of cloud phone profiles","id":"4bfe6d7b-f949-438b-ac30-3b1277e6324f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // According to whether the cloud phone has been bound to the proxy query true: bound; false: unbound\n    \"bindIp\": null,\n    // Keywords. Can be queried by proxy information, group name, label name, profile name\n    \"keyword\": \"\",\n    // Current page. Default 1\n    \"pageNo\": 1,\n    // Number of entries per page. Default 10\n    \"pageSize\": 10,\n    // Dynamic sorting of fields. Currently the cloud phone supports: cloud phone profile name-envName, creation time-createDate field sorting\n    \"sort\": null,\n    // Search by cloud phone ID\n    \"ids\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/page","description":"<p>Queries information about existed cloud phone profiles. Users can only query the cloud phone profile that they have permission. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","page"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Current page. Default 1</p>\n","type":"text/plain"},"key":"pageNo","value":"int"},{"disabled":true,"description":{"content":"<p>Number of entries per page. Default 10</p>\n","type":"text/plain"},"key":"pageSize","value":"int"},{"disabled":true,"description":{"content":"<p>According to whether the cloud phone has been bound to the proxy query\n<em>true: bound; false: unbound</em></p>\n","type":"text/plain"},"key":"bindIp","value":"int"},{"disabled":true,"description":{"content":"<p>Keywords. Can be queried by proxy information, group name, label name, profile name</p>\n","type":"text/plain"},"key":"keyword","value":"string"},{"disabled":true,"description":{"content":"<p>Dynamic sorting of fields. Currently the cloud phone supports: cloud phone profile name-envName, creation time-createDate field sorting</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        // Sorting direction.\n        // asc: ascending; desc: descending\n        \"sortDirection\": \"\",\n        // Sort Fields\n        // Cloud phone profile name: envName\n        // Creation time: createDate\n        \"sortFiled\": \"\"\n    }\n]\n</code></pre>\n","type":"text/plain"},"key":"sort","value":"array"},{"disabled":true,"description":{"content":"<p>Search by cloud phone ID</p>\n","type":"text/plain"},"key":"ids","value":"array"}],"variable":[]}},"response":[{"id":"769bd5fc-4680-4e62-80b5-9c20904ecc32","name":"Getting a list of cloud phone profiles","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // According to whether the cloud phone has been bound to the proxy query true: bound; false: unbound\n    \"bindIp\": null,\n    // Keywords. Can be queried by proxy information, group name, label name, profile name\n    \"keyword\": \"\",\n    // Current page. Default 1\n    \"pageNo\": 1,\n    // Number of entries per page. Default 10\n    \"pageSize\": 10,\n    // Dynamic sorting of fields. Currently the cloud phone supports: cloud phone profile name-envName, creation time-createDate field sorting\n    \"sort\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:01:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"2730"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": {\n        \"current\": 0,\n        \"dataList\": [\n            {\n                // Abnormal status: 0-No abnormality 1-Unactivated 2-Out-of-contract 3-Oversold 4-Deactivated\n                \"abnormalStatus\": 0,\n                // adb information\n                \"adbInfo\": {\n                    // adb ip\n                    \"adbIp\": \"\",\n                    // adb connection password\n                    \"adbPassword\": \"\",\n                    // adb port\n                    \"adbPort\": \"\",\n                    // Failure Remarks Information\n                    \"remark\": \"\",\n                    \"success\": 0 // Successful acquisition 1=Yes 0=No\n                },\n                // Billing: 0-Free 1-Flexible subscription 2-Monthly\n                \"billingType\": 0,\n                // Creation time\n                \"createDate\": \"\",\n                // Create User\n                \"createMember\": 0,\n                // Create User\n                \"createMemberName\": \"\",\n                // Whether to enable adb\n                \"enableAdb\": true,\n                // Cloud Phone Name\n                \"envName\": \"\",\n                // Profile Remarks\n                \"envRemark\": \"\",\n                // Profile Status: 0-New 1-Creation Failed 2-Stop 3-Starting up 4-Start 5-Reset In Progress\n                \"envStatus\": 0,\n                // expiration time\n                \"expireTime\": 0,\n                // Group Id\n                \"groupId\": 0,\n                // Group Information\n                \"groupInfo\": [\n                    {\n                        // Tag marking\n                        \"id\": 0,\n                        // Tag icon\n                        \"tagIcon\": \"\",\n                        // Tag name\n                        \"tagName\": \"\",\n                        // Tag Source: ENV profile, PROXY proxy\n                        \"tagSource\": \"\",\n                        // Tag type: TAG tag, GROUP group\n                        \"tagType\": \"\"\n                    }\n                ],\n                // Cloud phone Id\n                \"id\": 0,\n                // Last connection time\n                \"lastConnectDate\": \"\",\n                //Last Connector ID\n                \"lastConnectMemberId\": 0,\n                // Last Connector Name\n                \"lastConnectMemberName\": \"\",\n                // Last start time\n                \"lastStartDate\": \"\",\n                // Last start member ID\n                \"lastStartMemberId\": 0,\n                // Last start member name\n                \"lastStartMemberName\": \"\",\n                // proxy information\n                \"proxy\": {\n                    // country    \n                    \"country\": \"\",\n                    // countryCode\n                    \"countryCode\": \"\",\n                    // createDate\n                    \"createDate\": \"\",\n                    // 1 - deleted 2 - not deleted\n                    \"delFlag\": 0,\n                    // Expiration time\n                    \"expiryTime\": 0,\n                    // Export IP\n                    \"exportIp\": \"\",\n                    // Group ID\n                    \"groupId\": 0,\n                    // Primary key\n                    \"id\": 0,\n                    // Provider area\n                    \"providerCode\": \"\",\n                    // Proxy area\n                    \"proxyAreaCode\": \"\",\n                    // Proxy type: 0-site group 1-cloud platform 2-own IP 3-vps 4-virtual machine\n                    \"proxyCatagoryType\": 0,\n                    // Detection status: 0 - pending detection 1 - successful detection 2 - detection failure 3 - unknown error\n                    \"proxyCheckStatus\": 0,\n                    // Proxy Information\n                    \"proxyInfo\": \"\",\n                    // Proxy IP\n                    \"proxyIp\": \"\",\n                    // Proxy name\n                    \"proxyName\": \"\",\n                    // Proxy port\n                    \"proxyPort\": 0,\n                    // Platform proxy country\n                    \"proxyRegionCode\": \"\",\n                    // 0-Normal 1-Pending allocation 2-Upgrading 3-Expired\n                    \"proxyStatus\": 0,\n                    // Proxy subscription\n                    \"proxySub\": {\n                        // Subscription records in activation    \n                        \"activeRecordId\": 0,\n                        // Proxy ID\n                        \"businessId\": \"\",\n                        // Create a member\n                        \"createMember\": 0,\n                        // End time\n                        \"endTime\": 0,\n                        // Subscription ID\n                        \"id\": 0,\n                        // Next deduction time\n                        \"nextBillingTime\": 0,\n                        // Validity period\n                        \"startTime\": 0,\n                        // subPayMethod\n                        \"subPayMethod\": \"\",\n                        // Subscription Status: 0-Pending 1-Subscribed 2-Cancelled\n                        \"subStatus\": 0,\n                        // Subscription Type: 1-Agent 2-Package\n                        \"subType\": 0,\n                        \"teamId\": 0 // Team ID\n                    },\n                    // Proxy type：0-http 1-https 2-socks5 4-Oxylabs 5-Proxys.io 6-GeoSurf 9-Oxylabsauto 10-Trogan 11-Shadowsocks 12-vmess\n                    \"proxyType\": 0,\n                    // Platform Proxy Type Code\n                    \"proxyTypeCode\": \"\",\n                    // Cloud Platform Key\n                    \"regionKey\": \"\",\n                    // Release time: deletion time if deleted, expiration time if expired\n                    \"releaseTime\": \"\",\n                    \"uniqueId\": 0 // Sort ID\n                },\n                // Proxy Status: 0-Not Detected 1-Detecting 2-Detecting Failed 3-Detecting Successful\n                \"proxyStatus\": 0,\n                // Whether adb is supported\n                \"supportAdb\": true,\n                // Tag IDs\n                \"tagIds\": [],\n                // Tag information\n                \"tagInfo\": [\n                    {\n                        // Primary key\n                        \"id\": 0,\n                        \"tagIcon\": \"\",\n                        \"tagName\": \"\",\n                        \"tagSource\": \"\",\n                        \"tagType\": \"\"\n                    }\n                ],\n                // Modify Time\n                \"updateDate\": \"\",\n                \"updateMember\": 0 // Modify User\n            }\n        ],\n        \"pages\": 0,\n        \"total\": 0\n    },\n    // Operation Request ID\n    \"requestId\": \"\"\n}"}],"_postman_id":"4bfe6d7b-f949-438b-ac30-3b1277e6324f"},{"name":"Creating a Cloud Phone Profile","id":"fea5c753-fbdb-4cc3-8b1d-64fe984d3cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Whether to automatically match the geographic location \n    // true: yes; false: no \n    // Default: true\n    \"automaticGeo\": true,\n    // Whether to automatically match the language\n    // true: yes; false: no\n    // Default: true\n    \"automaticLanguage\": true,\n    // Whether to auto-match location (time zone, country)\n    // true: yes; false: no\n    // Default: true\n    \"automaticLocation\": true,\n    // Country, e.g. us\n    // Check appendix for country code details\n    \"country\": \"\",\n    // Time zone, e.g. America/New_York\n    // Check attachment for specific time zones\n    \"timezone\": \"\",\n    // Language, e.g. en-US\n    // Check appendix for details of specific languages\n    \"language\": \"\",\n    // Altitude Example: 100\n    \"altitude\": 0,\n    // Latitude. Example: 22.309182\n    \"latitude\": 0,\n    // Longitude. Example: 114.176817\n    \"longitude\": 0,\n    // Profile Remarks Length limit 1500 characters\n    \"envRemark\": \"\",\n    // Specify the group of cloud phone profiles\n    // (This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.)\n    \"groupId\": \"\",\n    // Proxy ID\n    // Default 0, limit minimum 0\n    \"proxyId\": null,\n    // Number of cloud phone created Range of values: [1-10]\n    \"quantity\": 1,\n    // Cloud Phone model\n    // 10002：Model X\n    // 10004：Model Y\n    // Refer to the appendix for a detailed description of the model's parameters\n    \"skuId\": 9999\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/create","description":"<p>Create a new cloud phone profile, support batch creation. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","create"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Number of cloud phone created</p>\n<p><em>Range of values: [1-10]</em></p>\n","type":"text/plain"},"key":"quantity","value":"int"},{"disabled":true,"description":{"content":"<p>Cloud Phone model</p>\n<ul>\n<li>10002：Model X</li>\n<li>10004：Model Y</li>\n</ul>\n<blockquote>\n<p>Refer to the appendix for a detailed description of the model's parameters</p>\n</blockquote>\n","type":"text/plain"},"key":"skuId","value":"int"},{"disabled":true,"description":{"content":"<p>Whether to automatically match the geographic location <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticGeo","value":"boolean"},{"disabled":true,"description":{"content":"<p>Whether to automatically match the language <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticLanguage","value":"boolean"},{"disabled":true,"description":{"content":"<p>Whether to auto-match location (time zone, country) <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticLocation","value":"boolean"},{"disabled":true,"description":{"content":"<p>Country, e.g. us</p>\n<blockquote>\n<p>Check appendix for country code details</p>\n</blockquote>\n","type":"text/plain"},"key":"country","value":"string"},{"disabled":true,"description":{"content":"<p>Time zone, e.g. America/New_York\n<em>Check attachment for specific time zones</em></p>\n","type":"text/plain"},"key":"timezone","value":"string"},{"disabled":true,"description":{"content":"<p>Language, e.g. en-US</p>\n<blockquote>\n<p>Check appendix for details of specific languages</p>\n</blockquote>\n","type":"text/plain"},"key":"language","value":"string"},{"disabled":true,"description":{"content":"<p>Latitude.</p>\n<p><em>Example: 22.309182</em></p>\n","type":"text/plain"},"key":"latitude","value":"int"},{"disabled":true,"description":{"content":"<p>Longitude.</p>\n<p><em>Example: 114.176817</em></p>\n","type":"text/plain"},"key":"longitude","value":"int"},{"disabled":true,"description":{"content":"<p>Altitude</p>\n<p><em>Example: 100</em></p>\n","type":"text/plain"},"key":"altitude","value":"int"},{"disabled":true,"description":{"content":"<p>Profile Remarks</p>\n<p><em>Length limit 1500 characters</em></p>\n","type":"text/plain"},"key":"envRemark","value":"string"},{"disabled":true,"description":{"content":"<p>Specify the group of cloud phone profiles</p>\n<blockquote>\n<p>This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.</p>\n</blockquote>\n","type":"text/plain"},"key":"groupId","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy ID</p>\n<p><em>Default 0, limit minimum 0</em></p>\n","type":"text/plain"},"key":"proxyId","value":"int"}],"variable":[]}},"response":[{"id":"e5559ec7-54d0-4050-bcca-2b5bec17373a","name":"Creating a Cloud Phone Profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Whether to automatically match the geographic location \n    // true: yes; false: no \n    // Default: true\n    \"automaticGeo\": true,\n    // Whether to automatically match the language\n    // true: yes; false: no\n    // Default: true\n    \"automaticLanguage\": true,\n    // Whether to auto-match location (time zone, country)\n    // true: yes; false: no\n    // Default: true\n    \"automaticLocation\": true,\n    // Country, e.g. us\n    // Check appendix for country code details\n    \"country\": \"\",\n    // Time zone, e.g. America/New_York\n    // Check attachment for specific time zones\n    \"timezone\": \"\",\n    // Language, e.g. en-US\n    // Check appendix for details of specific languages\n    \"language\": \"\",\n    // Altitude Example: 100\n    \"altitude\": 0,\n    // Latitude. Example: 22.309182\n    \"latitude\": 0,\n    // Longitude. Example: 114.176817\n    \"longitude\": 0,\n    // Profile Remarks Length limit 1500 characters\n    \"envRemark\": \"\",\n    // Specify the group of cloud phone profiles\n    // (This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.)\n    \"groupId\": \"\",\n    // Proxy ID\n    // Default 0, limit minimum 0\n    \"proxyId\": null,\n    // Number of cloud phone created Range of values: [1-10]\n    \"quantity\": 1,\n    // Cloud Phone model\n    // 9999：Model A\n    // 10000：Model B\n    // Refer to the appendix for a detailed description of the model's parameters\n    \"skuId\": 9999\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:11:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": [\n        // Cloud Phone ID\n        \"1609105345143365\"\n    ],\n    \"requestId\": \"e2b829044ec54facb1b76f029794ba09\"\n}"}],"_postman_id":"fea5c753-fbdb-4cc3-8b1d-64fe984d3cb8"},{"name":"Start up Cloud Phone","id":"4f5d50c9-383f-4430-83f9-1dcc9ef70e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // ID of the cloud phone to be started up\n    \"id\": \"1603178812956883\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/powerOn","description":"<p>Start the cloud phone profile. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","powerOn"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> ID of the cloud phone to be started up</p>\n","type":"text/plain"},"key":"id","value":"int"}],"variable":[]}},"response":[{"id":"262ec187-0710-4380-9494-f2d58d04e690","name":"Start up Cloud Phone","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"id\": \"1603178812956883\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/powerOn"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:13:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"b54c33c21d544e379e2d9fc49e9e0b93\"\n}"}],"_postman_id":"4f5d50c9-383f-4430-83f9-1dcc9ef70e7d"},{"name":"Shut down the cloud phone","id":"0af649e9-2f27-4cce-9250-170f2f5f7b90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // ID of Cloud Phone which need to be shut down\n    \"id\": \"1603178812956883\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/powerOff","description":"<p>Stops the cloud phone profile. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","powerOff"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> ID of Cloud Phone which need to be shut down</p>\n","type":"text/plain"},"key":"id","value":"int"}],"variable":[]}},"response":[{"id":"c1677913-092c-402c-9e89-4d89ef477dfd","name":"Shut down the cloud phone","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"1603178812956883\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/powerOff"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:14:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"358a94e80eec47c28c0564afa71ef9b8\"\n}"}],"_postman_id":"0af649e9-2f27-4cce-9250-170f2f5f7b90"},{"name":"Modify the cloud phone profile","id":"a1c35ed3-7fe9-4807-9fac-4eb6fc78d1ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": [\n        \"1603178812956883\"\n    ],\n    // Whether to automatically match the geographic location \n    // true: yes; false: no \n    // Default: true\n    \"automaticGeo\": true,\n    // Whether to automatically match the language\n    // true: yes; false: no\n    // Default: true\n    \"automaticLanguage\": true,\n    // Whether to auto-match location (time zone, country)\n    // true: yes; false: no\n    // Default: true\n    \"automaticLocation\": true,\n    // Country, e.g. us\n    // Check appendix for country code details\n    \"country\": \"\",\n    // Time zone, e.g. America/New_York\n    // Check attachment for specific time zones\n    \"timezone\": \"\",\n    // Language, e.g. en-US\n    // Check appendix for details of specific languages\n    \"language\": \"\",\n    // Altitude Example: 100\n    \"altitude\": 0,\n    // Latitude. Example: 22.309182\n    \"latitude\": 0,\n    // Longitude. Example: 114.176817\n    \"longitude\": 0,\n    // Profile Remarks Length limit 1500 characters\n    \"envRemark\": \"New remark\",\n    // Specify the group of cloud phone profiles\n    // (This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.)\n    \"groupId\": null,\n    // Proxy ID\n    // Default 0, limit minimum 0\n    \"proxyId\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/edit/batch","description":"<p>Modify the cloud phone profile information, can batch modify the cloud phone binding proxy and other information. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","edit","batch"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n<blockquote>\n<p>Example：[1558968155668507,1558968635916317]</p>\n</blockquote>\n","type":"text/plain"},"key":"id","value":"array"},{"disabled":true,"description":{"content":"<p>Whether to automatically match the geographic location <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticGeo","value":"boolean"},{"disabled":true,"description":{"content":"<p>Whether to automatically match the language <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticLanguage","value":"boolean"},{"disabled":true,"description":{"content":"<p>Whether to auto-match location (time zone, country) <strong>Default: true</strong></p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"automaticLocation","value":"boolean"},{"disabled":true,"description":{"content":"<p>Country, e.g. us</p>\n<blockquote>\n<p>Check appendix for country code details</p>\n</blockquote>\n","type":"text/plain"},"key":"country","value":"string"},{"disabled":true,"description":{"content":"<p>Time zone, e.g. America/New_York</p>\n<blockquote>\n<p>Check attachment for specific time zones</p>\n</blockquote>\n","type":"text/plain"},"key":"timezone","value":"string"},{"disabled":true,"description":{"content":"<p>Language, e.g. en-US</p>\n<blockquote>\n<p>Check appendix for details of specific languages</p>\n</blockquote>\n","type":"text/plain"},"key":"language","value":"string"},{"disabled":true,"description":{"content":"<p>Latitude.</p>\n<p><em>Example: 22.309182</em></p>\n","type":"text/plain"},"key":"latitude","value":"int"},{"disabled":true,"description":{"content":"<p>Longitude.\n<em>Example: 114.176817</em></p>\n","type":"text/plain"},"key":"longitude","value":"int"},{"disabled":true,"description":{"content":"<p>Altitude</p>\n<p><em>Example: 100</em></p>\n","type":"text/plain"},"key":"altitude","value":"int"},{"disabled":true,"description":{"content":"<p>Profile Remarks\n<em>Length limit 1500 characters</em></p>\n","type":"text/plain"},"key":"envRemark","value":"string"},{"disabled":true,"description":{"content":"<p>Specify the group of cloud phone profiles</p>\n<blockquote>\n<p>This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.</p>\n</blockquote>\n","type":"text/plain"},"key":"groupId","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy ID</p>\n<p><em>Default 0, limit minimum 0</em></p>\n","type":"text/plain"},"key":"proxyId","value":"int"}],"variable":[]}},"response":[{"id":"29071e49-b297-430a-86bd-7d4733bc96c7","name":"Modify the cloud phone profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": [\n        \"1603178812956883\"\n    ],\n    // Whether to automatically match the geographic location \n    // true: yes; false: no \n    // Default: true\n    \"automaticGeo\": true,\n    // Whether to automatically match the language\n    // true: yes; false: no\n    // Default: true\n    \"automaticLanguage\": true,\n    // Whether to auto-match location (time zone, country)\n    // true: yes; false: no\n    // Default: true\n    \"automaticLocation\": true,\n    // Country, e.g. us\n    // Check appendix for country code details\n    \"country\": \"\",\n    // Time zone, e.g. America/New_York\n    // Check attachment for specific time zones\n    \"timezone\": \"\",\n    // Language, e.g. en-US\n    // Check appendix for details of specific languages\n    \"language\": \"\",\n    // Altitude Example: 100\n    \"altitude\": 0,\n    // Latitude. Example: 22.309182\n    \"latitude\": 0,\n    // Longitude. Example: 114.176817\n    \"longitude\": 0,\n    // Profile Remarks Length limit 1500 characters\n    \"envRemark\": \"New remark\",\n    // Specify the group of cloud phone profiles\n    // (This field is required if you do not have the \"All profiles\" permission in grouped authorization mode.)\n    \"groupId\": null,\n    // Proxy ID\n    // Default 0, limit minimum 0\n    \"proxyId\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/edit/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:16:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"b07dc6314c1d4c7e8102ea49e6d09363\"\n}"}],"_postman_id":"a1c35ed3-7fe9-4807-9fac-4eb6fc78d1ed"},{"name":"Delete Cloud Phone Profile","id":"0b5ed86d-7264-42ca-91c4-438a61eefaa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID to be deleted\n    \"ids\": [\n        \"1603178812956883\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/delete/batch","description":"<p>Batch delete cloud phone profiles. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","delete","batch"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Cloud phone ID to be deleted</p>\n","type":"text/plain"},"key":"ids","value":"array"}],"variable":[]}},"response":[{"id":"ba09a92a-234d-43a1-892f-80e2f80c85a4","name":"Delete Cloud Phone Profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"ids\": [\n        \"1603178812956883\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/delete/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:17:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"65579605430d47a1ac3eebb343b1d550\"\n}"}],"_postman_id":"0b5ed86d-7264-42ca-91c4-438a61eefaa2"},{"name":"Update Cloud Phone ADB Status","id":"fcc9581b-2027-45b4-a268-617b5a648204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Need to enable/disable cloud phone ID for ADB\n    \"ids\": [\n        \"1603178812956883\"\n    ],\n    // Whether to enable adb\n    // true: on; false: off\n    \"enableAdb\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/updateAdb","description":"<p>Batch enable/disable the ADB status of the cloud phone profile. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","updateAdb"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Need to enable/disable cloud phone ID for ADB</p>\n<p><em>Example:[1571806316503059]</em></p>\n","type":"text/plain"},"key":"ids","value":"array"},{"disabled":true,"description":{"content":"<p>Whether to enable adb</p>\n<p><em>true: on; false: off</em></p>\n","type":"text/plain"},"key":"enableAdb","value":"boolean"}],"variable":[]}},"response":[{"id":"cddb2541-1ce6-4d69-91b0-b69318d1b1bf","name":"Delete Cloud Phone Profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"ids\": [\"1603178812956883\"]\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8082/cloudphone/delete/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:17:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"65579605430d47a1ac3eebb343b1d550\"\n}"}],"_postman_id":"fcc9581b-2027-45b4-a268-617b5a648204"},{"name":"One-click new cloud phone","id":"35548eaa-335e-439d-bfa3-2a43fee5bc74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/newMachine","description":"<p>Performs one-click new phone operation for cloud phones. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","newMachine"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"}],"variable":[]}},"response":[{"id":"2db9319e-6868-47dc-88c3-ffa65498ec52","name":"One-click new cloud phone","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": \"1595543947673700\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/newMachine"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:23:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"250"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    // Return data\n    \"data\": null,\n    \"requestId\": \"e994a4c801a34cf9b5d16251fa762849\"\n}"}],"_postman_id":"35548eaa-335e-439d-bfa3-2a43fee5bc74"},{"name":"Execute Shell Command","id":"35e50a43-1cf5-4dcf-8439-a0b7dc402aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud Phone ID\n    \"id\": 1640311487656515,\n    // The command to execute. If multiple lines are needed, separate them with ;\n    \"command\": \"echo 1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/exeCommand","description":"<p>Execute a shell command on the cloud phone.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","exeCommand"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code> The command to execute. If multiple lines are needed, separate them with ;</p>\n","type":"text/plain"},"key":"command","value":"string"}],"variable":[]}},"response":[{"id":"20456db7-ef46-4503-9315-e14f50d65c73","name":"Execute Shell Command","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud Phone ID\n    \"id\": 1640311487656515,\n    // The command to execute. If multiple lines are needed, separate them with ;\n    \"command\": \"echo 1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/exeCommand"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Execution result\n    \"data\": \"1\\n\",\n    // Operation Request ID\n    \"requestId\": \"ae1e788387444eed84a8e6fb11419b11\"\n}"}],"_postman_id":"35e50a43-1cf5-4dcf-8439-a0b7dc402aa4"},{"name":"Execute Shell Command Copy","id":"a1b2006b-069a-4122-82e8-64246e198d5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud Phone ID\n    \"id\": 1640311487656515,\n    // The command to execute. If multiple lines are needed, separate them with ;\n    \"command\": \"echo 1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/exeCommand","description":"<p>Execute a shell command on the cloud phone.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","exeCommand"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code> The command to execute. If multiple lines are needed, separate them with ;</p>\n","type":"text/plain"},"key":"command","value":"string"}],"variable":[]}},"response":[{"id":"7bd6be6e-1497-44e0-97ba-429d4b0960ea","name":"Execute Shell Command","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud Phone ID\n    \"id\": 1640311487656515,\n    // The command to execute. If multiple lines are needed, separate them with ;\n    \"command\": \"echo 1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/exeCommand"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Execution result\n    \"data\": \"1\\n\",\n    // Operation Request ID\n    \"requestId\": \"ae1e788387444eed84a8e6fb11419b11\"\n}"}],"_postman_id":"a1b2006b-069a-4122-82e8-64246e198d5e"},{"name":"Query Device Brands and Models","id":"f28a419d-29f1-4ab2-b0b7-623d41614640","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"skuId\": 10016\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/brand/models","description":"<p>Query Device Brands and Models</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","brand","models"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> skuId</p>\n","type":"text/plain"},"key":"skuId","value":"int"}],"variable":[]}},"response":[{"id":"5c5081f5-8041-4f29-b203-7a401723883c","name":"Query Device Brands and Models","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // App Version ID\n    \"appVersionId\": null,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\",\n    // App Version Code\n    \"versionCode\": \"42.6.16\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/brand/models"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": [\n        {\n            // Brand\n\t\t\t\"brand\": \"\",\n            // Brand alias\n\t\t\t\"brandAlias\": \"\",\n            // Model ID\n\t\t\t\"id\": 0,\n            // Model\n\t\t\t\"model\": \"\"\n\t\t}\n    ],\n    // Operation Request ID\n    \"requestId\": \"17b339xj985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"f28a419d-29f1-4ab2-b0b7-623d41614640"},{"name":"Query Device Brands and Models Copy","id":"5cd3e410-0817-4288-b25e-4a5f1ceb0ab0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"skuId\": 10016\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/brand/models","description":"<p>Query Device Brands and Models</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","brand","models"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> skuId</p>\n","type":"text/plain"},"key":"skuId","value":"int"}],"variable":[]}},"response":[{"id":"f7c00955-5dd4-47a3-8be2-cfaf1871bded","name":"Query Device Brands and Models","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // App Version ID\n    \"appVersionId\": null,\n    // Package name\n    \"packageName\": \"com.zhiliaoapp.musically\",\n    // App Version Code\n    \"versionCode\": \"42.6.16\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/brand/models"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": [\n        {\n            // Brand\n\t\t\t\"brand\": \"\",\n            // Brand alias\n\t\t\t\"brandAlias\": \"\",\n            // Model ID\n\t\t\t\"id\": 0,\n            // Model\n\t\t\t\"model\": \"\"\n\t\t}\n    ],\n    // Operation Request ID\n    \"requestId\": \"17b339xj985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"5cd3e410-0817-4288-b25e-4a5f1ceb0ab0"},{"name":"Set KeyBox","id":"ef162878-755e-4647-9a71-b45148e52509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // File path：/sdcard/Download/xxx.xml\n    \"filePath\": \"/sdcard/Download/xxx.xml\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/setKeyBox","description":"<p>Set KeyBox</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["cloudphone","setKeyBox"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Cloud phone ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code> File path：/sdcard/Download/xxx.xml</p>\n","type":"text/plain"},"key":"filePath","value":"string"}],"variable":[]}},"response":[{"id":"89bd85a0-ce29-425e-9d25-fe3bedc1837c","name":"Set KeyBox","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Cloud phone ID\n    \"id\": 1671522721456132,\n    // File path：/sdcard/Download/xxx.xml\n    \"filePath\": \"/sdcard/Download/xxx.xml\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/cloudphone/app/setKeyBox"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-Requested-With"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Max-Age","value":"86400"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Thu, 11 Dec 2025 03:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": null,\n    // Response data\n    \"data\": true,\n    // Operation Request ID\n    \"requestId\": \"17b123d64985640a2b2745759d69b4e49\"\n}"}],"_postman_id":"ef162878-755e-4647-9a71-b45148e52509"}],"id":"b8e1848c-3760-4c5c-ae4e-8ddf033e7998","_postman_id":"b8e1848c-3760-4c5c-ae4e-8ddf033e7998","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"Proxy Management","item":[{"name":"Getting a list of proxies","id":"679c78f7-ed15-409e-830e-226cd43b4062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy ID to be queried\n    \"id\": null,\n    // Whether it is a proxy that can be used by the cloud phone profile\n    // true: yes; false: no\n    \"isCloudPhoneProxy\": null,\n    // Current page, default: 1\n    \"pageNo\": 1,\n    // Number of articles per page, default: 10\n    \"pageSize\": 10,\n    // Query by proxy type\n    // 1: Cloud platform; 2: Own IP\n    \"proxyCategoryType\": null,\n    // Proxy IP\n    \"proxyIp\": null,\n    // Query by proxy name, support fuzzy search\n    \"proxyName\": null,\n    // Query by proxy provider\n    // 0: None, 4: Oxylabs, 5: Proxys.io, 7: Luminati, 8: Lumauto, 9: Oxylabsauto, 10: Trojan, 11: Shadowsocks, 13: ABCPROXY, 14: LunaProxy. 15: IPHTML, 16: PiaProxy, 17: 922S5\n    // Default: 0\n    \"proxyProviders\": null,\n    // Query by detection status\n    // 0: pending detection, 1: successful detection, 2: failed detection, 3: unknown error\n    \"proxyCheckStatus\": null,\n    // Query by proxy status\n    // 0: Normal , 1: Pending assignment , 2: Upgrading , 3: Expired , 4: Expiring soon\n    \"proxyStatus\": null,\n    // Query by proxy type\n    // 0: http, 1: https, 2: socks5, 3: ssh\n    \"proxyTypes\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/page","description":"<p>Queries information about added proxies. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["proxyInfo","page"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Proxy ID to be queried</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>Whether it is a proxy that can be used by the cloud phone profile</p>\n<p><em>true: yes; false: no</em></p>\n","type":"text/plain"},"key":"isCloudPhoneProxy","value":"boolean"},{"disabled":true,"description":{"content":"<p>Current page, default: 1</p>\n","type":"text/plain"},"key":"pageNo","value":"int"},{"disabled":true,"description":{"content":"<p>Number of articles per page, default: 10</p>\n","type":"text/plain"},"key":"pageSize","value":"int"},{"disabled":true,"description":{"content":"<p>Query by proxy type</p>\n<p><em>1: Cloud platform; 2: Own IP</em></p>\n","type":"text/plain"},"key":"proxyCategoryType","value":"int"},{"disabled":true,"description":{"content":"<p>Query by detection status</p>\n<p><em>0: pending detection, 1: successful detection, 2: failed detection, 3: unknown error</em></p>\n","type":"text/plain"},"key":"proxyCheckStatus","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy IP</p>\n","type":"text/plain"},"key":"proxyIp","value":"string"},{"disabled":true,"description":{"content":"<p>Query by proxy name, support fuzzy search</p>\n","type":"text/plain"},"key":"proxyName","value":"string"},{"disabled":true,"description":{"content":"<p>Query by proxy provider. <strong>Default: 0</strong> </p>\n<p><em>0: None, 4: Oxylabs, 5: Proxys.io, 7: Luminati, 8: Lumauto, 9: Oxylabsauto, 10: Trojan, 11: Shadowsocks, 13: ABCPROXY, 14: LunaProxy. 15: IPHTML, 16: PiaProxy, 17: 922S5</em></p>\n","type":"text/plain"},"key":"proxyProviders","value":"array"},{"disabled":true,"description":{"content":"<p>Query by proxy status</p>\n<p><em>0: Normal , 1: Pending assignment , 2: Upgrading , 3: Expired , 4: Expiring soon</em></p>\n","type":"text/plain"},"key":"proxyStatus","value":"int"},{"disabled":true,"description":{"content":"<p>Query by proxy type</p>\n<p><em>0: http, 1: https, 2: socks5, 3: ssh</em></p>\n","type":"text/plain"},"key":"proxyTypes","value":"int"}],"variable":[]}},"response":[{"id":"f71b863f-ee64-451b-b77c-27b783b474d2","name":"Getting a list of proxies","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy ID to be queried\n    \"id\": null,\n    // Whether it is a proxy that can be used by the cloud phone profile\n    // true: yes; false: no\n    \"isCloudPhoneProxy\": null,\n    // Current page, default: 1\n    \"pageNo\": 1,\n    // Number of articles per page, default: 10\n    \"pageSize\": 10,\n    // Query by proxy type\n    // 1: Cloud platform; 2: Own IP\n    \"proxyCategoryType\": null,\n    // Proxy IP\n    \"proxyIp\": null,\n    // Query by proxy name, support fuzzy search\n    \"proxyName\": null,\n    // Query by proxy provider\n    // 0: None, 4: Oxylabs, 5: Proxys.io, 7: Luminati, 8: Lumauto, 9: Oxylabsauto, 10: Trojan, 11: Shadowsocks, 13: ABCPROXY, 14: LunaProxy. 15: IPHTML, 16: PiaProxy, 17: 922S5\n    // Default: 0\n    \"proxyProviders\": null,\n    // Query by detection status\n    // 0: pending detection, 1: successful detection, 2: failed detection, 3: unknown error\n    \"proxyCheckStatus\": null,\n    // Query by proxy status\n    // 0: Normal , 1: Pending assignment , 2: Upgrading , 3: Expired , 4: Expiring soon\n    \"proxyStatus\": null,\n    // Query by proxy type\n    // 0: http, 1: https, 2: socks5, 3: ssh\n    \"proxyTypes\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:39:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"2140"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": \"\",\n    \"data\": {\n        \"current\": 0,\n        \"dataList\": [\n            {\n                // Expiration time\n                \"expiryTime\": 0,\n                // Primary key\n                \"id\": 0,\n                // Proxy type: 1-Cloud platform 2-Owned IP\n                \"proxyCategoryType\": 0,\n                // Detection status: 0-pending detection 1-monitoring success 2-detection failure 3-unknown error\n                \"proxyCheckStatus\": 0,\n                // Proxy IP\n                \"proxyIp\": \"\",\n                // Proxy Name\n                \"proxyName\": \"\",\n                // Proxy Provider: default value 0 - none 4-Oxylabs 5-Proxys.io 7-Luminati 8-Lumauto 9-Oxylabsauto 10-Trojan，11-Shadowsocks 13-ABCPROXY 14-LunaProxy 15-IPHTML 16-PiaProxy 17-922S5\n                \"proxyProvider\": 0,\n                // Proxy Type：0-http 1-https 2-socks5 3-ssh\n                \"proxyType\": 0\n            }\n        ],\n        \"pages\": 0,\n        \"total\": 0\n    },\n    // Operation Request ID\n    \"requestId\": \"\"\n}"}],"_postman_id":"679c78f7-ed15-409e-830e-226cd43b4062"},{"name":"Adding Proxy","id":"a94f3694-2fda-4add-950f-49b0db85155e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8\n    \"proxyType\": 0,\n    // Proxy name (up to 600 characters)\n    \"proxyName\": \"\",\n    // Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required\n    \"proxyIp\": \"13.14.15.233\",\n    // Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.\n    \"proxyPort\": 3080,\n    // User name (up to 200 characters)\n    \"username\": \"\",\n    // Password (up to 100 characters)\n    \"password\": \"\",\n    // proxyProvider\n    // 0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy\n    \"proxyProvider\": 0,\n    // Encryption method, not null when proxyProvider is 11.\n    // 1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305\n    \"encryptionType\": 0,\n    // Whether to enable IP change monitoring\n    // true: on, false: off\n    // Default: off\n    \"ipChangeAction\": 0,\n    // IP change monitoring\n    // 0: No access, 1: Warning\n    \"ipMonitor\": true,\n    // Refresh URL\n    \"refreshUrl\": \"\",\n    // Country (check appendix for specific country codes)\n    // proxyProvider is 16/17/18 required\n    \"country\": null,\n    // State/Province\n    \"state\": null,\n    // City\n    \"city\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/add","description":"<p>Add own proxy. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["proxyInfo","add"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>City</p>\n","type":"text/plain"},"key":"city","value":"string"},{"disabled":true,"description":{"content":"<p>Country (check appendix for specific country codes), proxyProvider is 16/17/18 required</p>\n","type":"text/plain"},"key":"country","value":"string"},{"disabled":true,"description":{"content":"<p>Encryption method, not null when proxyProvider is 11.</p>\n<p><em>1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305</em></p>\n","type":"text/plain"},"key":"encryptionType","value":"int"},{"disabled":true,"description":{"content":"<p>IP change monitoring\n<em>0: No access, 1: Warning</em></p>\n","type":"text/plain"},"key":"ipChangeAction","value":"int"},{"disabled":true,"description":{"content":"<p>Whether to enable IP change monitoring <strong>Default: off</strong>\n<em>true: on, false: off</em></p>\n","type":"text/plain"},"key":"ipMonitor","value":"boolean"},{"disabled":true,"description":{"content":"<p>Password (up to 100 characters)</p>\n","type":"text/plain"},"key":"password","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required</p>\n","type":"text/plain"},"key":"proxyIp","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy name (up to 600 characters)</p>\n","type":"text/plain"},"key":"proxyName","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.</p>\n","type":"text/plain"},"key":"proxyPort","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy provider</p>\n<p><em>0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy</em></p>\n","type":"text/plain"},"key":"proxyProvider","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8</p>\n","type":"text/plain"},"key":"proxyType","value":"int"},{"disabled":true,"description":{"content":"<p>Refresh URL</p>\n","type":"text/plain"},"key":"refreshUrl","value":"string"},{"disabled":true,"description":{"content":"<p>State/Province</p>\n","type":"text/plain"},"key":"state","value":"string"},{"disabled":true,"description":{"content":"<p>User name (up to 200 characters)</p>\n","type":"text/plain"},"key":"username","value":"string"}],"variable":[]}},"response":[{"id":"d7c5595a-30b9-4d3c-9af3-019df46d0212","name":"Adding Proxy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8\n    \"proxyType\": 0,\n    // Proxy name (up to 600 characters)\n    \"proxyName\": \"\",\n    // Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required\n    \"proxyIp\": \"13.14.15.233\",\n    // Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.\n    \"proxyPort\": 3080,\n    // User name (up to 200 characters)\n    \"username\": \"\",\n    // Password (up to 100 characters)\n    \"password\": \"\",\n    // proxyProvider\n    // 0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy\n    \"proxyProvider\": 0,\n    // Encryption method, not null when proxyProvider is 11.\n    // 1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305\n    \"encryptionType\": 0,\n    // Whether to enable IP change monitoring\n    // true: on, false: off\n    // Default: off\n    \"ipChangeAction\": 0,\n    // IP change monitoring\n    // 0: No access, 1: Warning\n    \"ipMonitor\": true,\n    // Refresh URL\n    \"refreshUrl\": \"\",\n    // Country (check appendix for specific country codes)\n    // proxyProvider is 16/17/18 required\n    \"country\": null,\n    // State/Province\n    \"state\": null,\n    // City\n    \"city\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:48:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"94"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    // Proxy ID\n    \"data\": \"1609109971529327\",\n    \"requestId\": \"2355f68755fe443db854359148bff92a\"\n}"}],"_postman_id":"a94f3694-2fda-4add-950f-49b0db85155e"},{"name":"Modifying Proxy Information","id":"5890338f-4477-4f92-bcab-5986291827cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy ID\n    \"id\": \"1609109971529327\",\n    // Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8\n    \"proxyType\": 0,\n    // Proxy name (up to 600 characters)\n    \"proxyName\": \"\",\n    // Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required\n    \"proxyIp\": \"13.14.15.233\",\n    // Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.\n    \"proxyPort\": 3080,\n    // User name (up to 200 characters)\n    \"username\": \"\",\n    // Password (up to 100 characters)\n    \"password\": \"\",\n    // proxyProvider\n    // 0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy\n    \"proxyProvider\": 0,\n    // Encryption method, not null when proxyProvider is 11.\n    // 1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305\n    \"encryptionType\": 0,\n    // Whether to enable IP change monitoring\n    // true: on, false: off\n    // Default: off\n    \"ipChangeAction\": 0,\n    // IP change monitoring\n    // 0: No access, 1: Warning\n    \"ipMonitor\": true,\n    // Refresh URL\n    \"refreshUrl\": \"\",\n    // Country (check appendix for specific country codes)\n    // proxyProvider is 16/17/18 required\n    \"country\": null,\n    // State/Province\n    \"state\": null,\n    // City\n    \"city\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/update","description":"<p>Modify proxy related information. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["proxyInfo","update"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Proxy ID</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p>City</p>\n","type":"text/plain"},"key":"city","value":"string"},{"disabled":true,"description":{"content":"<p>Country (check appendix for specific country codes), proxyProvider is 16/17/18 required</p>\n","type":"text/plain"},"key":"country","value":"string"},{"disabled":true,"description":{"content":"<p>Encryption method, not null when proxyProvider is 11.</p>\n<p><em>1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305</em></p>\n","type":"text/plain"},"key":"encryptionType","value":"int"},{"disabled":true,"description":{"content":"<p>Whether to enable IP change monitoring <strong>Default: off</strong></p>\n<p><em>true: on, false: off</em></p>\n","type":"text/plain"},"key":"ipChangeAction","value":"int"},{"disabled":true,"description":{"content":"<p>IP change monitoring</p>\n<p><em>0: No access, 1: Warning</em></p>\n","type":"text/plain"},"key":"ipMonitor","value":"boolean"},{"disabled":true,"description":{"content":"<p>Password (up to 100 characters)</p>\n","type":"text/plain"},"key":"password","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required</p>\n","type":"text/plain"},"key":"proxyIp","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy name (up to 600 characters)</p>\n","type":"text/plain"},"key":"proxyName","value":"string"},{"disabled":true,"description":{"content":"<p>Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.</p>\n","type":"text/plain"},"key":"proxyPort","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy provider</p>\n<p><em>0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy</em></p>\n","type":"text/plain"},"key":"proxyProvider","value":"int"},{"disabled":true,"description":{"content":"<p>Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8</p>\n","type":"text/plain"},"key":"proxyType","value":"int"},{"disabled":true,"description":{"content":"<p>Refresh URL</p>\n","type":"text/plain"},"key":"refreshUrl","value":"string"},{"disabled":true,"description":{"content":"<p>State/Province</p>\n","type":"text/plain"},"key":"state","value":"string"},{"disabled":true,"description":{"content":"<p>User name (up to 200 characters)</p>\n","type":"text/plain"},"key":"username","value":"string"}],"variable":[]}},"response":[{"id":"8ae4e0a6-a4c1-482c-9bd1-e74fd5125240","name":"Modifying Proxy Information","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Proxy ID\n    \"id\": \"1609109971529327\",\n    // Proxy type, 0: http, 1: https, not null if proxyProvider is 7/8\n    \"proxyType\": 0,\n    // Proxy name (up to 600 characters)\n    \"proxyName\": \"\",\n    // Proxy IP, proxyProvider for 16/17/18 can be empty, the other is required\n    \"proxyIp\": \"13.14.15.233\",\n    // Proxy port (only numbers from 1-65535 are supported), proxyProvider 16/17/18 can be null, others cannot be null.\n    \"proxyPort\": 3080,\n    // User name (up to 200 characters)\n    \"username\": \"\",\n    // Password (up to 100 characters)\n    \"password\": \"\",\n    // proxyProvider\n    // 0：http，1：https，2：socks5，3：ssh，4：Oxylabs，5：Proxys.io，7：Luminati，8：Lumauto，9：Oxylabsauto，10：Trojan，11：Shadowsocks，13：ABCPROXY，14：LunaProxy，15：IPHTML，16：PiaProxy，17：922S5，18：360Proxy\n    \"proxyProvider\": 0,\n    // Encryption method, not null when proxyProvider is 11.\n    // 1：aes-128-gcm，2：aes-192-gcm，3：aes-256-gcm，4：aes-128-cfb，5：aes-192-cfb，6：aes-256-cfb，7：aes-128-ctr，8：aes-192-ctr，9：aes-256-ctr，10：rc4-md5，11：chacha20-ietf，12：xchacha20，13：chacha20-ietf-poly1305，14：xchacha20-ietf-poly1305\n    \"encryptionType\": 0,\n    // Whether to enable IP change monitoring\n    // true: on, false: off\n    // Default: off\n    \"ipChangeAction\": 0,\n    // IP change monitoring\n    // 0: No access, 1: Warning\n    \"ipMonitor\": true,\n    // Refresh URL\n    \"refreshUrl\": \"\",\n    // Country (check appendix for specific country codes)\n    // proxyProvider is 16/17/18 required\n    \"country\": null,\n    // State/Province\n    \"state\": null,\n    // City\n    \"city\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:50:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null,\n    \"requestId\": \"bdab6ba2dbd84eaeafcfc8f779f29449\"\n}"}],"_postman_id":"5890338f-4477-4f92-bcab-5986291827cb"},{"name":"Delete proxy","id":"ee550f8d-ffe9-478b-9dd6-89e3f6d67941","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"// Proxy IDs that need to be deleted, can be deleted in bulk (platform proxies that have not expired cannot be deleted)\n[\n    \"1609109971529327\"\n]","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/delete","description":"<p>Batch delete proxies. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["proxyInfo","delete"],"host":["api","morelogin","com"],"query":[],"variable":[]}},"response":[{"id":"c8fb8a22-1491-4ac7-b45b-51e273a40324","name":"Delete proxy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"// Proxy IDs that need to be deleted, can be deleted in bulk (platform proxies that have not expired cannot be deleted)\n[\n    \"1609109971529327\"\n]","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/proxyInfo/delete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:52:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": null,\n    \"requestId\": \"6458b052cf984ed2940d16736fb50959\"\n}"}],"_postman_id":"ee550f8d-ffe9-478b-9dd6-89e3f6d67941"}],"id":"bb31ceef-4e69-472b-8b46-92ea1f68d96e","_postman_id":"bb31ceef-4e69-472b-8b46-92ea1f68d96e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"Group Management","item":[{"name":"Get a list of groups","id":"82da9b02-02b9-4ab7-91db-7a751d99c83a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Current page, default: 1\n    \"pageNo\": 1,\n    // Number of articles per page, default: 20\n    \"pageSize\": 20,\n    // Search by Group Name\n    \"groupName\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/page","description":"<p>Query group information, group information includes group ID and group name, where group ID is used to group the profile. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envgroup","page"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Current page, default: 1</p>\n","type":"text/plain"},"key":"pageNo","value":"int"},{"disabled":true,"description":{"content":"<p>Number of articles per page, default: 20</p>\n","type":"text/plain"},"key":"pageSize","value":"int"},{"disabled":true,"description":{"content":"<p>Search by Group Name</p>\n","type":"text/plain"},"key":"groupName","value":"string"}],"variable":[]}},"response":[{"id":"7f06dae2-419c-4c23-b66b-44564f2bbfe2","name":"Get a list of groups","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Current page, default: 1\n    \"pageNo\": 1,\n    // Number of articles per page, default: 20\n    \"pageSize\": 20,\n    // Search by Group Name\n    \"groupName\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:54:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"129"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // Error message\n    \"msg\": \"\",\n    \"data\": {\n        \"current\": 0,\n        \"dataList\": [\n            {\n                // Group ID\n                \"id\": 0,\n                // Group name\n                \"groupName\": \"\"\n            }\n        ],\n        \"pages\": 0,\n        \"total\": 0\n    },\n    // Operation Request ID\n    \"requestId\": \"\"\n}"}],"_postman_id":"82da9b02-02b9-4ab7-91db-7a751d99c83a"},{"name":"Add group","id":"72f132fe-0b2a-4d5a-9a57-035aee8c793e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group name\n    \"groupName\": \"New Group\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/create","description":"<p>Add group, after adding successfully, can be used to group the profile. The name of groups can not be duplicated. After the successful creation of the group, the group ID will be returned. The MoreLogin application needs to be updated to version 2.9.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envgroup","create"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Group name</p>\n","type":"text/plain"},"key":"groupName","value":"string"}],"variable":[]}},"response":[{"id":"ccce7d39-5334-4144-8434-938a77baa775","name":"Add group","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group name\n    \"groupName\": \"New Group\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 02:57:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"107"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": \"\",\n    \"data\": null,\n    \"requestId\": \"7ab960c85dc74596b9ef1694b81edcec\"\n}"}],"_postman_id":"72f132fe-0b2a-4d5a-9a57-035aee8c793e"},{"name":"Modify grouping information","id":"9d368100-7dac-4dd2-911b-924ae00c2dd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group name\n    \"groupName\": \"Modify Group\",\n    // Group ID\n    \"id\": \"1609111028493936\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/edit","description":"<p>The group name can be modified and the name cannot be duplicated. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envgroup","edit"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Group name</p>\n","type":"text/plain"},"key":"groupName","value":"string"},{"disabled":true,"description":{"content":"<p>Group ID</p>\n","type":"text/plain"},"key":"id","value":"int"}],"variable":[]}},"response":[{"id":"2074f94a-025d-477f-a4fb-d4736a28e64e","name":"Modify grouping information","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group name\n    \"groupName\": \"Modify Group\",\n    // Group ID\n    \"id\": \"1609111028493936\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/edit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:03:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": true,\n    \"requestId\": \"4ed5f4fb340844b49193ffb797cf1db8\"\n}"}],"_postman_id":"9d368100-7dac-4dd2-911b-924ae00c2dd8"},{"name":"Delete group","id":"e968cc87-5011-48b0-8236-e78724a39a7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group ID\n    \"id\": \"1609111028493936\",\n    // Whether to delete the profiles in the group at the same time, default: false\n    // false: do not delete, true: delete\n    \"isDeleteAllEnv\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/delete","description":"<p>Delete the specified group. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envgroup","delete"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p>Group ID</p>\n","type":"text/plain"},"key":"ids","value":"array"},{"disabled":true,"description":{"content":"<p>Whether to delete the profiles in the group at the same time, default: false</p>\n<p><em>false: do not delete, true: delete</em></p>\n","type":"text/plain"},"key":"isDeleteAllEnv","value":"boolean"}],"variable":[]}},"response":[{"id":"9940f35e-e506-420a-bb67-d787d6168fcd","name":"Delete group","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Group ID\n    \"id\": \"1609111028493936\",\n    // Whether to delete the profiles in the group at the same time, default: false\n    // false: do not delete, true: delete\n    \"isDeleteAllEnv\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/delete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:05:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"121"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": \"\",\n    \"data\": null,\n    \"requestId\": \"9730da41bf2d4825995f760f25ca8897\"\n}"}],"_postman_id":"e968cc87-5011-48b0-8236-e78724a39a7f"}],"id":"5e307d6b-632d-47b6-9309-9caf1f87a1d5","_postman_id":"5e307d6b-632d-47b6-9309-9caf1f87a1d5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}},{"name":"Tag Management","item":[{"name":"Getting a list of tags","id":"aa819e6c-0075-4307-8a17-64ade1b76465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.morelogin.com/envtag/all","description":"<p>Query tag information, tag information includes tag ID and tag name, where tag ID is used to set tags for the profile. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envtag","all"],"host":["api","morelogin","com"],"query":[],"variable":[]}},"response":[{"id":"5d1928b6-eefd-46e3-bb2e-2b9b23dc2ebd","name":"Getting a list of tags","originalRequest":{"method":"GET","header":[],"url":"https://api.morelogin.com/envtag/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:07:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"78"}],"cookie":[],"responseTime":null,"body":"{\n    // Return result code 0:Normal Other codes are exceptions.\n    \"code\": 0,\n    // error message\n    \"msg\": \"\",\n    \"data\": [\n        {\n            // ID of tags\n            \"id\": 0,\n            // Name of tags\n            \"tagName\": \"\"\n        }\n    ],\n    // Operation Request ID\n    \"requestId\": \"\"\n}"}],"_postman_id":"aa819e6c-0075-4307-8a17-64ade1b76465"},{"name":"Create tags","id":"5dc4078f-1d0c-4696-92f3-95a5a0f3faa0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Name of tags\n    \"tagName\": \"New Tag\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envtag/create","description":"<p>Add tags, when added successfully, can be used to set tags for the profiles. The tag ID will be returned when created successfully. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envtag","create"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Tag name</p>\n","type":"text/plain"},"key":"tagName","value":"string"}],"variable":[]}},"response":[{"id":"d072a0a5-1ad4-4a8c-9835-edb872be30bf","name":"Create tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Name of tags\n    \"tagName\": \"New Tag\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envtag/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:08:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"121"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": {\n        // ID of tags\n        \"id\": \"1609112592969330\",\n        // Name of tags\n        \"tagName\": \"New Tag\"\n    },\n    \"requestId\": \"341f8a8d46f24513af60ab7165ed1ff1\"\n}"}],"_postman_id":"5dc4078f-1d0c-4696-92f3-95a5a0f3faa0"},{"name":"Modify information of tags","id":"e08cfcc8-8e6c-4122-a029-b770f0fafa01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Name of tags\n\t\"groupName\": \"Modify Tag\",\n\t\"id\": \"1609112592969330\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envgroup/edit","description":"<p>Allow users to modify the name of the tags. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envgroup","edit"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> ID of tags</p>\n","type":"text/plain"},"key":"id","value":"int"},{"disabled":true,"description":{"content":"<p><code>required</code> Name of tags</p>\n","type":"text/plain"},"key":"tagName","value":"string"}],"variable":[]}},"response":[{"id":"1e791220-b81b-4b84-98f7-0b92e7214b2d","name":"Modify information of tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Name of tags\n\t\"tagName\": \"Modify Tag\",\n\t\"id\": \"1609112592969330\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envtag/edit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:10:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"80"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": null,\n    \"data\": true,\n    \"requestId\": \"d147cc5c8738420e9b96cd33298d7797\"\n}"}],"_postman_id":"e08cfcc8-8e6c-4122-a029-b770f0fafa01"},{"name":"Delete tags","id":"c4fa39fc-1ba4-4672-8348-80c915dada15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Tag ID\n    \"ids\": [\n        \"1609112592969330\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envtag/delete","description":"<p>Delete the specified tag. The MoreLogin application needs to be updated to version 2.14.0 and above.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}},"urlObject":{"protocol":"https","path":["envtag","delete"],"host":["api","morelogin","com"],"query":[{"disabled":true,"description":{"content":"<p><code>required</code> Group ID</p>\n","type":"text/plain"},"key":"ids","value":"array"}],"variable":[]}},"response":[{"id":"f30986d4-1ba6-43b5-b846-9d712c88ca7c","name":"Delete tags","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    // Tag ID\n    \"ids\": [\n        \"1609112592969330\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.morelogin.com/envtag/delete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 09 Dec 2024 03:13:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 0,\n    \"msg\": \"\",\n    \"data\": null,\n    \"requestId\": \"a2f65245180645ca98d1500475bcc025\"\n}"}],"_postman_id":"c4fa39fc-1ba4-4672-8348-80c915dada15"}],"id":"8ab4a0c1-88da-4cd7-97bb-f9fd1c615893","_postman_id":"8ab4a0c1-88da-4cd7-97bb-f9fd1c615893","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a55c45f0-ddc0-4135-9f2f-c539facada36","id":"a55c45f0-ddc0-4135-9f2f-c539facada36","name":"MoreLogin Open API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{tokenType}} {{accessToken}}"}]}},"event":[{"listen":"prerequest","script":{"id":"c2c5744d-e2ac-440a-be8c-a86d734bdf4d","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"405532ad-abb9-4628-b23e-9a9659065507","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}]}