> 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

# ClearMarketingActivityPosts

# Package: marketingPlan

# Namespace: AiPlanGeneratorService

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

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

## Introduction

Removes all social posts from a marketing activity.

---

## REST API

### Schema

```
 Method: clearMarketingActivityPosts
 Description: Removes all social posts from a marketing activity.
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/clear-marketing-activity-posts
 Method: PATCH
 Method parameters:
   param name: marketingActivityId | type: marketingActivityId | description: GUID of the marketing activity whose posts will be removed.  | validation: format GUID
 Return type: ClearMarketingActivityPostsResponse
  EMPTY-OBJECT {}


```

### Examples

### Clear all posts of a marketing activity
Remove all publisher posts associated with a marketing activity, leaving the activity itself in place.

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

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingPlan.clearMarketingActivityPosts(options)
 Description: Removes all social posts from a marketing activity.
 Method parameters:
   param name: options | type: ClearMarketingActivityPostsOptions  none  
 Return type: PROMISE<ClearMarketingActivityPostsResponse>
  EMPTY-OBJECT {}


```

### Examples

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

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

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

/* Promise resolves to:
 * {}
 */

```

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

---