> 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

# Resource: Marketing Activity V1

# Type: Marketing Activity Object

# Link: https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-activity-v1/marketing-activity-object.md

## Description: A single planned marketing action within a site's marketing plan.
Activities are generated by the AI when a marketing plan is created and represent
concrete tasks such as a social media campaign, a blog post, or an email. Each
activity has a title, description, target date, and type. Generating social posts
for an activity is handled by the separate Marketing Plan API, not this API.

## Schema:

```json
 Type: Marketing Activity Object | type: MarketingActivity
 Description: A single planned marketing action within a site's marketing plan.
Activities are generated by the AI when a marketing plan is created and represent
concrete tasks such as a social media campaign, a blog post, or an email. Each
activity has a title, description, target date, and type. Generating social posts
for an activity is handled by the separate Marketing Plan API, not this API.
       - name: id  | type: string | description: Unique activity ID. Assigned on creation and read-only afterwards.
           - name: value  | type: string | description: 
       - name: marketingActivityType  | type: string | description: Category of marketing action this activity represents.
           enum: SOCIAL_MARKETING, EMAIL_MARKETING, BLOG
       - name: title  | type: string | description: Short label for the activity, suitable for display in a marketing plan UI.
       - name: description  | type: string | description: Human-readable explanation of what the activity involves and why it was suggested.
       - name: targetDate  | type: string | description: Scheduled date by which the activity should be completed or published.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: source  | type: ActivitySource | description: Origin context that the AI used when generating this activity (for example, an upcoming event or a set of keywords).
           - name: type  | type: string | description: Indicates what kind of input drove the AI to generate this activity.
               enum: EVENT, KEYWORDS, CONTENT_PILLARS
           - name: value  | type: string | description: The specific value of the source input (for example, an event name or a keyword string).
       - name: asset  | type: AssetReference | description: Site asset this activity is grounded in.
           - name: type  | type: string | description: Type of the site asset (for example, product or blog post). See `SiteAsset.Type` for the closed set of values.
               enum: BLOG_POST, EVENT, STORES_PRODUCT, BOOKINGS_SERVICE, STORES_COUPON, STORES_CATEGORY
           - name: id  | type: string | description: ID of the asset within its provider's data store.
           - name: name  | type: string | description: Display name of the asset (for example, the product title or blog post title), cached at activity-generation time.

```