Get Multiple WITRs Details

Overview

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

To consume the endpoint, you must:

  • Be an authenticated user

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

  • Method Type: HttpGet
  • Authorization: Use Bearer Token + token received from token authentication
  • Query parameters:
Parameter Data Type Description Is Required
transferIdList array<integer> List of existing WITR IDs. No
statuses array<integer> 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<integer> List of Company IDs. No
pageNumber integer Number of the page. No
pageSize integer Number of results per page. No

Statuses:

  • 0 – Pending
  • 1 – Requested
  • 2 – Shipped
  • 3 – Received
  • 10 – Partially Picked
  • 15 – Fully Picked
  • 20 – Partially Received
  • 88 – Rejected
  • 99 – Cancelled
  • -1 – All

Response

  • If the user is authenticated and the request is successful, then the response will be Status Code 200 => OK.
  • If the user is not authenticated, then the response will be Status Code 401 => Not Valid Token.
  • In case of error, the response will be Status Code 500 => Internal Server Error.

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
}

Was this article helpful?