Get Inventory Item
Name
get_inventory_item
Description
Gets a specific inventory item. [API reference]
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_I8
|
bigint
|
False |
||
Sku |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
Cost |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
Tracked |
DT_BOOL
|
bit
|
False |
||
RequiresShipping |
DT_BOOL
|
bit
|
False |
||
CountryCodeOfOrigin |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
ProvinceCodeOfOrigin |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
CountryHarmonizedSystemCodes |
DT_WSTR
|
nvarchar(4000)
|
4000 | True |
|
HarmonizedSystemCode |
DT_I8
|
bigint
|
False |
||
CreatedAt |
DT_DBTIMESTAMP
|
datetime
|
False |
||
UpdatedAt |
DT_DBTIMESTAMP
|
datetime
|
False |
If the column you are looking for is missing, consider customizing Shopify Connector.
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Shopify Connector in API Source component to read data or in API Destination component to read/write data:
Get Inventory Item using API Source
Shopify
Get Inventory Item

Get Inventory Item using API Destination
Shopify
Get Inventory Item

ODBC application
Use these SQL queries in your ODBC application data source:
Get inventory item
SELECT * FROM get_inventory_item
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get inventory item
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_inventory_item';
EXEC (@MyQuery) AT [LS_TO_SHOPIFY_IN_GATEWAY];