Add Products to WITR - Sellercloud API Docs

Add Products to WITR

Overview

You can use this endpoint to add products to an existing Warehouse Inventory Transfer (WITR). To consume it, you must:

For information on how you can authenticate, see Authentication.

Endpoint

An example of such an endpoint for XX server is:

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

For your server, the endpoint will be:

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

Request

Request Parameters

Parameter Data Type Description Is Required
Items list List of SKUs and their transfer quantities. yes
ProductID string Valid SKU of an existing product. yes
TransferQty integer Number of units to add for the specific SKU. yes

Request Body

{
  "Items": [
    {
      "ProductID": "string",
      "TransferQty": 0
    }
  ]
}

Response