> 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 # DiscardDraft # Package: eventManagement # Namespace: ScheduleManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/discard-draft.md ## Permission Scopes: Manage Events - all permissions: SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS ## Introduction Clears all changes to a draft schedule. --- ## REST API ### Schema ``` Method: discardDraft Description: Clears all changes to a draft schedule. URL: https://www.wixapis.com/events/v1/schedule/draft Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId Method parameters: query param name: eventId | type: eventId | description: Event GUID to which the draft schedule item belongs. | required: true Return type: DiscardDraftResponse EMPTY-OBJECT {} ``` ### Examples ### DiscardDraft ```curl ~~~cURL curl -X DELETE 'https://www.wixapis.com/events/v1/agenda/draft' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.ScheduleManagement.discardDraft(eventId) Description: Clears all changes to a draft schedule. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: eventId Method parameters: param name: eventId | type: string | description: Event GUID to which the draft schedule item belongs. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### discardDraft ```javascript import { schedule } from '@wix/events'; async function discardDraft(eventId) { const response = await schedule.discardDraft(eventId); }; ``` ### discardDraft (with elevated permissions) ```javascript import { schedule } from '@wix/events'; import { auth } from '@wix/essentials'; async function myDiscardDraftMethod(eventId) { const elevatedDiscardDraft = auth.elevate(schedule.discardDraft); const response = await elevatedDiscardDraft(eventId); } ``` ### discardDraft (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 discardDraft(eventId) { const response = await myWixClient.schedule.discardDraft(eventId); }; ``` ---