Add a new list (apiAddList)
Legen Sie mit dieser Funktion eine neue Empfängerliste an.
Request
Name | Type | Example | Required | Comment |
---|---|---|---|---|
listName | String | Neue Gruppe | ||
listDescription | String | Gruppenbeschreibung |
Error Response
Code | Interpretation |
---|---|
404 | Es wurde kein Listen Name übergeben. |
PHP5 Beispiel
try{ $request = array( 'listName'=> 'Neue Gruppe', 'listDescription'=> 'Gruppenbeschreibung', ); $response=$client->apiAddList($request); } catch (SoapFault $exception) { echo ($exception->getMessage()); }