Zone:list

How to retrieve a list of your zones

To get the list of domains for which you have created zones, please send the following request to our API server. An optional element may be added to retrieve only the zones for domains registered under a specific top-level domain.

XML Template
<?xml version="1.0" encoding="UTF-8"?>
    <request xmlns:zone="http://www.eurodns.com/zone">
        <zone:list>
            <zone:tld>#TLD#</zone:tld>
        </zone:list>
    </request>

<zone:list> (Occurrences: 1)

O #TLD# Only retrieve zones of domains under this top-level domain
If the action was successful, the following code will be returned:
<?xml version="1.0" encoding="UTF-8"?>
    <response xmlns:zone="http://www.eurodns.com/zone">
        <result code="1000">
            <msg>Command completed successfully</msg>
        </result>
        <resData>
            <zone:list>
                <zone:name>#DOMAIN.TLD#</zone:name>
                <zone:name>#DOMAIN.TLD#</zone:name>
                <zone:name>#DOMAIN.TLD#</zone:name>
                <zone:name>#DOMAIN.TLD#</zone:name>
            </zone:list>
        </resData>
    </response>

<zone:list> (Occurrences: 1)

R #LISTCOUNTER# The total number of domains in the list

<zone:name> (Occurrences: 1+)

R #DOMAIN.TLD# The name of the domain using the zone

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