This documentation has moved

XML API documentation can now be found at developer.openprovider.com. This page will remain available until September 2026, but will no longer be updated.

The XML API itself is not changing. Your existing integration continues to work.

API Module SpamExperts deleteDomainSeRequest

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
(Created page with '==Module SpamExperts > Delete Domain== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |SpamExperts |- style="background-color:#EEEEEE;" |'''Comm…')
(Raw XML)
 
(3 intermediate revisions not shown)
Line 14: Line 14:
|
|
*'''domainName'''
*'''domainName'''
 +
*'''bundle''' (Set to 1 if filter is in bundle, 0 if not)
|- style="vertical-align:top;"
|- style="vertical-align:top;"
|'''Output'''
|'''Output'''
Line 27: Line 28:
   ->setArgs(array(
   ->setArgs(array(
     'domainName' => 'newfilter.nl',
     'domainName' => 'newfilter.nl',
 +
    'bundle' => '0'
   ));
   ));
===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>
Line 38: Line 41:
   <deleteDomainSeRequest>
   <deleteDomainSeRequest>
     <domainName>newfilter.nl</domainName>
     <domainName>newfilter.nl</domainName>
 +
    <bundle>0</bundle>
   </deleteDomainSeRequest>
   </deleteDomainSeRequest>
  </openXML>
  </openXML>

Current revision as of 05:42, 14 December 2018

Contents

Module SpamExperts > Delete Domain

Module SpamExperts
Command name deleteDomainSeRequest
Use Deletes a domain filter from the active SpamExperts bundle
Input
  • domainName
  • bundle (Set to 1 if filter is in bundle, 0 if not)
Output

-

Examples

Using PHP class

$request = new OP_Request;
$request->setCommand('deleteDomainSeRequest')
  ->setAuth(array('username' => 'username', 'password' => 'password'))
  ->setArgs(array(
    'domainName' => 'newfilter.nl',
    'bundle' => '0'
  ));

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>
    <bundle>0</bundle>
  </deleteDomainSeRequest>
</openXML>

<?xml version="1.0" encoding="UTF-8"?>
<openXML>
  <reply>
    < code>0</code>
    <desc></desc>
    <data>
      <message></message>
    </data>
  </reply>
</openXML>
Views
Personal tools