The ippool-del-ip operation is used to remove IP addresses from the reseller's IP pool.
A request XML packet removing IP addresses from reseller's IP pool includes the ippool-del-ip node:
<packet>
<reseller>
<ippool-del-ip>
...
</ippool-del-ip>
</reseller>
</packet>
The ippool-del-ip node is specified by ResellerIpPoolDelInput complex type (reseller.xsd
). Its graphical representation is as follows:
common.xsd
).
Important: When creating request packets, put nodes and elements in the order they follow in the packet structure.
The ippool-del-ip node of the response packet is structured as follows (data type ResellerIpPoolOperationOutput (reseller.xsd
)):
common.xsd
).common.xsd
). Allowed values: ok|error
.common.xsd
).
To remove IP address from a reseller’s IP pool, specify the packet as follows:
<packet version="1.6.0.0">
<reseller>
<ippool-del-ip>
<reseller-id>1234</reseller-id>
<ip-address>192.0.2.111</ip-address>
</ippool-del-ip>
</reseller>
</packet>
Response:
<packet version="1.6.0.0">
<reseller>
<ippool-del-ip>
<result>
<status>ok</status>
<ip-address>192.0.2.111</ip-address>
</result>
</ippool-del-ip>
</reseller>
</packet>