> 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 # PauseScheduling # Package: emailMarketing # Namespace: CampaignService # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/email-marketing/campaign/pause-scheduling.md ## Permission Scopes: Manage Email Marketing: SCOPE.DC-PROMOTE.EMAIL-MARKETING ## Introduction Pauses a scheduled campaign. --- ## REST API ### Schema ``` Method: pauseScheduling Description: Pauses a scheduled campaign. URL: https://www.wixapis.com/email-marketing/v1/campaigns/{campaignId}/pause-scheduling Method: POST Return type: PauseSchedulingResponse EMPTY-OBJECT {} ``` ### Examples ### Pause Scheduling ```curl curl -X POST 'https://www.wixapis.com/email-marketing/v1/campaigns/926bfb51-33c8-47d5-9b38-546d0e7b46d7/pause-scheduling' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.emailMarketing.CampaignService.pauseScheduling(campaignId) Description: Pauses a scheduled 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 ### Pauses a scheduled campaign (with elevated permissions) ```javascript import { campaigns } from '@wix/email-marketing'; import { auth } from '@wix/essentials'; const elevatedPauseScheduling = auth.elevate(campaigns.pauseScheduling); // Sample campaignId = "ea46013c-bbbf-4617-ad5d-9247bc4c0970"; export async function myPauseSchedulingFunction(campaignId) { try { const result = elevatedPauseScheduling(campaignId); console.log(`Success! Your campaign id: ${campaignId} has been paused.`) return result; } catch (error) { console.error(error); } } /* Promise returns void */ ``` ### Pauses a scheduled campaign ```javascript import { campaigns } from '@wix/email-marketing'; // Sample campaignId = "ea46013c-bbbf-4617-ad5d-9247bc4c0970"; export async function myPauseSchedulingFunction(campaignId) { try { const result = campaigns.pauseScheduling(campaignId); console.log(`Success! Your campaign id: ${campaignId} has been paused.`) return result; } catch (error) { console.error(error); } } /* Promise returns void */ ``` ### pauseScheduling (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 pauseScheduling(campaignId) { const response = await myWixClient.campaigns.pauseScheduling(campaignId); }; ``` ---