I am building application where my application will provide product code and using Inventory connector it to retrieve Item from inventory.
currently I am using below code to get all Item list from Inventory application -
val merchantItems: MutableList<Item> = inventoryConnector.getItems(); val mItem: Item = merchantItems[2];
but I need particular Item where I will provide product code and get that Item
using above code I am providing index value.
Thank in advance.