I am using the Acumatica REST endpoint https://sandbox.kimballinc.com/AcumaticaERP/entity/Default/6.00.001 in my application
I am using the URL https://sandbox.kimballinc.com/AcumaticaERP/entity/Default/6.00.001/StockItem?$filter=InventoryID eq '123456'&$expand=WarehouseDetails to fetch info about a Product and to get complete warehouse details
My query is how to use multiple product id's in single request, so that to get info about multiple products in single request to Acumatica Erp REST Url.
For example I have three product Id's product id 1 is 123456 product id 2 is 457963 product id 1 is 135780
how to form one request to fetch records of all these three product id's. we cant form a request with generic product id but we need to mention all three product ids in the request.
Thanks