Can you share what you did to customize the library to collect eventspot entries? I, too, modified the config with: 'eventspot_registrant' => 'eventspot/events/%s/registrants/%s' I also created a function in ListService.php to retrieve the contacts: /** * Get all contacts from an event list * @param string $accessToken - Constant Contact OAuth2 access token * @param string $eventId - event id for which to retrieve contacts * @return ResultSet */ public function getRegistrantsFromEvent($accessToken, $eventId) { echo $baseUrl = Config::get('endpoints.base_url') . sprintf(Config::get('endpoints.eventspot_registrant'), $eventId); $url = $this->buildUrl($baseUrl, $params); $response = parent::getRestClient()->get($url, parent::getHeaders($accessToken)); $body = json_decode($response->body, true); $registrants = array(); foreach ($body['results'] as $registrant) { $registrants[] = Contact::create($registrant); } return new ResultSet($registrants, $body['meta']); } However, this succeeds in retrieving nothing. What am I missing? Many thanks.
... View more