Sign in

Update product

documented

Update an existing product.

PUT /admin/api/2026-01/products/{product_id}.jsonProductsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$shop_domain}}.myshopify.com/admin/api/2026-01/products/{{$product_id}}.json" \
  -X PUT \
  -H "X-Shopify-Access-Token: {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"product": {"id": {{$product_id}}, "title": "{{$title}}", "body_html": "{{$body_html}}", "vendor": "{{$vendor}}", "product_type": "{{$product_type}}", "tags": "{{$tags}}", "variants": [{"id": {{$variant_id}}, "price": "{{$price}}"}]}}'"