> 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 # DeleteScheduleItem # Package: eventManagement # Namespace: ScheduleManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/schedule-items/delete-schedule-item.md ## Permission Scopes: Manage Events - all permissions: SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS ## Introduction Deletes a schedule item from a draft schedule. --- ## REST API ### Schema ``` Method: deleteScheduleItem Description: Deletes a schedule item from a draft schedule. URL: https://www.wixapis.com/events/v1/schedule/draft/items 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 schedule item belongs. | required: true query param name: itemIds | type: array | description: Schedule items to delete. Return type: DeleteScheduleItemResponse EMPTY-OBJECT {} ``` ### Examples ### DeleteScheduleItem ```curl ~~~cURL curl -X DELETE 'https://www.wixapis.com/events/v1/agenda/draft/80a28db1-672b-45db-a62c-5315ee07ae22' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.ScheduleManagement.deleteScheduleItem(eventId, options) Description: Deletes a schedule item from 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 schedule item belongs. | required: true param name: options | type: DeleteScheduleItemOptions none - name: itemIds | type: array | description: Schedule items to delete. Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteScheduleItem ```javascript import { schedule } from '@wix/events'; async function deleteScheduleItem(eventId,options) { const response = await schedule.deleteScheduleItem(eventId,options); }; ``` ### deleteScheduleItem (with elevated permissions) ```javascript import { schedule } from '@wix/events'; import { auth } from '@wix/essentials'; async function myDeleteScheduleItemMethod(eventId,options) { const elevatedDeleteScheduleItem = auth.elevate(schedule.deleteScheduleItem); const response = await elevatedDeleteScheduleItem(eventId,options); } ``` ### deleteScheduleItem (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 deleteScheduleItem(eventId,options) { const response = await myWixClient.schedule.deleteScheduleItem(eventId,options); }; ``` ---