Search.../

Introduction

Use the RSVP API to create custom RSVP experiences for your events.

You need to have at least one existing event before getting started.

Typical Custom RSVP Lifecycle

  1. In the Dashboard, set up a registration form for an event.
  2. Retrieve the ID of an event from the Events/Events collection.
  3. Get the event Form using the getForm() function with the ID retrieved above.
  4. Retrieve information about the form inputs in the form using the formData function.
  5. In the Editor, add user input elements for each form input retrieved above. You may want to set the elements IDs to match the names of form inputs retrieved above so that you will not have to map the names later.
  6. In the Editor, add a button that will be used to create a new RSVP using the form values that a site visitor enters.
  7. When the create button is clicked, gather the values entered into the form in a FormValue array and use the createRsvp() function to create an RSVP using the form values.

Was this helpful?