v1
latestOpenAPI 3.1.02026-07-2616459400.5 KBIP 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
Example request
{
"pool_name": "marketing-pool",
"ips_to_add": [
"192.168.1.100",
"192.168.1.101"
]
}Response
IPs assigned to pool successfully
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"
}