📘 BACKCLICK Doku
Anmelden
Hinweisbox:

Description

Use this feature to retrieve entries from the Robinson list.
You can either retrieve the internal (permanent) or the temporary Robinson list.
A list of E-Mail addresses present will be returned as result.

Available starting from Backclick-Version: 5.8.6

In order to use this feature you have to provide the following information:

  • Mandator ID
  • API-Key (optional authentication, if not provided the IP address will be used for authentication)
  • Type of the list to be retrieved (leaving this out leads to retrieving the internal list)

Example

$client = new SoapClient($wsdlUrl);
$request = new StdClass();
$request->mandatorId = 0;
$request->apiKey = "";
$request->temporaryList = false;
try {
  $result = $client->getRobinsonEntries($request);
  $addresses = explode(" ", $result->addresses);
  var_dump($addresses);
} catch (Exception $e) {
  echo "Error: " . $e->getMessage() . "\n";
}
array(11) {
  [0]=>
  string(16) "[email protected]"
}

Source code

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

Example for retrieving the Robinson list entries

Abbrechen