Shopify - Update Product
Description
Section titled “Description”This module allows updating any field of an existing product in Shopify, including basic information, publication status, SEO, and more.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
credentials_id | string | Yes | Shopify credentials ID |
product_id | number | Yes | Product ID to update |
title | string | No | New title |
body_html | string | No | New HTML description |
vendor | string | No | New vendor/brand |
product_type | string | No | New product type |
tags | string | No | New tags (comma-separated) |
status | string | No | New status: draft, active, archived |
published | boolean | No | Change publication status |
handle | string | No | New handle (URL slug) |
seo_title | string | No | New SEO title |
seo_description | string | No | New SEO description |
Credentials
Section titled “Credentials”| Field | Description |
|---|---|
shop_domain | Store domain (my-store.myshopify.com) |
access_token | Admin API access token |
Output
Section titled “Output”{ "success": true, "product": { "id": 123456789, "title": "Nuevo Titulo", "...": "updated fields" }, "product_id": 123456789, "fields_updated": ["title", "body_html", "tags"], "message": "Product 123456789 updated successfully"}Usage Example
Section titled “Usage Example”Change status to active
Section titled “Change status to active”{ "credentials_id": "shopify_tienda", "product_id": 123456789, "status": "active", "published": true}Update SEO
Section titled “Update SEO”{ "credentials_id": "shopify_tienda", "product_id": 123456789, "seo_title": "Camiseta Premium Algodon | Mi Tienda", "seo_description": "Descubre nuestra camiseta premium de algodon organico. Envio gratis en 24h.", "handle": "camiseta-premium-algodon-organico"}- Only the fields you specify are updated
- To update variants, you need to include each variant’s
id - Changing
handleaffects the product URL (may break external links) - Unspecified fields keep their current value
Related Nodes
Section titled “Related Nodes”- ShopifyGetProducts - Get and search existing products
- ShopifyCreateProduct - Create new products
- ShopifyGetOrders - Get orders that contain products