Skip to content

Export Products from Shopify

This task will export a list of products from your Shopify store, and save them to an XML file.

Settings

Shopify Connection

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

Export Settings

  • Date Created
    Used when exporting new records. Only records with a created date higher than this value will be exported. The date will update automatically each time the task runs.

  • Date Modified
    Used when exporting modified records. Only records with an updated date higher than this value will be exported. The date will update automatically each time the task runs.

  • Export Modified, New or All Records
    Select whether you would like the task to export new, modified, or all records from Shopify.

Page Size

Required
Used to control the number of records that are requested from Shopify at a time. Defaults to 100.

Product Status

Required
Used to filter the products that will be exported by the task, based on published status. Set to any to export products regardless of their published status, or choose a specific status to export:-

  • any
  • active
  • archived
  • draft

Published Status

Required
Used to filter the products that will be exported by the task, based on published status. Set to any to export products regardless of their published status, or choose a specific status to export:-

  • any
  • approved
  • not_approved
  • pending
  • unset

Record IDs

Optional
To export specific records from Shopify, enter an ID or comma separated list of IDs. The IDs can be either be specified in integer or global ID format. Examples are shown below:

  • Integer Format - 96382004,96382006
  • Global ID Format - gid://shopify/{object_name}/96382004,gid://shopify/{object_name}/96382006 where {object_name} is replaced with the name of the object, e.g. Customer. More information can be found here.

This will override all other export settings.

Selections

Required
The set of fields to select from Shopify. For more details about the syntax, please refer to Selections Syntax.

For more details about the product object and it's fields, please refer to Shopify's documentation.

SKU

Optional
Used to export products with a specific SKU.

Tag

Optional
Used to export products with a specific tag.

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.

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

Examples

A sample output file is shown below. The fields returned will vary depending on your selections.

<?xml version="1.0" encoding="utf-8"?>
<Products xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Product>
    <Id>gid://shopify/Product/7898612465753</Id>
    <CreatedAt>2025-01-06T13:16:09Z</CreatedAt>
    <Description>The iPhone is a smartphone made by Apple that combines a computer, iPod, digital camera and cellular phone into one device with a touchscreen interface.</Description>
    <Status>ACTIVE</Status>
    <Tags />
    <Title>Apple iPhone 16 Pro Max</Title>
    <TotalInventory>136</TotalInventory>
    <TracksInventory>true</TracksInventory>
    <UpdatedAt>2025-02-21T16:31:50Z</UpdatedAt>
    <Variants>
      <Record>
        <Id>gid://shopify/ProductVariant/42108944089177</Id>
        <CreatedAt>2025-01-06T13:16:11Z</CreatedAt>
        <DisplayName>Apple iPhone 16 Pro Max - Default Title</DisplayName>
        <InventoryQuantity>136</InventoryQuantity>
        <Price>1500.00</Price>
        <Sku>001</Sku>
        <Taxable>true</Taxable>
        <TaxCode />
        <Title>Default Title</Title>
        <UpdatedAt>2025-02-11T14:32:10Z</UpdatedAt>
      </Record>
    </Variants>
  </Product>
</Products>