5.12.3. Send AuthInfo for nsset¶
A nsset sendAuthInfo command is used to provide the autorization information (AuthInfo) of an nsset to the technical contacts of the nsset.
The client sends only the request for the provision to the Registry and
the Registry sends the AuthInfo to the email of all technical contacts. These actions do not happen when
the transfer of the nsset is forbidden, i.e the nsset has the status serverTransferProhibited
.
This command is a part of the protocol extension defined by the FRED EPP server.
The command must be contained in the <fred:sendAuthInfo>
command type.
5.12.3.1. Command element structure¶
The <nsset:sendAuthInfo>
element must declare the nsset
namespace
and schema and it must contain the following child element:
<nsset:id>
(1) – an nsset handle as fredcom:objIDType.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd">
<extension>
<fred:extcommand xmlns:fred="http://www.nic.cz/xml/epp/fred-1.5"
xsi:schemaLocation="http://www.nic.cz/xml/epp/fred-1.5 fred-1.5.0.xsd">
<!-- Custom command type -->
<fred:sendAuthInfo>
<!-- The object-defined command -->
<nsset:sendAuthInfo xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2"
xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.4.xsd">
<nsset:id>NSSET-MYNSSET</nsset:id>
</nsset:sendAuthInfo>
</fred:sendAuthInfo>
<fred:clTRID>rhgo003#17-08-08at17:13:13</fred:clTRID>
</fred:extcommand>
</extension>
</epp>
> send-auth-info-nsset --id=NSSET-MYNSSET
5.12.3.2. Response element structure¶
The FRED EPP server responds with a plain result message
which does not contain any response data (no <resData>
).
Important
Since FRED 2.48.0, server can be configured
to return partially disclosed email addresses
of AuthInfo recipients. In such case, response may contain <resData>
.
[rifd]
# With this flag set, even if disclose policy "hide" is set for
# email and notify_email, their values can be partially disclosed
# in response to SendAuthInfo.
partially_disclose_contact_emails = true
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd">
<response>
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<resData>
<nsset:sendAuthInfoData
xmlns:nsset="http://www.nic.cz/xml/epp/nsset-1.2"
xsi:schemaLocation="http://www.nic.cz/xml/epp/nsset-1.2 nsset-1.2.4.xsd">
<nsset:email>j*****@d*****.*</nsset:email>
</nsset:sendAuthInfoData>
</resData>
<trID>
<clTRID>ohji6q#2025-04-08T14:46:28.084841</clTRID>
<svTRID>ReqID-0009068001</svTRID>
</trID>
</response>
</epp>
See also Success or failure of a command.