Get Multiple WITRs Details - Sellercloud API Docs

Overview

This endpoint allows you to retrieve details for a list of existing Warehouse Inventory Transfers.

To consume the endpoint, you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed to the call.

Endpoint

Example for such an endpoint for XX server is:

https://xx.api.sellercloud.com/rest/api/WarehouseInventoryTransfers

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/WarehouseInventoryTransfers

Request

Parameter Data Type Description Is Required
transferIdList array List of existing WITR IDs. No
statuses array List of WITR Statuses. Available values are 0, 1, 2, 3, 10, 15, 20, 88, 99, and -1. No
fromWarehouseId integer ID of the Ship From Warehouse of the WITRs. No
toWarehouseId integer ID of the Ship To Warehouse of the WITRs. No
companyIds array List of Company IDs. No
pageNumber integer Number of the page. No
pageSize integer Number of results per page. No

Statuses:

Response

Response Body

{
  "Items": [
    {
      "ID": 0,
      "Title": "string",
      "Status": 0,
      "CompanyID": 0,
      "FromWarehouseID": 0,
      "InterimWarehouseID": 0,
      "ToWarehouseID": 0,
      "Notes": "string",
      "CreatedOn": "2025-11-26T14:43:05.902Z",
      "RequestedOn": "2025-11-26T14:43:05.902Z",
      "ShippedOn": "2025-11-26T14:43:05.902Z",
      "ReceivedOn": "2025-11-26T14:43:05.902Z"
    }
  ],
  "TotalResults": 0
}