Frends.Shopify.UpdateProduct / 1.1.0
Summary
Updates an existing product with the data you supply.
Typical use — price and stock synchronisation from the system that owns them
Input parameters for Shopify UpdateProduct task.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| ProductId | String |
– | 1234567890123 |
The unique identifier of the product to be updated. |
| ProductData | JObject |
– |
new JObject
{
["title"] = "Test Product",
["body_html"] = "Product Description",
["vendor"] = "Test Vendor",
["product_type"] = "Test Type",
["variants"] = new JArray
{
new JObject
{
["option1"] = "Default",
["price"] = "9.99",
["sku"] = "PROD-001"
}
}
}
|
A JSON object representing the fields to update (e.g., title, body_html, variants, images, etc.). |