formData( )


Deprecated

This method is deprecated.

Deprecated. This object will be deprecated on March 30, 2026. Replace with the object from getForm().

Migration Instructions

To stay compatible with future changes, migrate to getForm().

To migrate to the new method:

  1. Add a backend file to your site.

  2. Write a code so that it replaces the formData object from the frontend with the getForm() method's object from the backend. Export your backend function so that it can be used in the frontend.

  3. Import your backend function into the frontend file. Test your changes to make sure your code behaves as expected.

The returned FormData object contains the information you need to create a custom registration form for the specified event.

This information includes:

  • The event's registration status, such as whether registration is open, closed, or guests will be placed on a waitl ist.
  • Which statuses guests can RSVP with, such as yes, no, or to be added to the wait list.
  • Whether the event is a ticketed event.
  • Information about the registration form's fields, such as their names, descriptive labels, and whether they're required.

Note: The frontend Events APIs aren't functional when previewing a site. View a published version of a site to see their complete functionality.

Method Declaration
Copy
Request
This method does not take any parameters
Returns
Return Type:Promise<FormData>
Errors

This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?