> 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

# ClearMarketingActivityStories

# Package: marketingPlan

# Namespace: AiPlanGeneratorService

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

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

## Introduction

Removes the story drafts from a marketing activity, leaving its post drafts unchanged.

Only drafts are removed. Stories that were already published or scheduled stay on the activity.
To remove the activity's posts, use [Clear Marketing Activity Posts](https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-plan-v1/clear-marketing-activity-posts.md).

---

## REST API

### Schema

```
 Method: clearMarketingActivityStories
 Description: Removes the story drafts from a marketing activity, leaving its post drafts unchanged.  Only drafts are removed. Stories that were already published or scheduled stay on the activity. To remove the activity's posts, use [Clear Marketing Activity Posts](https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-plan-v1/clear-marketing-activity-posts.md).
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/clear-marketing-activity-stories
 Method: PATCH
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  marketingActivityId
 Method parameters: 
   param name: marketingActivityId | type: marketingActivityId | description: GUID of the marketing activity whose story drafts will be removed. | required: true | validation: format GUID
 Return type: ClearMarketingActivityStoriesResponse
  EMPTY-OBJECT {}


```

### Examples

### Clear the stories of a marketing activity
Remove the story drafts of a marketing activity, leaving its post drafts and the activity itself in place. Stories that were already published or scheduled aren't removed.

```curl
curl -X PATCH \
'https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/clear-marketing-activity-stories' \
-H 'Authorization: <AUTH>' \
-H 'Content-Type: application/json' \
-d '{
  "marketingActivityId": "b3f9d2e1-7a4c-4d68-9f02-1c5e8a6b4d30"
}'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingPlan.clearMarketingActivityStories(marketingActivityId)
 Description: Removes the story drafts from a marketing activity, leaving its post drafts unchanged.  Only drafts are removed. Stories that were already published or scheduled stay on the activity. To remove the activity's posts, use [Clear Marketing Activity Posts](https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-plan-v1/clear-marketing-activity-posts.md).
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  marketingActivityId
 Method parameters: 
   param name: marketingActivityId | type: string | description: GUID of the marketing activity whose story drafts will be removed. | required: true | validation: format GUID
 Return type: PROMISE<ClearMarketingActivityStoriesResponse>
  EMPTY-OBJECT {}


```

### Examples

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

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

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

/* Promise resolves to:
 * {}
 */

```

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

---