All required parameters must be supplied. This method requires parameters encoded in application/x-www-form-urlencoded format as an HTTP POST.
Survey questions may be submitted in the format "question_{index}=questiontext" where "index" is an integer representing the order the questions should be presented in. e.g. question_0=question1&question_1=question2.
Organizers of the hosting group may optionally save this event as a draft by setting "publish_status" to "draft". Drafts are then discoverable using the /2/events API setting the "status" request parameter to "draft"
If successful, this method returns an HTTP 201 Created response with a Location header containing the Event Get method for this event. 401 Unauthorized is returned if the currently authenticated member can not create meetups in the specified group. The content body is the same as that returned by Event Get.
Update an existing Meetup
All parameters are optional. This method requires an HTTP POST.
If a lat & lon are provided, the event's venue will be updated accordingly.
Survey questions may be submitted in the format "question_{index}=questiontext" where "index" is an integer representing the order the questions should be presented in. e.g. question_0=question1&question_1=question2.
To view existing survey questions supply the request parameter fields=survey_questions with the Event Get To edit questions you may submit questions in the format "question_edit_{id}=updatedquestion" where id is the id of the question. To clear an existing question for the event survey, just submit question_edit_{id} with an empty value.
Organizers may publish a draft event by posting with the "publish_status" request parameter set to "published". Organizers and hosts of the event may also optionally announce an unannounced event by posting with the "announce" request parameter set to "true"
If successful, this method returns an HTTP 200 OK response. 401 Unauthorized is returned if the currently authenticated member can not edit the specified Meetup. The content body is the same as that returned by Event Get.
Retrieve a single meetup
Only authorization parameters are needed. Some groups, while remaining private, still wish to show some information about their events. You can include these events in results using the limited_events request parameter.
Deletes a specified meetup
Only authorization parameters are needed.
Returns an HTTP 200 response if delete was successful, 401 if unauthorized.