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

Meetup Members

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

getMembers( $Parameters )

Returns a listing of all members of groups fitting the given parameters.

Parameters

The getMembers() 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/members/

at least one of the following parameters is required

  • group_id
  • group_urlname
  • member_id
  • service
  • topic,groupnum

Example usage

 $m = new MeetupMembers();

$members = $m->getMembers( array( 'group_id' => '1708069' ));

print_r($members);

getMember( $Id, $Parameters )

Returns the specified user information

Parameters

The getMember() 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/member/#get

If no $Parameters are used the current user's information will be returned

Example usage

 $m = new MeetupMembers();

 $member = $m->getMember( '14508967' );

 print_r($member);

getProfiles( $Parameters )

Returns the specified user information

Parameters

The getProfiles() 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/member/#get

at least one of the following parameters is required

  • group_id
  • group_urlname
  • topic,groupnum

Example usage

 $m = new MeetupMembers();

 $profiles = $m->getProfiles( array( 'group_id' => '1708069' ));

 print_r($profiles);

Development Needed

To conform to the full Meetup API spec the following changes are required:

  • Support POST
Clone this wiki locally