> 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

# DeleteMarketingPlan

# Package: marketingPlan

# Namespace: AiPlanGeneratorService

# Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-plan-v1/delete-marketing-plan.md

## Permission Scopes:
Manage Marketing Plans: SCOPE.PROMOTE.MANAGE-MARKETING-PLAN

## Introduction

Deletes the marketing plan and all its activities.

---

## REST API

### Schema

```
 Method: deleteMarketingPlan
 Description: Deletes the marketing plan and all its activities.
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan
 Method: DELETE
 Return type: DeleteMarketingPlanResponse
  EMPTY-OBJECT {}


```

### Examples

### Delete the marketing plan
Delete the site's entire marketing plan, including all of its marketing activities.

```curl
curl -X DELETE \
'https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingPlan.deleteMarketingPlan()
 Description: Deletes the marketing plan and all its activities.
 Return type: PROMISE<DeleteMarketingPlanResponse>
  EMPTY-OBJECT {}


```

### Examples

### Delete the marketing plan
```javascript
import { marketingPlan } from "@wix/promote-growth-tools-marketing-plan";

async function deleteMarketingPlan() {
  const response = await marketingPlan.deleteMarketingPlan();
}

```

### deleteMarketingPlan (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 { marketingPlan } from '@wix/promote-growth-tools-marketing-plan';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { marketingPlan },
  // Include the auth strategy and host as relevant
});


async function deleteMarketingPlan() {
  const response = await myWixClient.marketingPlan.deleteMarketingPlan();
};
```

---