I’m using the current REST API to get products that were recently updated. I don’t need each change (inventory_chages) I just need to be able to query Products that were change after a given time. I also want to filter that by a specific warehouse. It doesn’t seem like that currently exists.
Any ideas on how I can get that? In my mind it would look something like this:
Follow up question … the problem with using ‘warehouse_products’ is that if we have 20 locations we have to make 20 API calls for each product of which there are 100K+. This is not very efficient at all! With the RESP-API ‘get-product’ we could use the ‘updated_at_min’ and it was only one request (multiple pages) to get ALL products that had changed. There MUST be a better way to retrieve all products that have changed - i.e. where the quantity on hand has changed. Any suggestions?