This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Events
ctctsupport edited this page May 4, 2011
·
3 revisions
<?php
// get the first page of events
$events = $ConstantContact->getEvents();
// get the next page of events
$moreEvents = $ConstantContact->getEvents($events['nextLink']);
?>
<?php
// get the first page of events
$events = $ConstantContact->getEvents();
// get details for the first event returned
$Event = $ConstantContact->getEventDetails($events['events'][0]);
?>
<?php
// get the first page of events
$events = $ConstantContact->getEvents();
// get details for the first event returned
$registrants = $ConstantContact->getRegistrants($events['events'][0]);
?>
<?php
// get the first page of events
$events = $ConstantContact->getEvents();
// get registrants for the first event returned
$registrants = $ConstantContact->getRegistrants($events['events'][0]);
// get registrant details
$Registrant = $ConstantContact->getRegistrantDetails($registrants['registrants'][0]);
?>