> 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 # DeleteParticipation # Package: calendar # Namespace: ParticipationsService # Method link: https://dev.wix.com/docs/api-reference/business-management/calendar/participations-v3/delete-participation.md ## Permission Scopes: Manage Calendars: SCOPE.DC-CALENDAR.MANAGE ## Introduction Deletes a `participation` object. --- ## REST API ### Schema ``` Method: deleteParticipation Description: Deletes a `participation` object. URL: https://www.wixapis.com/calendar/v3/participations/{participationId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: participationId Method parameters: param name: participationId | type: none | required: true Return type: DeleteParticipationResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Participation ```curl curl -X DELETE \ 'https://www.wixapis.com/calendar/v3/participations/b123e549-eb05-4c6e-8dab-0409c7ebc006' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.calendar.ParticipationsService.deleteParticipation(participationId) Description: Deletes a `participation` object. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: participationId Method parameters: param name: participationId | type: string | description: GUID of `participation` object to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteParticipation ```javascript import { participations } from '@wix/calendar'; async function deleteParticipation(participationId) { const response = await participations.deleteParticipation(participationId); }; ``` ### deleteParticipation (with elevated permissions) ```javascript import { participations } from '@wix/calendar'; import { auth } from '@wix/essentials'; async function myDeleteParticipationMethod(participationId) { const elevatedDeleteParticipation = auth.elevate(participations.deleteParticipation); const response = await elevatedDeleteParticipation(participationId); } ``` ### deleteParticipation (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 { participations } from '@wix/calendar'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { participations }, // Include the auth strategy and host as relevant }); async function deleteParticipation(participationId) { const response = await myWixClient.participations.deleteParticipation(participationId); }; ``` ---