API Module SpamExperts deleteDomainSeRequest
From Openprovider API documentation
(Difference between revisions)
(Created page with '==Module SpamExperts > Delete Domain== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |SpamExperts |- style="background-color:#EEEEEE;" |'''Comm…') |
|||
| 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:16, 23 March 2012
Contents |
Module SpamExperts > Delete Domain
| Module | SpamExperts |
| Command name | deleteDomainSeRequest |
| Use | Deletes a domain filter from the active SpamExperts bundle |
| Input |
|
| Output |
- |
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('deleteDomainSeRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
'domainName' => 'newfilter.nl',
));
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>
<deleteDomainSeRequest>
<domainName>newfilter.nl</domainName>
</deleteDomainSeRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
< code>0</code>
<desc></desc>
<data>
<message></message>
</data>
</reply>
</openXML>