Cancels the check-in of RSVP guests.
If the request body is empty, cancels all check-ins from the RSVP. After the cancellation, the guests.checkInDate
value becomes empty.
You can cancel check-in of up to 11 guests per request.
function cancelRsvpGuestsCheckIn(
rsvpId: string,
options: CancelRsvpGuestsCheckInOptions,
): Promise<CancelRsvpGuestsCheckInResponse>;
ID of RSVP to cancel check-in.
import { rsvpV2 } from "@wix/events";
async function cancelRsvpGuestsCheckIn(rsvpId, options) {
const response = await rsvpV2.cancelRsvpGuestsCheckIn(rsvpId, options);
}
There is 1 error with this status code.
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.