Shopify
Shopify plugin is able to seamlessly perform inbound and outbound synchronization operations for your Shopify store, ensuring your products, orders, and customer data are always up-to-date across all platforms. Simplify your e-commerce management with real-time data syncing and reduce manual tasks.
In this page, you'll find:
The Shopify connector is in public preview as of Nov-2024
Authentication methods
API Access Token
This authentication method requires 4 parameters:
Obtain your shop name
Visit your store page.
Click on Settings on the bottom left of your main store page.
Copy down your shop name as shown in the screenshot below. Note: Each domain will end with myshopify.com, including custom domains.
Generate your API Access Token
Visit your store page.
Click on Settings on the bottom left of your main store page.
In Settings, click on Apps and sales channels.
Click on Develop apps.
Click on Allow Custom App Development for both this page and the next.
After activating custom app development, click on Create an app.
In the popup window, fill in the App name to your desired name to identify this app and click Create App.
Select the Configuration tab.
Under Admin API Integration, select Configure.
The access scopes below are required for the Shopify Plugin to function. However, some other scopes might be required for particular data.
Customers (write_customers, read_customers)
Products (write_products, read_products)
Orders (write_orders, read_orders)
Fulfillment (write_fulfilments, read_fulfillments)
Under Webhook Subscription, note down your Event version. You do not need to change this value. This will be your API Version.
Click Save.
On the top right of the page, click Install app and proceed with the installation.
This should generate an API Access Token. Copy it down as you will need it later. Note: this token is only viewable once.
You may come across an API key and API secret key field under API Credentials. This is not your API Access Token that will be used to create a connection. The API Access Token is no longer viewable after it is first generated, so be sure to save it somewhere where you can refer to it later if you ever need to reset the connection.
Obtain your API version
This requires you to have created and installed your app.
Visit your store page
Click on Settings on the bottom left of your main store page.
In Settings, click on Apps and sales channels.
Click on Develop apps.
Click on the app you have developed.
Click on the Configuration tab.
Under Webhook Version, refer to the API version.
Obtain your User Tier
Visit your store page
Click on Settings on the bottom left of your main store page.
In Settings, click on Plan.
In this page, you may view what plan you are using.
For Basic and Shopify plans, you are to select Standard when creating the connection between Omnata and Shopify.
For Advanced plans, you are to select Advanced when creating the connection between Omnata and Shopify.
For Plus plans, you are to select Shopify Plus when creating the connection between Omnata and Shopify.
For Enterprise plans, you are to select Enterprise when creating the connection between Omnata and Shopify.
Inbound Syncs
The following streams for these objects are supported:
fulfillments (dependent on orders)
Outbound Syncs
Supported Outbound sync strategies: Create, Update, Upsert, Delete.
You should structure your source data as described in Outbound sync data structures.
The following streams for these objects are supported:
Create - Creates a new customer.
Update - Updates an existing customer's information.
Upsert - Creates a new customer or updates an existing customer's information.
Delete - Deletes an existing customer.
Existing customers cannot be deleted if they have a pending order.
Create - Creates a new product.
Update - Updates an existing product's information.
Upsert - Creates a new product or updates an existing product's information.
Delete - Deletes an existing product.
Create - Creates an order.
Update - Updates an existing order's information.
Upsert - Creates an order or updates an existing order's information.
Delete - Deletes an existing order.
Create - Fulfills an existing unfulfilled order.
Update - Updates an existing fulfillment's information.
Upsert - Fulfills an existing unfulfilled order or updates an existing fulfillment's information.
Delete - Cancels an already fulfilled order.
Last updated