The handshake operation allows a registrar to accept or reject a registrar change/registrant transfer authorisation request.
<h:accept> element
The <h:accept> element is used to accept a registrar change/registrant transfer authorisation request. This element contains the following sub-elements:
- An <h:caseId> element specifying the case-id of the authorisation request.
- An optional <h:registrant> element specifying an account that the domains associated with the case should be placed on. Note that this is only applicable to registrar changes. A new account is created If this element is not given.
<h:reject> element
The <h:reject> element is used to reject a registrar change/registrant transfer authorisation request. This element contains the following sub-elements:
- An <h:caseId> element specifying the case-id of the authorisation request.
Example handshake accept request
<?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>
<update>
<h:accept
xmlns:h="http://www.nominet.org.uk/epp/xml/std-handshake-1.0"
xsi:schemaLocation="http://www.nominet.org.uk/epp/xml/std-handshake-1.0
std-handshake-1.0.xsd">
<h:caseId>123456</h:caseId>
<h:registrant>EXAMPLE-REGISTRANT</h:registrant>
</h:accept>
</update>
<clTRID>ABC-12345</clTRID>
</command>
</epp>
Example response to a successful handshake accept request:
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nominet.org.uk/epp/xml/epp-1.0 epp-1.0.xsd">
<response>
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<resData>
<h:hanData
xmlns:h="http://www.nominet.org.uk/epp/xml/std-handshake-1.0"
xsi:schemaLocation="http://www.nominet.org.uk/epp/xml/std-handshake-1.0 std-handshake-1.0.xsd">
<h:caseId>6</h:caseId>
<h:domainListData noDomains="2">
<h:domainName>example1.co.uk</h:domainName>
<h:domainName>example2.co.uk</h:domainName>
</h:domainListData>
</h:hanData>
</resData>
<trID>
<clTRID>EPP-ABC-12345</clTRID>
<svTRID>104239</svTRID>
</trID>
</response>
</epp>