POST
/
v1
/
proxies
/
autochangeip
/
{proxyName}
curl --request POST \
  --url https://cmd.illusory.io/v1/proxies/autochangeip/{proxyName} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "enable": true,
  "rate": 10
}'
{
  "ok": true,
  "message": "Auto Change updated for ILL-US-AU1-9999 successfully.",
  "data": {
    "proxy_name": "ILL-US-AU1-9999",
    "next_ip_change": "2050-12-04T19:43:16.407+00:00",
    "auto_change": true,
    "auto_change_time": 10
  }
}

Changes the auto-change settings for of a proxy. Auto-change controls whether a proxy automatically changes its external IP on a regular schedule. Once set, the proxy will automatically change its IP every rate minutes.

You can set a proxy’s change rate (the rate at which it automatically changes IPs) for every 1 to 1440 minutes.`

Authorizations

Authorization
string
header
required

The Authorization header is used to authenticate with the API using your Master API key. Value is of the format Bearer YOUR_KEY_HERE.

Path Parameters

proxyName
string
required

Replace {proxyName} in the url path with YOUR_PROXY.

Body

application/json
Auto change external IP settings
enable
boolean
required

Auto change external IP status value. If enable = true, then the proxy will have auto change external IP enabled. Default: false

rate
integer

Time interval for automatic IP change, in minutes. Default: 10

Response

200
application/json
Server response
ok
boolean

Indicates whether the request was successful e.g., true

message
string

Success message

data
object