API Module Domain retrieveAdditionalDataDomainRequest
From Openprovider API documentation
(Difference between revisions)
(→Raw XML) |
(→Raw XML) |
||
(2 intermediate revisions not shown) | |||
Line 18: | Line 18: | ||
|Overview of extension details: | |Overview of extension details: | ||
*name (field name) | *name (field name) | ||
- | *required (if the field is | + | *required (if the field is mandatory or optional) |
*type (field type, e.g. text, check, select, multiselect) | *type (field type, e.g. text, check, select, multiselect) | ||
*[[API Format options|options]] (possible values & value descriptions) | *[[API Format options|options]] (possible values & value descriptions) | ||
Line 31: | Line 31: | ||
->setArgs(array( | ->setArgs(array( | ||
'domain' => array( | 'domain' => array( | ||
- | 'extension' => ' | + | 'extension' => 'ca' |
), | ), | ||
)); | )); | ||
Line 45: | Line 45: | ||
<retrieveAdditionalDataDomainRequest> | <retrieveAdditionalDataDomainRequest> | ||
<domain> | <domain> | ||
- | <extension> | + | <extension>ca</extension> |
</domain> | </domain> | ||
</retrieveAdditionalDataDomainRequest> | </retrieveAdditionalDataDomainRequest> | ||
Line 58: | Line 58: | ||
<array> | <array> | ||
<item> | <item> | ||
- | <name> | + | <name>legalType</name> |
- | <description> | + | <description>Legal type</description> |
<required>1</required> | <required>1</required> | ||
<type>select</type> | <type>select</type> | ||
Line 65: | Line 65: | ||
<array> | <array> | ||
<item> | <item> | ||
- | <value> | + | <value>ABO</value> |
- | <description> | + | <description>Aboriginal Peoples indigenous to Canada</description> |
</item> | </item> | ||
<item> | <item> | ||
- | <value> | + | <value>ASS</value> |
- | <description> | + | <description>Canadian Unincorporated Association</description> |
</item> | </item> | ||
+ | ... | ||
<item> | <item> | ||
- | <value> | + | <value>TRS</value> |
- | <description> | + | <description>Trust established in Canada</description> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</item> | </item> | ||
</array> | </array> |
Current revision as of 08:43, 30 November 2016
Contents |
Module Domain > Retrieve Additional Data
Module | domain |
Command name | retrieveAdditionalDataDomainRequest |
Use | Retrieve additional data & fields required to register domain in specific TLD |
Input |
|
Output | Overview of extension details:
|
Examples
Using PHP class
$request = new OP_Request; $request->setCommand('retrieveAdditionalDataDomainRequest') ->setAuth(array('username' => 'username', 'password' => 'password')) ->setArgs(array( 'domain' => array( 'extension' => 'ca' ), ));
Raw XML
Please note that newlines and leading spaces are added only for readability. Those whitespaces should be excluded from your XML command before sending it to Openprovider.
<?xml version="1.0" encoding="UTF-8"?> <openXML> <credentials> <username>username</username> <password>password</password> </credentials> <retrieveAdditionalDataDomainRequest> <domain> <extension>ca</extension> </domain> </retrieveAdditionalDataDomainRequest> </openXML>
<?xml version="1.0" encoding="UTF-8"?> <openXML> <reply> <code>0</code> <desc></desc> <data> <array> <item> <name>legalType</name> <description>Legal type</description> <required>1</required> <type>select</type> <options> <array> <item> <value>ABO</value> <description>Aboriginal Peoples indigenous to Canada</description> </item> <item> <value>ASS</value> <description>Canadian Unincorporated Association</description> </item> ... <item> <value>TRS</value> <description>Trust established in Canada</description> </item> </array> </options> </item> </array> </data> </reply> </openXML>