create([ // required 'general' => [ 'name' => 'My list created from the API', // required 'description' => 'This is a test list, created from the API.', // required ], // required 'defaults' => [ 'from_name' => 'John Doe', // required 'from_email'=> 'johndoe@doe.com', // required 'reply_to' => 'johndoe@doe.com', // required 'subject' => 'Hello!', ], // optional 'notifications' => [ // notification when new subscriber added 'subscribe' => 'yes', // yes|no // notification when subscriber unsubscribes 'unsubscribe' => 'yes', // yes|no // where to send the notifications. 'subscribe_to' => 'johndoe@doe.com', 'unsubscribe_to' => 'johndoe@doe.com', ], // optional, if not set customer company data will be used 'company' => [ 'name' => 'John Doe INC', // required 'country' => 'United States', // required 'zone' => 'New York', // required 'address_1' => 'Some street address', // required 'address_2' => '', 'zone_name' => '', // when country doesn't have required zone. 'city' => 'New York City', 'zip_code' => '10019', ], ]); // and get the response echo '
'; print_r($response->body); echo '';