Skip to main content
RSVP methods are exposed on the AmityEvent object returned by the event repository. Use them after you have loaded or created an event.
Flutter does not currently expose public scheduled-event RSVP APIs in the SDK source reviewed for this page.

Status Values

Parameters

Create RSVP

Create an RSVP when a user responds to an event for the first time. The examples load the event first, then call createRSVP on the returned event object.

Update RSVP

Update an RSVP when a user changes their response. Use the same event object flow, but pass the new status to updateRSVP.

Get My RSVP

Get the active user’s RSVP for an event when the UI needs to show the current response before offering update actions.

Query RSVPs

Query RSVP responses when you need to render attendee lists, counts by status, or moderation views. Filter by status when the screen only needs one response group.

Response Fields

AmityEventResponse includes the event ID, user ID, status, linked user when available, creation time, update time, and the time the user responded. Android also exposes an RSVP ID through getRsvpId().

Create Event

Create the event before collecting RSVP responses.

Manage Events

Get and query event objects before calling RSVP methods.

Events Overview

Review event coverage, fields, and status values.