> 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 # Delete # Package: emailMarketing # Namespace: CampaignService # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/email-marketing/campaign/delete-campaign.md ## Permission Scopes: Manage Email Marketing: SCOPE.DC-PROMOTE.EMAIL-MARKETING ## Introduction Permanently deletes a campaign. --- ## REST API ### Schema ``` Method: delete Description: Permanently deletes a campaign. URL: https://www.wixapis.com/email-marketing/v1/campaigns/{campaignId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: campaignId Method parameters: param name: campaignId | type: none | required: true Return type: DeleteCampaignResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Campaign ```curl curl -X DELETE 'https://www.wixapis.com/email-marketing/v1/campaigns/98b5a0b3-549b-4e58-b933-a8bd40923a14' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.emailMarketing.CampaignService.delete(campaignId) Description: Permanently deletes a campaign. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: campaignId Method parameters: param name: campaignId | type: string | description: Campaign GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### Permanently deletes a campaign (with elevated permissions) ```javascript import { campaigns } from '@wix/email-marketing'; // Sample campaignId value: "fb21c999-40b5-4364-8e75-18273da41983"; export async function myDeleteCampaignFunction(campaignId) { try { const result = await campaigns.deleteCampaign(campaignId); console.log(`Campaign ${campaignId} successfully deleted`) return result; } catch (error) { console.error(error); } } /* Promise resolves to void */ ``` ### Permanently deletes a campaign ```javascript import { campaigns } from '@wix/email-marketing'; // Sample campaignId value: "fb21c999-40b5-4364-8e75-18273da41983"; export async function myDeleteCampaignFunction(campaignId) { try { const result = await campaigns.deleteCampaign(campaignId); console.log(`Campaign ${campaignId} successfully deleted`) return result; } catch (error) { console.error(error); } } /* Promise resolves to void */ ``` ### deleteCampaign (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 { campaigns } from '@wix/email-marketing'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { campaigns }, // Include the auth strategy and host as relevant }); async function deleteCampaign(campaignId) { const response = await myWixClient.campaigns.deleteCampaign(campaignId); }; ``` ---