create_store_product
Add a new product to your Mailchimp e-commerce store with required variants and optional fields like price and images.
Instructions
Create a product in a store, including at least one variant.
Every product needs one or more variants; a simple product still has a single default variant. Many stores sync products automatically via Shopify or WooCommerce integrations; these manual writes suit custom or headless storefronts.
Args: store_id: E-commerce store ID. product_id: Client-supplied unique ID for the new product. title: Product title shown in emails and the Mailchimp UI. variants: List of variant dicts (minimum 1), each with at least an id and title (e.g. [{"id": "v1", "title": "Default", "price": 19.99}]). additional_fields: Optional dict of extra documented fields (e.g. handle, url, description, type, vendor, image_url, images) merged into the request body.
Returns: JSON with the created product object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| account | No | ||
| store_id | Yes | ||
| variants | Yes | ||
| product_id | Yes | ||
| additional_fields | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |