Skip to content

Import Price Updates to Shopify

This task will update the product prices on your Shopify store using the product data in an XML file. All variants with a matching SKU will have their price updated.

Important

This task uses Shopify's REST API, which is now deprecated. We recommend migrating to the equivalent GraphQL API task. See here for more information.

Settings

Connection

Required
The Shopify connection to use. See Shopify Connection if you require more information on how to create/manage connections.

Fail File

Required
The XML file to output any failed imports to.

Input File

Required
The XML file containing the products. See Shopify Price XML for more details.

Success File

Required
The XML file to output successful imports to.

Lookup Inventory Id's From

Required
The truth table will be updated with any products created or modified since this time. This setting will automatically update each time the task runs.

Prevent Reprocessing

Required
Optionally prevent reprocessing the same records by providing an in the XML you provide.

Timeout

Optional
The length of time to wait (in seconds) for Shopify to respond to each API request. If left blank, or set to 0 or less, a default value of 100 seconds will be applied.

Zynk Settings

See Common Task Settings.

Permissions

This task requires the following permissions in your Shopify app:

  • read_products
  • write_products

Examples

A sample input file is shown below. See Shopify Price XML for more details.

<?xml version="1.0" encoding="utf-8"?>
<products>
  <product>
    <external_id>123456</external_id>
    <sku>MER99AMP2</sku>
    <price>200</price>
  </product>
</products>