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:
$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]" }
In order to test a working example you can download the source code.
Example for retrieving the Robinson list entries