Updates a schedule item in a draft schedule.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function updateScheduleItem(
itemId: string,
eventId: string,
options: UpdateScheduleItemOptions,
): Promise<UpdateScheduleItemResponse>;
Schedule item ID.
Event ID to which the schedule belongs.
Optional fields.
import { schedule } from "wix-events.v2";
async function updateScheduleItem(itemId, eventId, options) {
try {
const result = await schedule.updateScheduleItem(itemId, eventId, 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.