4.4  Message/Topic Deletion Webservice

There is a webservice which enables you to delete a message or even a topic

Note that to delete a topic, you will need to first delete its first message

Here are the parameters

Here is a script example based on the message/topic deletion webservice, done in PHP

require("nusoap/nusoap.php");

$sel = new soapclient("http://forumdev.MyDiscussionsnet/webservices/wservice.php");

$param = array(
    'user' => 'LoginAdministrateur',
    'pwd' => 'motdepasseAdministrateur',
    'idforum' => 1,
    'idcat' => 22,
    'idtopic' => 49,
    'idpost' => 106
);
$results = $sel->call('delete_message', $param);

If everything goes right, the message or/and the topic will return the 2 following parameters


4.3 Message Edition Webservice4.5 Sub category Creation Webservice