> 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 # PublishDraft # Package: eventManagement # Namespace: ScheduleManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/publish-draft.md ## Permission Scopes: Manage Events - all permissions: SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS ## Introduction Publishes a draft schedule. --- ## REST API ### Schema ``` Method: publishDraft Description: Publishes a draft schedule. URL: https://www.wixapis.com/events/v1/schedule/publish 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 Method parameters: param name: eventId | type: eventId | description: Event GUID to which the draft schedule item belongs. | required: true Return type: PublishDraftResponse EMPTY-OBJECT {} ``` ### Examples ### PublishDraft ```curl ~~~cURL curl -X POST 'https://www.wixapis.com/events/v1/agenda/publish' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.ScheduleManagement.publishDraft(eventId) Description: Publishes 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 ### publishDraft ```javascript import { schedule } from '@wix/events'; async function publishDraft(eventId) { const response = await schedule.publishDraft(eventId); }; ``` ### publishDraft (with elevated permissions) ```javascript import { schedule } from '@wix/events'; import { auth } from '@wix/essentials'; async function myPublishDraftMethod(eventId) { const elevatedPublishDraft = auth.elevate(schedule.publishDraft); const response = await elevatedPublishDraft(eventId); } ``` ### publishDraft (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 publishDraft(eventId) { const response = await myWixClient.schedule.publishDraft(eventId); }; ``` ---