Updates a ticket.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function updateTicket(
identifiers: UpdateTicketIdentifiers,
options: UpdateTicketOptions,
): Promise<UpdateTicketResponse>;
Details for the ticket to update.
Ticket details to update.
import { tickets } from "wix-events.v2";
async function updateTicket(identifiers, options) {
try {
const result = await tickets.updateTicket(identifiers, options);
return result;
} catch (error) {
console.error(error);
// Handle the error
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.