Contactprofile:list

Retrieve the list of existing contact profiles

To simplify the management of your domains, you can create contact profiles and use these profiles in your daily tasks. This way you do not have to repeat all the contact details for each request that you sent to our API. You only specify the identifier of a contact profile and our system will automatically use the contact details stored in the corresponding profile.

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

<contactprofile:list> (Occurrences: 1)

If the action was successful, the following code will be returned:
<?xml version="1.0" encoding="UTF-8"?>
    <response xmlns:contactprofile="http://www.eurodns.com/contactprofile">
        <result code="1000">
            <msg>Command completed successfully</msg>
        </result>
        <resData>
            <contactprofile:list numElements="#LISTCOUNTER#">
                <contactprofile:name id="#CONTACT PROFILE ID#">#CONTACT PROFILE NAME#</contactprofile:name>
            </contactprofile:list>
        </resData>
    </response>

<contactprofile:list> (Occurrences: 1)

R #LISTCOUNTER# The number of existing profiles

<contactprofile:name> (Occurrences: 0+)

R #CONTACT PROFILE ID# The identifier of the contact profile
R #CONTACT PROFILE NAME# The name of the contact profile

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