API Module Nsgroup deleteNsGroupRequest
From Openprovider API documentation
(Difference between revisions)
												
			
		|  (Created page with '==Module Nameserver group > Delete== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |Nameserver group |- style="background-color:#EEEEEE;" |'''Cā¦') | |||
| Line 30: | Line 30: | ||
| ===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 Nameserver group > Delete
| Module | Nameserver group | 
| Command name | deleteNsGroupRequest | 
| Use | Deletes an existing nameserver group object; will only succeed if no domains are linked to this nameserver group | 
| Input | 
 | 
| Output | - | 
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('deleteNsGroupRequest')
  ->setAuth(array('username' => 'username', 'password' => 'password'))
  ->setArgs(array(
    'nsGroup' => 'server-tux',
  ));
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>
  <deleteNsGroupRequest>
    <nsGroup>server-tux</nsGroup>
  </deleteNsGroupRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
  <reply>
    < code>0</code>
    <desc></desc>
  </reply>
</openXML>