Get List Details

Getting details of a list (apiGetListDetails)

This function provides you with more information about a single list. The name, the description, and the number of logins and logouts are specified.

Request

NameTypeExampleRequiredComment
listIDInteger123456789apiGetList() delivers all possible List IDs.

Response

stdClass Object
(
    [listResponse] => stdClass Object
        (
            [listID] => 123456789
            [listName] => Test List
            [listDescription] => Test Description
            [listSubscriber] => 5000
            [listUnsubscriber] => 1000
        )
    [status] => 200
)

Error Response

CodeInterpretation
404No valid List IDs were passed.

PHP5 Example

try{
    $request = array(
 
        'listID'=> 123456789,
 
);
    $response=$client->apiGetListDetails($request);
}
catch (SoapFault $exception) {
    echo ($exception->getMessage());
}