📘 BACKCLICK Doku
Anmelden

Transactions-Create Channel

Erstellt von Confluence-Import am · zuletzt geändert von Confluence-Import am · v1

Description

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:

  • Mandator ID
  • API-Key (optional authentication, if not provided the IP address will be used for authentication)
  • Name of the channel
  • Description of the channel

Example

$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)
}

Source code

In order to test a working example you can download the source code.

Example for creating a transaction channel

 

Anhänge (1)