5.8.3. Transfer nsset¶
A nsset transfer command is used to take over sponsorship of an nsset.
An AuthInfo (in role of transfer password) must be provided for authorization. It can be the AuthInfo of:
- the nsset, or 
- a technical contact of the nsset. 
A new AuthInfo is generated for the nsset by the server after a successful transfer.
The nsset transfer command is a transfer element in the nsset namespace
(http://www.nic.cz/xml/epp/nsset-1.2).
The command must be contained in the <transfer> command type.
The command type must specify the request operation (@op = 'request').
5.8.3.1. Command element structure¶
The <nsset:transfer> element must declare the nsset namespace
and schema and it must contain the following child elements:
- <nsset:id>(1) – the nsset handle as fredcom:objIDType,
- <nsset:authInfo>(1) – the authorization information (AuthInfo for short, in role of transfer password) as fredcom:authInfoType.
<?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">
   <command>
      <transfer op="request">
         <nsset:transfer 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-TRNSSET</nsset:id>
            <nsset:authInfo>trpwd123</nsset:authInfo>
         </nsset:transfer>
      </transfer>
      <clTRID>yoie002#17-08-01at13:15:51</clTRID>
   </command>
</epp>
> transfer-nsset --id=NSSET-TRNSSET --auth-info=trpwd123
5.8.3.2. Response element structure¶
The FRED EPP server responds with a plain result message
which does not contain any response data (no <resData>).
See also Success or failure of a command.