> 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 # UnassignEvents # Package: eventManagement # Namespace: CategoryManagement # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/categories/unassign-events.md ## Permission Scopes: Manage Events - all permissions: SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS ## Introduction Unassigns events from a single category. --- ## REST API ### Schema ``` Method: unassignEvents Description: Unassigns events from a single category. URL: https://www.wixapis.com/events/v1/categories/{categoryId}/events Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: categoryId, eventId Method parameters: param name: categoryId | type: none | required: true query param name: eventId | type: array | description: A list of events GUIDs. | required: true Return type: UnassignEventsResponse EMPTY-OBJECT {} ``` ### Examples ### UnassignEvents ```curl ~~~cURL curl -X DELETE 'https://www.wixapis.com/events/v1/categories/e9779de3-a085-4255-b3a6-9559990d4436/events?eventId=539a564e-48d2-4eac-8e14-d7a91be6b1c2&eventId=abd39eb7-844c-4321-9ea2-0d43040be05e' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.eventManagement.CategoryManagement.unassignEvents(categoryId, eventId) Description: Unassigns events from a single category. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: categoryId, eventId Method parameters: param name: categoryId | type: string | description: Category GUID. | required: true param name: eventId | type: array | description: A list of events GUIDs. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### Remove a category from events (with elevated permissions) ```javascript import { categories } from '@wix/events'; import { auth } from '@wix/essentials'; const elevatedUnassignEvents = auth.elevate(categories.unassignEvents); /* * Sample categoryId value: "6ec293a8-1b47-4337-9c4e-9a6aeb35e66a" * Sample eventId value: ["4e5e4adb-9778-4171-a9bb-44e27834ac89"] */ export async function myUnassignEventsFunction(categoryId, eventId) { try { const unassignedEvents = await elevatedUnassignEvents(categoryId, eventId); console.log('Events are unassigned from the category'); return unassignedEvents; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to void */ ``` ### Remove a category from events ```javascript import { categories } from '@wix/events'; /* * Sample categoryId value: "6ec293a8-1b47-4337-9c4e-9a6aeb35e66a" * Sample eventId value: ["4e5e4adb-9778-4171-a9bb-44e27834ac89"] */ export async function myUnassignEventsFunction(categoryId, eventId) { try { const unassignedEvents = await categories.unassignEvents(categoryId, eventId); console.log('Events are unassigned from the category'); return unassignedEvents; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to void */ ``` ### unassignEvents (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 { categories } from '@wix/events'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { categories }, // Include the auth strategy and host as relevant }); async function unassignEvents(categoryId,eventId) { const response = await myWixClient.categories.unassignEvents(categoryId,eventId); }; ``` ---