Overview
In order to retrieve metadata of an existing inventory from existing warehouse, you must:
- Be authenticated user
Information on how you can authenticate: Authentication
As soon as you do authentication and receive a valid token, it needs to be passed on the call for receiving the inventory information.
- Have valid ID of an existing inventory
Endpoint
Example for such endpoint is
https://tt.api.sellercloud.com/rest/api/Inventory/Warehouses
Request

- Method Type: HttpGet
- Authorization: Use Bearer Token + token received from token authentication
- Header info: Content-Type: application/json
- Parameters:
Parameter | Data Type | Description | Is Required |
productID | string | ID of existing inventory | true |
warehouseID | integer | ID of existing warehouse filter | false |
Response
1 2 3 4 5 6 |
{ "ProductID": "test_sku", "AvailableQty": 150, "PhysicalQty": 200, "WarehouseID": 15 } |
- If user is authenticated and provides a valid ID of an inventory, then response will be Status Code 200 => OK and inventory metadata in JSON format
- If user is not authenticated, then response will be Status Code 401 => Not Valid Token
- On server response => Status Code 500 => Internal Server Error