Zoneprofile:info
Get all information for a zone profile
To get the information for a zone profile, you need its identifier. You can get the identifiers for your zone profiles using a zoneprofile:list request.
XML Template
<?xml version="1.0" encoding="UTF-8"?>
<request xmlns:zoneprofile="http://www.eurodns.com/zoneprofile">
<zoneprofile:info>
<zoneprofile:id>#ZONE PROFILE ID#</zoneprofile:id>
</zoneprofile:info>
</request>
<zoneprofile:info> (Occurrences: 1)
R | #ZONE PROFILE ID# | Identifier of the zone profile |
If the specified zone profile exists in your account, the following code will be returned:
<?xml version="1.0" encoding="UTF-8"?>
<response xmlns:record="http://www.eurodns.com/record"
xmlns:zoneprofile="http://www.eurodns.com/zoneProfile">
<result code="1000">
<msg><![CDATA[Command completed successfully]]></msg>
</result>
<zoneprofile:name>#ZONE PROFILE NAME#</zoneprofile:name>
<zoneprofile:records>
<zoneprofile:record>
<record:host>#RECORD HOST#</record:host>
<record:type>#RECORD TYPE#</record:type>
<record:data>#RECORD DATA#</record:data>
<record:ttl>#RECORD TTL#</record:ttl>
<record:mx_priority>#RECORD MX PRIORITY#</record:mx_priority>
<record:priority>#RECORD PRIORITY#</record:priority>
<record:weight>#RECORD WEIGHT#</record:weight>
<record:port>#RECORD PORT#</record:port>
<record:source>#RECORD SOURCE#</record:source>
<record:destination>#RECORD DESTINATION#</record:destination>
<record:redirection_type>#RECORD REDIRECTION TYPE#</record:redirection_type>
<record:title>#RECORD TITLE#</record:title>
<record:keywords>#RECORD KEYWORDS#</record:keywords>
<record:description>#RECORD DESCRIPTION#</record:description>
<record:flag>#RECORD FLAG#</record:flag>
<record:tag>#RECORD TAG#</record:tag>
</zoneprofile:record>
</zoneprofile:records>
</response>
<zoneprofile:name> (Occurrences: 1)
R | #ZONE PROFILE NAME# | Zone profile name |
<zoneprofile:records> (Occurrences: 0, 1)
<zoneprofile:record> (Occurrences: 1+)
R | #RECORD HOST# | Record host |
R | #RECORD TYPE# | Record type (SOA, NS, MX, A, CNAME, AAAA, TXT, SRV, URL Forward or Mail Forward) |
R | #RECORD DATA# | Record data |
R | #RECORD TTL# | Record TTL |
O | #RECORD MX PRIORITY# | Record mx priority (MX records only) |
O | #RECORD PRIORITY# | Record priority (SRV records only) |
O | #RECORD WEIGHT# | Record weight (SRV records only) |
O | #RECORD PORT# | Record port (SRV records only) |
O | #RECORD SOURCE# | Record source (Mail/URL Forward records only) |
O | #RECORD DESTINATION# | Record destination (Mail/URL Forward records only) |
O | #RECORD REDIRECTION TYPE# | URL Forward records only (frame, http301 or http302) |
O | #RECORD TITLE# | URL Forward Frame title |
O | #RECORD KEYWORDS# | URL Forward Frame keywords |
O | #RECORD DESCRIPTION# | URL Forward Frame description |
O | #RECORD FLAG# | The issuer critical flag (in case of CAA record) |
O | #RECORD TAG# | The tag (issue/issuewild/iodef, in case of CAA record) |
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 |