createRsvp( )


Creates RSVP.

To create RSVP with multiple guests, you have to specify the additionalGuests and guestNames fields.

Permissions
Manage Events
Learn more about app permissions.
Method Declaration
Copy
function createRsvp(rsvp: Rsvp, options: CreateRsvpOptions): Promise<Rsvp>;
Method Parameters
rsvpRsvpRequired

RSVP info.


optionsCreateRsvpOptions
Returns
Return Type:Promise<Rsvp>
JavaScript
import { rsvpV2 } from "@wix/events"; async function createRsvp(rsvp, options) { const response = await rsvpV2.createRsvp(rsvp, options); }
Errors
400Invalid Argument

There are 4 errors with this status code.

428Failed Precondition

There are 8 errors with this status code.

This method may also return standard errors. Learn more about standard Wix errors.

Did this help?