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:
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)
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.
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:
product variants (dependent on products)
fulfillments (dependent on orders)
inventory levels (dependent on inventory items)
shop (full refresh only)
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.
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.
Create - Creates a product variant from on a product.
Update - Updates the product variant information.
Upsert - Creates a product variant if it does not exist or updates an existing's product variant's information.
Delete - Deletes a product variant from a product.
Create - Creates an inventory level at a specified location with the location id.
Update - Updates the inventory level stock amount.
Upsert - Creates an inventory level at a specified location with the location id or update the inventory level stock amount if the inventory level does not exist.
Delete - Deletes the entire inventory level.
Last updated