Programmatically Reboot your Proxy
post
https://api.illusory.io
/api:Oj9wVgoa/reboot
Reboot Device
Rebooting takes about 60 seconds on average.
In this example, we're performing an HTTP request using axios-npm.
JavaScript
axios({
method: "POST",
headers: { "Content-Type": "application/json" },
url: "https://api.illusory.io/api:Oj9wVgoa/reboot",
data: {
// Your apiKey goes here 👇
apiKey: "{YOUR_UNIQUE_API_KEY}",
// Your authEmail goes here 👇
authEmail: "{YOUR_UNIQUE_AUTH_EMAIL}",
proxy: "AT-US-LA1-6666",
},
}).then(function (response) {
console.log(response);
});
Last modified 1yr ago