Removing IP Addresses from Reseller's IP Pool

The ippool-del-ip operation is used to remove IP addresses from the reseller's IP pool.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

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:

Important: When creating request packets, put nodes and elements in the order they follow in the packet structure.

 

 

Response Packet Structure

The ippool-del-ip node of the response packet is structured as follows (data type ResellerIpPoolOperationOutput (reseller.xsd)):

ResellerIpPoolOperationOutput

 

 

Samples

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>