Frends.Shopify.CreateProduct / 1.1.0
Summary
Creates a product in a store from the data you supply, against a pinned API version.
Typical use — publishing catalogue data from a master system such as an ERP or PIM
Input parameters for Shopify CreateProduct task.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| ProductData | JObject |
– |
Example test product with variants:
new JObject
{
["title"] = "Test Product",
["body_html"] = "Test description",
["vendor"] = "Test Vendor",
["product_type"] = "Test Type",
["variants"] = new JArray
{
new JObject
{
["option1"] = "Size",
["price"] = "10.99",
["sku"] = "TEST-SIZE"
}
}
}
|
A JSON object containing the product details to create. |