Inventory Supply

Inventory supply returns the quantities of the inventory items for a specified warehouse


Get Inventory Supply

Learn more : Specification

  • URL:

    /inventory-supply

  • Method:

    GET

  • URL Params

ParameterRequiredDescription
warehouse_idYesThe id of the warehouse
sku_listNoThe list of SKU for fetching their inventory
  • Data Params

    None

  • Success Response

    • Code: 200
      Content:
        [
            {
                "sku": "h516-ozd4",
                "quantity_avaliable": 0,
                "quantity_pending": 0,
                "quantity_hold": 0
            },
            {
                "sku": "j40c-20s3",
                "quantity_avaliable": 0,
                "quantity_pending": 0,
                "quantity_hold": 0
            },
            {
                "sku": "pnb6-7w26",
                "quantity_avaliable": 0,
                "quantity_pending": 0,
                "quantity_hold": 0
            }
        ]
      
  • Sample Call:

    curl -X 'GET' \
        'https://s2-api.ventmere.io/partner/inventory-supply?warehouse_id=system_69' \
        -H 'accept: application/json' \
        -H 'X-AccessKey: xxxxxxxxxxxxx'