v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
IP Management API

Create IP Pool

This allows a parent account to create a new pool for organizing dedicated IP addresses. Each pool must have a unique name within the parent account and be associated with a specific region.

post/ip/pool

Request body

pool_namestring required

The name of the IP pool. Allowed characters are alphanumeric, hyphens, and underscore. Must not already exist under the parent account in the same region.

region'US' | 'EU' | 'IND' required

The region where the pool will be created. The supported values are US, EU, and IND.

Example request

{
  "pool_name": "marketing-pool",
  "region": "US"
}

Response

IP pool created successfully

statusstring
pool_namestring
regionstring
messagestring

Example response

{
  "status": "success",
  "pool_name": "marketing-pool",
  "region": "US",
  "message": "IP pool created successfully"
}