API Module Customer deleteCustomerRequest
From Openprovider API documentation
(Difference between revisions)
(Created page with '==Module Customer > Delete== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |customer |- style="background-color:#EEEEEE;" |'''Command name''' |…') |
|||
| Line 30: | Line 30: | ||
===Raw XML=== | ===Raw XML=== | ||
| - | + | <?xml version="1.0" encoding="UTF-8"?> | |
| + | <openxml> | ||
| + | <credentials> | ||
| + | <username>username</username> | ||
| + | <password>password</password> | ||
| + | </credentials> | ||
| + | <deletecustomerrequest> | ||
| + | <handle>JH000001-US</handle> | ||
| + | </deletecustomerrequest> | ||
| + | </openxml> | ||
| + | |||
| + | <?xml version="1.0" encoding="UTF-8"?> | ||
| + | <openxml> | ||
| + | <reply> | ||
| + | < code>0</code> | ||
| + | <desc></desc> | ||
| + | <data>1</data> | ||
| + | </reply> | ||
| + | </openxml> | ||
Revision as of 08:37, 16 April 2010
Contents |
Module Customer > Delete
| Module | customer |
| Command name | deleteCustomerRequest |
| Use | Deletes an existing customer object; will only succeed if no domains are linked to this customer |
| Input |
|
| Output |
- |
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('deleteCustomerRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
'handle' => 'AJ001927-NL'
));
Raw XML
<?xml version="1.0" encoding="UTF-8"?>
<openxml>
<credentials>
<username>username</username>
<password>password</password>
</credentials>
<deletecustomerrequest>
<handle>JH000001-US</handle>
</deletecustomerrequest>
</openxml>
<?xml version="1.0" encoding="UTF-8"?>
<openxml>
<reply>
< code>0</code>
<desc></desc>
<data>1</data>
</reply>
</openxml>