v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
IP Management API

Remove IPs from Pool

This allows a parent account to remove specific dedicated IP addresses from an existing pool.

post/ip/pool/remove-ips

Request body

pool_namestring required

The name of the IP pool from which the IPs should be removed. Must refer to an exisiting pool owned by the parent account.

ips_to_addstring[] required

A list of IP addresses to remove from the pool. At least one IP must be provided. Each IP must already be assigned to the specified pool.

Example request

{
  "pool_name": "marketing-pool",
  "ips_to_add": [
    "192.168.1.100"
  ]
}

Response

IPs removed from pool successfully

pool_namestring
regionstring
assigned_ipsstring[]
updated_onstring date-time

Example response

{
  "pool_name": "marketing-pool",
  "region": "US",
  "assigned_ips": [
    "192.168.1.100"
  ],
  "updated_on": "2024-01-15T10:30:00Z"
}