v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
IP Management API

Assign IPs to Pool

This allows a parent account to add one or more dedicated IP addresses to an existing IP pool. This is useful for organizing IPs into logical groups for different sending stream.

post/ip/pool/assign-ips

Request body

pool_namestring required

The name of the IP pool to which the IPs should be added.

ips_to_addstring[] required

A list of IP addresses to be assigned to the pool.At least one IP must be provided. maximum 100 IPs per request. All IPs must belong to the same region. Each IP must be valid, owned by the parent account, and not already assigned to the pool.

Example request

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

Response

IPs assigned to 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",
    "192.168.1.101"
  ],
  "updated_on": "2024-01-15T10:30:00Z"
}