Checks in 1 or more tickets.
function checkInTickets(
eventId: string,
options: CheckInTicketsOptions,
): Promise<CheckInTicketResponse>;
Event ID to which the ticket belongs.
Options for tickets to check-in.
import { tickets } from "@wix/events";
async function checkInTickets(eventId, options) {
const response = await tickets.checkInTickets(eventId, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.