The guest counts can be retrieved through the /2/rsvps methods (in the
guests field) and can be modified by POSTing a new RSVP to the /2/rsvp
method for the same event_id and member_id, modifying the guests
parameter there. You will probably also want to copy the RSVP comments
(and survey questions, if you're using them in your group) from the old
RSVP to the new one.
Organizers can create or edit other people's RSVPs in their group;
normal users can of course only change their own RSVP.
(Note that the POST /2/rsvp method is new, but the version 1 API should
work similarly here if you need to keep using it for some reason.)
cheers,
mlc
--
mike castleman
android developer, meetup
mailto:m...@meetup.com
You will probably also want to copy the RSVP comments
(and survey questions, if you're using them in your group) from the old
RSVP to the new one.
On Sunday, February 26, 2012 10:52:21 AM UTC-8, Mike Castleman wrote:You will probably also want to copy the RSVP comments
(and survey questions, if you're using them in your group) from the old
RSVP to the new one.Hmmh. Does this imply I can remove and/or change RSVP comments?
On Sun, Mar 4, 2012 at 5:18 PM, Steven wrote:On Sunday, February 26, 2012 10:52:21 AM UTC-8, Mike Castleman wrote:You will probably also want to copy the RSVP comments
(and survey questions, if you're using them in your group) from the old
RSVP to the new one.Hmmh. Does this imply I can remove and/or change RSVP comments?
You can update event survey questions through the 2/rsvp API. See the parameter notes section
http://www.meetup.com/meetup_api/docs/2/rsvp/#createparams
You really don't want to expose your api key on the client but rather have it stored on the server where no one can access it.
I think the error you are seeing is that your the url you are posting to is 2/rsvps and not 2/rsvp
On Tue, Mar 6, 2012 at 12:03 AM, Steven wrote:Last question: Is there a way I can bulk change a bunch 'o RSVPs at once? Clearly I can't put MemID1,MemID2 ...Not with one request, no. I probably wouldn't encourage that either because it would confuse users when they visit the site unless they've authorized your app to do so.