Retrieves RSVP by ID.
function getRsvp(rsvpId: string, options: GetRsvpOptions): Promise<Rsvp>;
RSVP ID.
import { rsvpV2 } from "@wix/events";
async function getRsvp(rsvpId, options) {
const response = await rsvpV2.getRsvp(rsvpId, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.