0

I wanted to get all the events from the Meetup.com whichever I have enrolled.

I am not quite understanding :urlname.

Can you please suggest me the API / REST Call.

Thanks, Raja K

kulls
  • 845
  • 2
  • 12
  • 37

1 Answers1

0

You can do this easily in the Meetup.com api console - the endpoint is GET /2/events. You will want to enter the parameters:

rsvp=yes,
member_id=self,
status=past,
page=200,
desc=false,
omit=description

Then click on Show Response. You can either read the response there or I find it easier to copy the signed link and paste it into a browser window and hit return. Then select all the JSON text that comes back and paste it into the left pane in http://www.jsoneditoronline.org/ and tap the little arrow to get it mapped into fields in the right hand pane

antwerpenR
  • 66
  • 4
  • Thanks, Can you please suggest me the api paramaters for the below meetup event ? https://www.meetup.com/AmericanAngels/ – kulls Jan 04 '17 at 00:00