Skip to content
blobaugh edited this page Dec 26, 2011 · 2 revisions

Meetup RSVPs

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

Methods

The following methods are provided for developer use

getRsvps( $Parameters )

Returns a listing of all member RSVPs fitting the given parameters.

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

Example usage

$m = new MeetupRsvps();
$rsvps = $m->getRsvps( array( 'event_id' => 'qdjdfcyqcbqb'));

print_r($rsvps);

Development Needed

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
Clone this wiki locally