API Module Nameserver modifyZoneDnsRequest
From Openprovider API documentation
(Difference between revisions)
| Line 58: | Line 58: | ||
===Raw XML=== | ===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"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<openXML> | <openXML> | ||
Revision as of 11:12, 23 March 2012
Contents |
Module DNS zone > Modify
| Module | DNS zone |
| Command name | modifyZoneDnsRequest |
| Use | Modifies a new DNS zone object |
| Input | |
| Output |
- |
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('modifyZoneDnsRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
'domain' => array(
'name' => 'demozone',
'extension' => 'com'
),
'records' => array(
array(
'type' => 'A',
'name' => ,
'value' => '89.255.0.43',
'ttl' => 86400
),
array(
'type' => 'A',
'name' => '*',
'value' => '89.255.0.43',
'ttl' => 86400
),
array(
'type' => 'MX',
'name' => ,
'value' => 'mail.openprovider.eu',
'prio' => 10,
'ttl' => 86400
)
)
));
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>
<modifyZoneDnsRequest>
<domain>
<name>demozone</name>
<extension>com</extension>
</domain>
<records>
<array>
<item>
<type>A</type>
<name></name>
<value>89.255.0.43</value>
<ttl>86400</ttl>
</item>
<item>
<type>A</type>
<name>*</name>
<value>89.255.0.43</value>
<ttl>86400</ttl>
</item>
<item>
<type>MX</type>
<name></name>
<value>mail.openprovider.eu</value>
<prio>10</prio>
<ttl>86400</ttl>
</item>
</array>
</records>
</createZoneDnsRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
<code>0</code>
<desc></desc>
<data>1</data>
</reply>
</openXML>