Import Order Updates to Shopify
This task will update certain information on existing orders in your Shopify store using data in an XML file.
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 uploads to.
Input File
Required
The XML file containing the records. See Shopify Order Update XML for more details.
Success File
Required
The XML file to output successful uploads to.
Prevent Reprocessing
Required
Optionally prevent reprocessing the same records by providing an <external_id>
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_orders
- write_orders
Examples
A sample input file is shown below. See Shopify Order Update XML for more details.
<?xml version="1.0" encoding="utf-8"?>
<orders>
<order>
<id>4732650881090</id>
<external_id>123456</external_id>
<buyer-accepts-marketing>true</buyer-accepts-marketing>
<email>[email protected]</email>
<name>#1020</name>
<note>Leave by the bin</note>
<note-attributes>
<note-attribute>
<name>colour</name>
<value>red</value>
</note-attribute>
</note-attributes>
<phone>+44191 303 7279</phone>
<shipping-address>
<address1>i6 Building</address1>
<address2>6-8 Charlotte Square</address2>
<city>Newcastle upon Tyne</city>
<company>Zynk Software Limited</company>
<country>United Kingdom</country>
<country-code>GB</country-code>
<first-name>John</first-name>
<last-name>Smith</last-name>
<province>England</province>
<province-code>ENG</province-code>
<zip>NE1 4XF</zip>
</shipping-address>
<tags>New,Approved</tags>
<metafields>
<metafield>
<id>20928999620674</id>
<key>expected_delivery_date</key>
<namespace>custom</namespace>
<value>2023-05-18T14:00:00</value>
<type>date_time</type>
</metafield>
</metafields>
</order>
</orders>