Use this feature to add a new transaction channel used to group transaction mails in order to evaluate them separately. Transaction channels are necessary to be able to do statistical evaluations later on. You cannot send transaction mails without a transaction channel. If you do not set a name while creating a transaction channel, Backclick will set a name itself. In this case the name will always be “Channel “ and the channel ID (i.e.: “Channel 1”).
Available starting from Backclick-Version: 5.8.4
In order to create a transaction channel you have to provide the following information:
$client = new SoapClient($wsdlUrl); $channel = new StdClass(); $channel->mandatorId = 0; try { $result = $client->createTransactionChannel($channel); var_dump($result); } catch(Exception $e) { echo "Fehler aufgetreten: " . $e->getMessage() . "\r\n"; }
object(stdClass)#3 (1) { ["channelId"]=> int(1011) }
In order to test a working example you can download the source code.
Example for creating a transaction channel