Skip to content
smallfri edited this page Nov 16, 2015 · 1 revision

Setup

// require the setup which has registered the autoloader
require_once dirname(__FILE__) . '/setup.php';

// CREATE THE ENDPOINT
$endpoint = new EmailOneApi_Endpoint_ListSegments();

## Get all Items

// GET ALL ITEMS $response = $endpoint->getSegments('LIST-UNIQUE-ID');

// DISPLAY RESPONSE echo '

';
print_r($response->body);
echo '
';
Clone this wiki locally