> 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

# DeletePlanMarketingActivity

# Package: marketingPlan

# Namespace: AiPlanGeneratorService

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

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

## Introduction

Deletes a marketing activity from the plan.

---

## REST API

### Schema

```
 Method: deletePlanMarketingActivity
 Description: Deletes a marketing activity from the plan.
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/plan-marketing-activity
 Method: DELETE
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  id
 Method parameters: 
   query param name: id | type: id | description: GUID of the marketing activity to delete. | required: true | validation: format GUID
 Return type: DeletePlanMarketingActivityResponse
  EMPTY-OBJECT {}


```

### Examples

### Delete a marketing activity
Remove a single marketing activity from the plan, by its ID.

```curl
curl -X DELETE \
'https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/plan-marketing-activity?id=b3f9d2e1-7a4c-4d68-9f02-1c5e8a6b4d30' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingPlan.deletePlanMarketingActivity(_id)
 Description: Deletes a marketing activity from the plan.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  _id
 Method parameters: 
   param name: _id | type: string | description: GUID of the marketing activity to delete. | required: true | validation: format GUID
 Return type: PROMISE<DeletePlanMarketingActivityResponse>
  EMPTY-OBJECT {}


```

### Examples

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

const id = "b3f9d2e1-7a4c-4d68-9f02-1c5e8a6b4d30";

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

```

### deletePlanMarketingActivity (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 deletePlanMarketingActivity(_id) {
  const response = await myWixClient.marketingPlan.deletePlanMarketingActivity(_id);
};
```

---