This documentation has moved

XML API documentation can now be found at developer.openprovider.com. This page will remain available until September 2026, but will no longer be updated.

The XML API itself is not changing. Your existing integration continues to work.

API Module Domain transferDomainRequest

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
WikiSysop (Talk | contribs)
(Created page with '==Module Domain > Transfer== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |domain |- style="background-color:#EEEEEE;" |'''Command name''' |tr…')
Newer edit →

Revision as of 15:25, 22 April 2010

Contents

Module Domain > Transfer

Module domain
Command name transferDomainRequest
Use Starts a domain transfer
Input
  • domain
  • period
  • authCode
  • ownerHandle
  • adminHandle
  • techHandle
  • nsGroup
  • nameServers
  • useDomicile
Output Expiration date in case of a succeeded realtime domain transfer
  • expirationDate

Examples

Using PHP class

$request = new OP_Request;
$request->setCommand('transferDomainRequest')
  ->setAuth(array('username' => 'username', 'password' => 'password'))
  ->setArgs(array(
    'ownerHandle' => 'SR003891-NL',
    'adminHandle' => 'SR003891-NL',
    'techHandle' => 'SR003891-NL',
    'domain' => array(
      'name' => 'domain',
      'extension' => 'com'
    ),
    'period' => '1',
    'authCode' => 'asd79SAD(8sd',
    'nsGroup' => 'MyServer'
  ));

Raw XML

<?xml version="1.0" encoding="UTF-8"?>
<openxml>
  <credentials>
    <username>username</username>
    <password>password</password>
  </credentials>
  <transferdomainrequest>
    <ownerhandle>SR003891-NL</ownerhandle>
    <adminhandle>SR003891-NL</adminhandle>
    <techhandle>SR003891-NL</techhandle>
    <domain>
      <name>this-domain-is-registered</name>
      <extension>com</extension>
    </domain>
    <period>1</period>
    <authCode>asd79SAD(8sd</authCode>
    <nsgroup>MyServer</nsgroup>
  </transferdomainrequest>
</openxml>
<?xml version="1.0" encoding="UTF-8"?>
<openxml>
  <reply>
    0
    <desc></desc>
  </reply>
</openxml>
Views
Personal tools