v1
latestOpenAPI 3.1.02026-07-2616459400.5 KBIP Management API
Assign pools to Subaccount
This allows a parent account to manage which IP pools are available to a subaccount. You can add new pools or remove existing ones from a subaccount, ensuring that eacg subaccount has the correct set of IP pools for its sending need.
post/ip/pool/subaccount/assign-pools
Request body
Example request
{
"account": "subaccount1",
"sending_domain": "mail.example.com",
"pools_to_add": [
"marketing-pool",
"support-pool"
],
"pools_to_remove": [
"old-pool"
]
}Response
Pools assigned successfully
Example response
{
"status": "success",
"message": "IP pools assigned successfully",
"result": {
"account": "subaccount1",
"assigned_pools": [
"marketing-pool",
"support-pool"
],
"updated_on": "2024-01-15T10:30:00Z"
}
}