> 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 # Method name: reuseCampaign(campaignId: string, options: ReuseCampaignOptions) # Method package: wixEmailMarketingV2 # Method menu location: wixEmailMarketingV2 --> campaigns --> reuseCampaign # Method Link: https://dev.wix.com/docs/velo/apis/wix-email-marketing-v2/campaigns/reuse-campaign.md # Method Description: Creates a copy of an existing campaign. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Creates a draft copy of an existing campaign (dashboard page code) ```javascript import { campaigns } from 'wix-email-marketing.v2'; // Sample campaignId = "cc332004-418c-496b-a870-c086790c149d"; export async function myReuseCampaignFunction(campaignId) { try { const result = await campaigns.reuseCampaign(campaignId); console.log("Success! Your campaign has been reused.") return result; } catch (error) { console.error(error); } } /* Promise resolves to: * { * "campaign": { * "campaignId": "cc332004-418c-496b-a870-c086790c149d", * "title": "Announcing a Special Offer", * "firstImageUrl": "https://static.wixstatic.com/media/eceb8e_07a78e49568947ffa34fd4983cdd94ae~mv2.png", * "editorType": "WEB", * "status": "ACTIVE", * "visibilityStatus": "DRAFT", * "distributionStatus": "NOT_STARTED", * "dateCreated": "2023-08-13T05:15:32.000Z", * "dateUpdated": "2023-08-13T05:15:32.868Z", * "sendingState": "DRAFT", * "campaignType": "EMAIL_MARKETING" * } * } */ ``` ## Creates a draft copy of an existing campaign (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { campaigns } from 'wix-email-marketing.v2'; // Sample campaignId = "cc332004-418c-496b-a870-c086790c149d"; export const myReuseCampaignFunction = webMethod(Permissions.Anyone, async (campaignId) => { try { const result = await campaigns.reuseCampaign(campaignId); console.log("Success! Your campaign has been reused.") return result; } catch (error) { console.error(error); } }); /* Promise resolves to: * { * "campaign": { * "campaignId": "cc332004-418c-496b-a870-c086790c149d", * "title": "Announcing a Special Offer", * "firstImageUrl": "https://static.wixstatic.com/media/eceb8e_07a78e49568947ffa34fd4983cdd94ae~mv2.png", * "editorType": "WEB", * "status": "ACTIVE", * "visibilityStatus": "DRAFT", * "distributionStatus": "NOT_STARTED", * "dateCreated": "2023-08-13T05:15:32.000Z", * "dateUpdated": "2023-08-13T05:15:32.868Z", * "sendingState": "DRAFT", * "campaignType": "EMAIL_MARKETING" * } * } */ ``` ## Creates a draft copy of an existing campaign with a new title ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { campaigns } from 'wix-email-marketing.v2'; // Sample campaignId = "cc332004-418c-496b-a870-c086790c149d"; export const myReuseCampaignFunction = webMethod(Permissions.Anyone, async (campaignId) => { try { const result = await campaigns.reuseCampaign(campaignId); const updatedTitle = 'Summer Special'; if (result.campaign.title === 'Announcing a Special Offer') { result.campaign.title = updatedTitle; } console.log(`Success! Your campaign with id: ${campaignId} has been reused with an updated title: ${updatedTitle}`) return result; } catch (error) { console.error(error); } }); /* Promise resolves to: * { * "campaign": { * "campaignId": "dbdb53d6-c9a8-4475-8aff-f43ca2fdf8c1", * "title": "Summer Special", * "firstImageUrl": "https://static.wixstatic.com/media/eceb8e_07a78e49568947ffa34fd4983cdd94ae~mv2.png", * "editorType": "WEB", * "status": "ACTIVE", * "visibilityStatus": "DRAFT", * "distributionStatus": "NOT_STARTED", * "dateCreated": "2023-08-13T05:15:32.000Z", * "dateUpdated": "2023-08-13T05:15:32.868Z", * "sendingState": "DRAFT", * "campaignType": "EMAIL_MARKETING" * } * } */ ``` ---