# Get Inventory Summary

## Get Inventory Summary

<mark style="color:blue;">`GET`</mark> `https://{{workspace}}.myeshopbox.com/api/v1/inventorySummary`

This endpoint allows you to get an inventory summary, for warehouses in the Query parameter.\
Here inventory summary means, it contains the quantity of all products in all of the warehouses in respective statuses.&#x20;

#### Query Parameters

| Name        | Type   | Description                                                                      |
| ----------- | ------ | -------------------------------------------------------------------------------- |
| warehouseId | string | Comma-separated warehouse codes against which the inventory summary is required. |

#### Headers

| Name           | Type   | Description                                     |
| -------------- | ------ | ----------------------------------------------- |
| Authentication | string | The Bearer token is required to access the API. |

{% tabs %}
{% tab title="200 Inventory" %}

```
{
    "outwardInProcess": 10,
    "sellable": 4,
    "inwardInProcess": 5,
    "nonSellable": 3
}
```

{% endtab %}
{% endtabs %}
