DataFlex
DataFlex
Shopify Retrieve the item's inventory levels
See more Shopify Examples
After you have the inventory item ID, you can use it with the InventoryLevel resource to find the levels and locations for the inventory item:Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoHttp
Variant vResp
Handle hoResp
Handle hoJsonResponse
Integer iInventory_item_id
Integer iLocation_id
Integer iAvailable
String sUpdated_at
String sAdmin_graphql_api_id
Integer i
Integer iCount_i
String sTemp1
Integer iTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Set ComLogin Of hoHttp To "SHOPIFY_PRIVATE_API_KEY"
Set ComPassword Of hoHttp To "SHOPIFY_PRIVATE_API_KEY"
Set ComAccept Of hoHttp To "application/json"
// How to get the inventory item ID
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
If (Not(IsComObjectCreated(hoResp))) Begin
Send CreateComObject of hoResp
End
Get pvComObject of hoResp to vResp
Get ComHttpNoBody Of hoHttp "GET" "https://{shop}.myshopify.com/admin/api/2020-04/inventory_levels.json?inventory_item_ids={inventory_item_id}" vResp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln "Response Status Code: " iTemp1
Get Create (RefClass(cComChilkatJsonObject)) To hoJsonResponse
If (Not(IsComObjectCreated(hoJsonResponse))) Begin
Send CreateComObject of hoJsonResponse
End
Get ComBodyStr Of hoResp To sTemp1
Get ComLoad Of hoJsonResponse sTemp1 To iSuccess
Set ComEmitCompact Of hoJsonResponse To False
Get ComEmit Of hoJsonResponse To sTemp1
Showln sTemp1
Get ComStatusCode Of hoResp To iTemp1
If (iTemp1 <> 200) Begin
Showln "Failed."
Procedure_Return
End
// Sample output...
// (See the parsing code below..)
//
// Use the this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
// {
// "inventory_levels": [
// {
// "inventory_item_id": 12250274365496,
// "location_id": 6884556842,
// "available": 8,
// "updated_at": "2018-06-18T11:49:50-04:00",
// "admin_graphql_api_id": "gid://shopify/InventoryLevel/6485147690?inventory_item_id=12250274365496"
// },
// {
// "inventory_item_id": 12250274365496,
// "location_id": 13968834616,
// "available": 50,
// "updated_at": "2018-06-26T14:44:30-04:00",
// "admin_graphql_api_id": "gid://shopify/InventoryLevel/13570506808?inventory_item_id=12250274365496"
// },
// {
// "inventory_item_id": 12250274365496,
// "location_id": 13968867384,
// "available": 100,
// "updated_at": "2018-06-26T14:44:30-04:00",
// "admin_graphql_api_id": "gid://shopify/InventoryLevel/13570539576?inventory_item_id=12250274365496"
// }
// ]
// }
//
Move 0 To i
Get ComSizeOfArray Of hoJsonResponse "inventory_levels" To iCount_i
While (i < iCount_i)
Set ComI Of hoJsonResponse To i
Get ComIntOf Of hoJsonResponse "inventory_levels[i].inventory_item_id" To iInventory_item_id
Get ComIntOf Of hoJsonResponse "inventory_levels[i].location_id" To iLocation_id
Get ComIntOf Of hoJsonResponse "inventory_levels[i].available" To iAvailable
Get ComStringOf Of hoJsonResponse "inventory_levels[i].updated_at" To sUpdated_at
Get ComStringOf Of hoJsonResponse "inventory_levels[i].admin_graphql_api_id" To sAdmin_graphql_api_id
Move (i + 1) To i
Loop
End_Procedure