> 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

# GenerateSocialPosts

# Package: marketingPlan

# Namespace: AiPlanGeneratorService

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

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

## Introduction

Generates social post drafts (AI image and per-channel captions) for the given marketing activities.

Generation is asynchronous. The response returns immediately. Poll `GetMarketingActivityPosts`
until posts appear on the activities. Posts are generated for all supported social channels;
only posts for connected channels can be scheduled and published. Schedule the resulting
drafts with `ScheduleDrafts`.

---

## REST API

### Schema

```
 Method: generateSocialPosts
 Description: Generates social post drafts (AI image and per-channel captions) for the given marketing activities.  Generation is asynchronous. The response returns immediately. Poll `GetMarketingActivityPosts` until posts appear on the activities. Posts are generated for all supported social channels; only posts for connected channels can be scheduled and published. Schedule the resulting drafts with `ScheduleDrafts`.
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-plan/generate-social-posts
 Method: POST
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  marketingActivityIds
 Method parameters: 
   param name: marketingActivityIds | type: array<marketingActivityIds> | description: IDs of the marketing activities to generate posts for. | required: true | validation: minItems 1, maxItems 20, format GUID
 Return type: GenerateSocialPostsResponse
  EMPTY-OBJECT {}


```

### Examples

### Generate posts for marketing activities
Trigger AI generation of social posts for the given marketing activities. Generation runs asynchronously; retrieve the resulting posts later with Get Marketing Activity Posts.

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

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingPlan.generateSocialPosts(marketingActivityIds)
 Description: Generates social post drafts (AI image and per-channel captions) for the given marketing activities.  Generation is asynchronous. The response returns immediately. Poll `GetMarketingActivityPosts` until posts appear on the activities. Posts are generated for all supported social channels; only posts for connected channels can be scheduled and published. Schedule the resulting drafts with `ScheduleDrafts`.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  marketingActivityIds
 Method parameters: 
   param name: marketingActivityIds | type: array<array> | description: IDs of the marketing activities to generate posts for. | required: true | validation: minItems 1, maxItems 20, format GUID
 Return type: PROMISE<GenerateSocialPostsResponse>
  EMPTY-OBJECT {}


```

### Examples

### Generate posts for marketing activities
```javascript
import { marketingPlan } from "@wix/promote-growth-tools-marketing-plan";

const marketingActivityIds = ["b3f9d2e1-7a4c-4d68-9f02-1c5e8a6b4d30"];

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

/* Promise resolves to:
 * {}
 */

```

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

---