Comment on page
Change Username and Password
post
https://api.illusory.io
/api:Oj9wVgoa/changeCreds
Change Credentials
In this example, we're performing an HTTP request using axios-npm.
axios({
method: "POST",
headers: { "Content-Type": "application/json" },
url: "https://api.illusory.io/api:Oj9wVgoa/changeCreds",
data: {
// Your apiKey goes here 👇
apiKey: "{YOUR_UNIQUE_API_KEY}",
// Your authEmail goes here 👇
authEmail: "{YOUR_UNIQUE_AUTH_EMAIL}",
proxy: "AT-US-LA1-6666",
// 👇 Set to IP Address or 'Disabled'
username: "Kanye",
password: "West"
},
}).then(function (response) {
console.log(response);
});
Last modified 2yr ago