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

Meetup Check-ins

This object handles interaction with the checkins 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

getCheckins( $Parameters )

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

Parameters

The getCheckins() 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
  • group_id
  • member_id

Example usage

$m = new MeetupCheckins();
$checkins = $m->getCheckins( array( 'member_id' => '14508967' ));

foreach($checkins AS $c) {
    echo $c['member_name'] . " at " . $c['group_id'] . "<br/>";
}

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