Getting all unsubscribed subscribers of a list (apiGetSubscriberUnsubscribes)
With this option, you retrieve all unsubscribed subscribers of a list. This function takes a list ID as a parameter. This function only provides the e-mail address.
Request
| Name | Type | Example | Required | Comment | 
|---|---|---|---|---|
| listID | Integer | 123456789 | yes | apiGetList() delivers all possible List IDs. | 
| start | Integer | 0 | no | |
| count | Integer | 100 | no | limited to 100 | 
Response
[subsriberResponse] => Array
(
    [0] => stdClass Object
        (
            [subscriberID] => 123456789
            [subscriberEmail] => joe.smith@example.com
            [subscriberTimestampSubscribe] => 1395692130
            [subscriberTimestampUnsubscribe] => 1413447945
        )
   [...]
)
Error Response
| Name | Type | Example | Required | Comment | 
|---|---|---|---|---|
| listID | Integer | 123456789 | yes | apiGetList() delivers all possible List IDs. | 
| start | Integer | 0 | no | |
| count | Integer | 100 | no | limited to 100 | 
PHP Example
try{
    $request = array(
        'start'=>       0,
        'count'=>       100,
        'listID'=> 123456,
    );
    $response=$client->apiGetSubscriberUnsubscribes($request);
}
catch (SoapFault $exception) {
    echo ($exception->getMessage());
}