API Module Domain retrieveDomainRequest
From Openprovider API documentation
(Difference between revisions)
(Created page with '==Module Domain > Modify== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |domain |- style="background-color:#EEEEEE;" |'''Command name''' |retr…') |
|||
Line 51: | Line 51: | ||
===Raw XML=== | ===Raw XML=== | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
- | < | + | <openXML> |
<credentials> | <credentials> | ||
<username>username</username> | <username>username</username> | ||
<password>password</password> | <password>password</password> | ||
</credentials> | </credentials> | ||
- | < | + | <retrieveDomainRequest> |
<domain> | <domain> | ||
<name>domain-info</name> | <name>domain-info</name> | ||
<extension>nl</extension> | <extension>nl</extension> | ||
</domain> | </domain> | ||
- | < | + | <withadditionalData>0</withadditionalData> |
- | </ | + | </retrieveDomainRequest> |
- | </ | + | </openXML> |
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
- | < | + | <openXML> |
<reply> | <reply> | ||
<code>0</code> | <code>0</code> | ||
Line 77: | Line 77: | ||
<nameservers /> | <nameservers /> | ||
<id>341105</id> | <id>341105</id> | ||
- | < | + | <isLockable>0</isLockable> |
- | < | + | <isLocked>0</isLocked> |
<comments></comments> | <comments></comments> | ||
- | < | + | <orderDate>2010-03-15 16:50:19</orderDate> |
- | < | + | <activeDate /> |
- | < | + | <expirationDate></expirationDate> |
<status>FAI</status> | <status>FAI</status> | ||
- | < | + | <canRenew>0</canRenew> |
- | < | + | <autoRenew>0</autoRenew> |
- | < | + | <ownerHandle>OH002766-NL</ownerHandle> |
- | < | + | <adminHandle>OH002766-NL</adminHandle> |
- | < | + | <techHandle>OH002766-NL</techHandle> |
- | < | + | <nsGroup>opdrs4</nsGroup> |
<type>NEW</type> | <type>NEW</type> | ||
- | < | + | <authCode></authCode> |
- | < | + | <authorizationCodeRequired>0</authorizationCodeRequired> |
- | < | + | <tradeAllowed>1</tradeAllowed> |
- | < | + | <restorePrice>70</restorePrice> |
- | < | + | <useDomicile>0</useDomicile> |
- | < | + | <ownerName> |
<initials>N.</initials> | <initials>N.</initials> | ||
- | < | + | <firstName>Nigel</firstName> |
- | <prefix | + | <prefix /> |
- | < | + | <lastName>Jones</lastName> |
- | </ | + | </ownerName> |
- | < | + | <ownerCompanyName></ownerCompanyName> |
</data> | </data> | ||
</reply> | </reply> | ||
- | </ | + | </openXML> |
Revision as of 13:44, 1 July 2010
Contents |
Module Domain > Modify
Module | domain |
Command name | retrieveDomainRequest |
Use | Retrieves information about an existing domain object |
Input |
|
Output |
|
Examples
Using PHP class
$request = new OP_Request; $request->setCommand('retrieveDomainRequest') ->setAuth(array('username' => 'username', 'password' => 'password')) ->setArgs(array( 'domain' => array( 'name' => 'openprovider', 'extension' => 'nl' ), 'withAdditionalData' => 0 ));
Raw XML
<?xml version="1.0" encoding="UTF-8"?> <openXML> <credentials> <username>username</username> <password>password</password> </credentials> <retrieveDomainRequest> <domain> <name>domain-info</name> <extension>nl</extension> </domain> <withadditionalData>0</withadditionalData> </retrieveDomainRequest> </openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
0
<desc></desc>
<data>
<domain>
<name>abcdefg4</name>
<extension>nl</extension>
</domain>
<nameservers />
<id>341105</id>
<isLockable>0</isLockable>
<isLocked>0</isLocked>
<comments></comments>
<orderDate>2010-03-15 16:50:19</orderDate>
<activeDate />
<expirationDate></expirationDate>
<status>FAI</status>
<canRenew>0</canRenew>
<autoRenew>0</autoRenew>
<ownerHandle>OH002766-NL</ownerHandle>
<adminHandle>OH002766-NL</adminHandle>
<techHandle>OH002766-NL</techHandle>
<nsGroup>opdrs4</nsGroup>
<type>NEW</type>
<authCode></authCode>
<authorizationCodeRequired>0</authorizationCodeRequired>
<tradeAllowed>1</tradeAllowed>
<restorePrice>70</restorePrice>
<useDomicile>0</useDomicile>
<ownerName>
<initials>N.</initials>
<firstName>Nigel</firstName>
<prefix />
<lastName>Jones</lastName>
</ownerName>
<ownerCompanyName></ownerCompanyName>
</data>
</reply>
</openXML>