Search.../

deleteRsvpCheckIn( )

Deletes an RSVP check-in.

Admin Method

This function requires elevated permissions to run. This function is not universal and runs only on the backend.

Syntax

function deleteRsvpCheckIn(eventId: string, options: DeleteRsvpCheckInOptions): Promise<DeleteRsvpCheckInResponse>

deleteRsvpCheckIn Parameters

NAME
TYPE
DESCRIPTION
eventId
string

Event ID to which RSVP belongs.

options
Optional
DeleteRsvpCheckInOptions

Optional fields.

Returns

Return Type:

Promise<
DeleteRsvpCheckInResponse
>
NAME
TYPE
DESCRIPTION
rsvp
Rsvp

Updated RSVP.

Was this helpful?

deleteRsvpCheckIn example

Copy Code
1import { rsvp } from 'wix-events.v2';
2
3 async function deleteRsvpCheckIn(eventId, options) {
4 try {
5 const result = await rsvp.deleteRsvpCheckIn(eventId, options);
6
7 return result;
8 } catch (error) {
9 console.error(error);
10 // Handle the error
11 }
12 }
13