Receive WITR Shipment - Sellercloud API Docs

Receive WITR Shipment

Overview

You can use this endpoint to receive Warehouse Inventory Transfer (WITR) items. To consume it, you must:

For information on how you can authenticate, see: Authentication

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

Endpoint

An example of such an endpoint for XX server is:

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

For your server, the endpoint will be:

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

Request

Parameter Data Type Description Is Required
Items list List of products to receive. yes
ID integer The ID of the warehouse inventory transfer product item. Can be obtained by calling Get WITR Products. yes
ReceivingWarehouseID integer ID of the receiving warehouse. yes
SerialNumbers list/string Serial numbers of the item you are receiving, if applicable. no

Request Body

{
  "Items": [
    {
      "ID": 0,
      "QtyToReceive": 0,
      "ReceivingWarehouseID": 0,
      "SerialNumbers": [
        "string"
      ]
    }
  ]
}

Response