create_store_product
Create a product in a Mailchimp store with at least one variant. Use for manual product entry or custom storefronts.
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.
Authenticated via API key. Max 10 concurrent requests. Respects read-only and dry-run modes.
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. account: Optional account name (e.g. 'marketing') configured via MAILCHIMP_API_KEY_. Omit to use the default account. See list_accounts.
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 |