Table Locations
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.| Method | Supported | Reference EndPoint | 
|---|---|---|
| SELECT | get_locations | |
| INSERT | ||
| UPDATE | ||
| UPSERT | ||
| DELETE | ||
| LOOKUP | get_location | 
Examples
SSIS
Use Shopify Connector in API Source component to read data or in API Destination component to read/write data:
Read from Locations table using API Source
API Source - Shopify
    Shopify Connector can be used to integrate Shopify REST API in your App / BI Tools. You can read/write data about Customers, Orders, OrderItems, Products and more.
    Shopify
    Locations
    | There are no parameters to configure. | 
 
Read/write to Locations table using API Destination
API Destination - Shopify
    Shopify Connector can be used to integrate Shopify REST API in your App / BI Tools. You can read/write data about Customers, Orders, OrderItems, Products and more.
    Shopify
    Locations
    Select
    | There are no parameters to configure. | 
 
ODBC application
Use these SQL queries in your ODBC application data source:
Get Locations
SELECT * FROM LocationsSQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get Locations
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Locations';
EXEC (@MyQuery) AT [LS_TO_SHOPIFY_IN_GATEWAY]; 
            