Created
July 20, 2011 22:36
-
-
Save pifantastic/1096101 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
try { | |
$list = new ExactTarget_List(); | |
$list->ListName = "Aaron's test list"; | |
$list->Description = "Aaron is now testing the API!"; | |
$exact_target = ExactTarget::instance('SOAP')->create($list); | |
} | |
catch (ExactTarget_Exception $e) { | |
krumo($e); | |
} | |
catch (SoapFault $e) { | |
krumo($e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment