> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # RescheduleDraft # Package: eventManagement # Namespace: ScheduleManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/reschedule-draft.md ## Permission Scopes: Manage Events - all permissions: SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS ## Introduction Adjusts the time of all draft schedule items for an event at once. --- ## REST API ### Schema ``` Method: rescheduleDraft Description: Adjusts the time of all draft schedule items for an event at once. URL: https://www.wixapis.com/events/v1/schedule/draft/reschedule Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId, timeZoneId Method parameters: param name: eventId | type: eventId | description: Event GUID to which the draft schedule item belongs. | required: true param name: timeSlotOffset | type: timeSlotOffset | description: Offset added or subtracted from schedule item start & end times. param name: timeZoneId | type: timeZoneId | description: Time zone GUID in TZ database format, e.g., `"EST"`, `"America/Los_Angeles"`. | required: true Return type: RescheduleDraftResponse EMPTY-OBJECT {} ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.ScheduleManagement.rescheduleDraft(eventId, options) Description: Adjusts the time of all draft schedule items for an event at once. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId, options.timeZoneId, options Method parameters: param name: eventId | type: string | description: Event GUID to which the draft schedule item belongs. | required: true param name: options | type: RescheduleDraftOptions none | required: true - name: timeZoneId | type: string | description: Time zone GUID in TZ database format, e.g., `"EST"`, `"America/Los_Angeles"`. | required: true - name: timeSlotOffset | type: | description: Offset added or subtracted from schedule item start & end times. Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### rescheduleDraft ```javascript import { schedule } from '@wix/events'; async function rescheduleDraft(eventId,options) { const response = await schedule.rescheduleDraft(eventId,options); }; ``` ### rescheduleDraft (with elevated permissions) ```javascript import { schedule } from '@wix/events'; import { auth } from '@wix/essentials'; async function myRescheduleDraftMethod(eventId,options) { const elevatedRescheduleDraft = auth.elevate(schedule.rescheduleDraft); const response = await elevatedRescheduleDraft(eventId,options); } ``` ### rescheduleDraft (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { schedule } from '@wix/events'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { schedule }, // Include the auth strategy and host as relevant }); async function rescheduleDraft(eventId,options) { const response = await myWixClient.schedule.rescheduleDraft(eventId,options); }; ``` ---