Inventory data object specification for the Cratejoy Merchant API

Method that provides Inventory counts for ecom products.

GET /v1/store/api/products/inventory

List inventory levels

GET /v1/store/api/products/inventory
$.get('/v1/store/api/products/inventory/');
{
  count: 1,
  next: "?page=1",
  prev: null,
  results: [
    {
      product_id: 9853,
      product_instance_id: 9854,
      on-hand: 16
    }
  ]
}