# All Reserved IP Provides the details on all the reserved IP in your network. This operation do not require any additional parameter. The following formats are supported: - [XML](https://www.manageengine.com/products/oputils/help/api/all_reserved_ip.html#.xml_Format:1) - [JSON](https://www.manageengine.com/products/oputils/help/api/all_reserved_ip.html#.json_Format:) ## XML Format | URL | http://localhost:7080/oputilsapi/ipam?&key=9a5525a4-d7d4-48aa-96fe-caa5ac524346&v=1&format=XML&operation=GET_ALL_RESERVED_IP | |---|---| | **Parameters** | None | | **Operation** | GET_ALL_RESERVED_IP | | **Success Response** | | | **Failure Response** | | ### Success Response ```xml Success GET_ALL_RESERVED_IP 192.168.26.3 null Available Reserved - Static IP 192.168.26.0 null 255.255.255.0 254 null 2013-10-18 14:25:15.222 null 192.168.26.6 null Available Reserved - Static IP 192.168.26.0 null 255.255.255.0 254 null 2013-10-18 14:25:15.23 null ``` ### Failure Response ```xml Failure No Data Available ``` ## JSON Format | URL | http://localhost:7080/oputilsapi/ipam?&key=9a5525a4-d7d4-48aa-96fe-caa5ac524346&v=1&format=JSON&operation=GET_ALL_RESERVED_IP | |---|---| | **Parameters** | None | | **Operation** | GET_ALL_RESERVED_IP | | **Success Response** | | | **Failure Response** | | ### Success Response ```json { "result":[ { "ip-address":"192.168.26.3", "subnet-size":254, "status":"Available", "subnet-address":"192.168.26.0", "last-scan-time":"2013-10-18 11:54:05.405", "subnet-mask":"255.255.255.0", "reserved-status":"Reserved - Static IP" }, { "ip-address":"192.168.26.6", "subnet-size":254, "status":"Available", "subnet-address":"192.168.26.0", "last-scan-time":"2013-10-18 11:54:05.405", "subnet-mask":"255.255.255.0", "reserved-status":"Reserved - Static IP" } ], "input":"{}", "status":"Success" } ``` ### Failure Response ```json { "message":"No Data Available", "input":"{}", "status":"Failure" } ```