-
Notifications
You must be signed in to change notification settings - Fork 15
Meetuprsvps
blobaugh edited this page Dec 26, 2011
·
2 revisions
This object handles interaction with the rsvps grouping of Meetup API endpoints.
Please visit http://www.meetup.com/meetup_api/docs for more information about the checkin endpoints
The following methods are provided for developer use
Returns a listing of all member RSVPs fitting the given parameters.
The getRsvps() method takes as a parameter an associative array of values to pass to the Meetup API.
All possible parameters as well as response values are listed at http://www.meetup.com/meetup_api/docs/2/checkins/
at least one of the following parameters is required
- event_id
$m = new MeetupRsvps();
$rsvps = $m->getRsvps( array( 'event_id' => 'qdjdfcyqcbqb'));
print_r($rsvps);
To conform to the full Meetup API spec the following changes are required:
- Support POST with postCheckin() to allow user check-ins from the application