Ip:list
Retrieve the list of IP addresses from which you may send requests to your API
To get the list of IP addresses you can use to access our API server, use the following XML request. The list of allowed IP addresses is also available through the web interface in the section Your profile > Allowed IP addresses
XML Template
<?xml version="1.0" encoding="UTF-8"?>
<request xmlns:ip="http://www.eurodns.com/ip">
<ip:list/>
</request>
<ip:list> (Occurrences: 1)
If the action was successful, the following code will be returned:
<?xml version="1.0" encoding="UTF-8"?>
<response xmlns:ip="http://www.eurodns.com/ip">
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<resData>
<ip:list numElements="#LISTCOUNTER#">
<ip:address>#IP ADDRESS#</ip:address>
<ip:address>#IP ADDRESS#</ip:address>
<ip:address>#IP ADDRESS#</ip:address>
</ip:list>
</resData>
</response>
<ip:list> (Occurrences: 1)
R | #LISTCOUNTER# | The total number of ip addresses in the list |
<ip:address> (Occurrences: 1)
R | #IP ADDRESS# | Allowed IP address |
Legend
O | The element is optional and does not have to be specified in the request and/or answer |
R | The element is mandatory and has to specified in the request and/or answer |