DELETE
/
v1
/
proxies
/
remove
curl --request DELETE \
  --url https://cmd.illusory.io/v1/proxies/remove \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "proxies": [
    [
      "ILL-US-AU1-9999",
      "ILL-US-AU1-9998"
    ]
  ]
}'
{
  "ok": true,
  "message": "Requested proxy removal successfully. The proxy will be removed shortly.",
  "data": {
    "proxies": [
      [
        "ILL-US-AU1-9999",
        "ILL-US-AU1-9998"
      ]
    ]
  }
}

Removes the specified proxy servers from your account.

This action is irreversible. Once removed, you will not be able to recover the proxy servers unless you purchase them again. Use this action with caution.

Authorizations

Authorization
string
headerrequired

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

Body

application/json
proxies
string[]
required

List of proxy names to remove

Response

202 - application/json
ok
boolean

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

message
string

Success message

data
object

Was this page helpful?