Get WITR Products - Sellercloud API Docs

Overview

You can use this endpoint to retrieve the list of items in a single existing Warehouse Inventory Transfer.

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 on the call.

Endpoint

Example for such endpoint for XX server is:

https://xx.api.sellercloud.com/rest/api/WarehouseInventoryTransfers/{id}/Products

For your server endpoint will be:

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

Request

Parameter Data Type Description Is Required
pageNumber integer Number of the page. Yes
pageSize integer Number of items per page. Yes

Response Body

{
  "Items": [
    {
      "ID": 0,
      "ProductID": "string",
      "ProductName": "string",
      "QtyPerCase": 0,
      "QtyPicked": 0,
      "TransferQty": 0,
      "TotalReceivedQty": 0,
      "QtyInFromWarehouse": 0,
      "QtyInToWarehouse": 0
    }
  ],
  "TotalResults": 0
}

Response