Skip to main content
DELETE
/
v1
/
proxies
/
remove
cURL
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
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.

Body

application/json

Remove proxy details

proxies
string[]
required

List of proxy names to remove

Response

Server response

ok
boolean

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

message
string

Success message

Example:

"Requested proxy removal successfully. The proxy will be removed shortly."

data
object
I