Application:info

Obtaining all information for contact

Use the following command to obtain additional information about one of your domain applications. This information is available as long as the order corresponding to the domain is pending. Once the order has been treated (domain registered / order closed because of an error) the information is no longer available.

XML Template
<?xml version="1.0" encoding="UTF-8"?>
    <request xmlns:poll="http://www.eurodns.com/poll">
        <application:info>
            <application:domain>
                <domain:name>#DOMAIN NAME#</domain:name>
                <domain:roid>#DOMAIN ROID#</domain:roid>
            </application:domain>
        </application:info>
    </request>

<application:info> (Occurrences: 1)

<application:domain> (Occurrences: 1)

R #DOMAIN NAME# The name of the domain
R #DOMAIN ROID# The domain ROID as displayed in the result of a domain:create request
If there is an application for the specified domain, the following code will be returned:
<?xml version="1.0" encoding="UTF-8"?>
    <response xmlns:domain="http://www.eurodns.com/domain" xmlns:eurodns="http://www.eurodns.com/eurodns">
        <result code="1000">
            <msg><![CDATA[Command completed successfully]]></msg>
        </result>
        <resData>
            <domain:name>#DOMAIN NAME#</domain:name>
            <domain:roid>#DOMAIN ROID#</domain:roid>
            <domain:status>#APPLICATION STATUS#</domain:status>
            <domain:contact type="org">#ORG CONTACTID#</domain:contact>
            <domain:contact type="billing">#BILLING CONTACTID#</domain:contact>
            <domain:contact type="tech">#TECH CONTACTID#</domain:contact>
            <domain:contact type="admin">#ADMIN CONTACTID#</domain:contact
        </resData>
        <extension>
            <eurodns:domain>
                <domain:ns addr="#IP ADDRESS#">#FULLY QUALIFIED DOMAIN NAME#</domain:ns>
                <domain:ns addr="#IP ADDRESS#">#FULLY QUALIFIED DOMAIN NAME#</domain:ns>
            </eurodns:domain>
        </extension>
    </response>

<resData> (Occurrences: 1)

 R  #DOMAIN NAME#  Domainname
 R  #DOMAIN ROID#  The ROID of the domain
 R  #APPLICATION STATUS#  The current status of the application
 R  #ORG CONTACTID#  Identifier of the organisational contact (Licencee)
 R  #BILLING CONTACTID#  Identifier of the billing contact
 R  #TECH CONTACTID#  Identifier of the technical contact
 R  #ADMIN CONTACTID#  Identifier of the administrative contact

<extension> (Occurrences: 1)

<eurodns:domain> (Occurrences: 1)

Note: <domain:ns> is repeated as many times as there are nameservers

R #IP ADDRESS# IPv4 address of the nameserver
R #FULLY QUALIFIED DOMAIN NAME# Fully qualified domain name of the nameserver

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