Add List

Add a new list (apiAddList)

Use this function to set a new subscriber list.

Request

NameTypeExampleRequiredComment
listNameStringNew List
listDescriptionStringList Description

Error Response

CodeInterpretation
404No list name was passed.

PHP5 Example

try{
$request = array(
    'listName'=> 'Neue List',
    'listDescription'=> 'List Description',
);
 
$response=$client->apiAddList($request);
 
}
catch (SoapFault $exception) {
    echo ($exception->getMessage());
}