Get All Warehouses - Sellercloud API Docs

Overview

In order to get information for many warehouses in a single request, you can consume the endpoint presented in this article. However, in order to do that, you must:

For information on how you can authenticate, see: Authentication.

As soon as you complete authentication and receive a valid token, it needs to be passed on the call for getting warehouse information.

Endpoint

Example of such endpoint for TT server:

https://tt.api.sellercloud.com/rest/api/Warehouses?pageNumber=1&pageSize=1

For your server, the endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Warehouses?pageNumber=1&pageSize=1

Request

Information about expected request parameters can be found on swagger UI https://tt/api.sellercloud.com/rest/swagger.

Parameters Data Type Description Is Required
pageNumber integer Number of page yes
pageSize integer Number of customers per page yes
warehouseIds List Warehouse Ids No
name string Name of warehouse No
warehouseType enumeration Type of warehouse:
Normal = 0
FBA = 1
Un_Testd = 2
Interim = 3
DropShip = 4
NewEgg = 5
No
isDefault enumeration Is default warehouse:
All = 0
Yes = 1
No = 2
No
isSellable enumeration Is sellable warehouse:
All = 0
Yes = 1
No = 2
No

Response

{
  "Items": [
    {
      "Name": "Default Warehouse",
      "IsDefault": true,
      "WarehouseType": 0,
      "IsSellAble": true,
      "QBWarehouseName": "",
      "CreatedBy": -1,
      "CreatedOn": "2010-06-25T14:09:04.78",
      "CreatedByUsername": "",
      "CreatedByFirstName": "",
      "CreatedByLastName": "",
      "EnforceBins": false,
      "WarehouseAddress": {
        "Address": "520 James Street",
        "FirstName": "Default",
        "LastName": "Name",
        "MiddleName": "Warehouse",
        "ZipCode": "08701",
        "City": "Lakewood",
        "Country": "US",
        "ContactName": "",
        "Business": "Default Business",
        "Address2": "Unit 3A",
        "Fax": "",
        "Region": "NJ",
        "State": "NJ",
        "Phone": ""
      },
      "ID": 40
    }
  ],
  "TotalResults": 1
}