Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

WarehouseTransfer /AddItemToTransfer

Allows 150 calls per minute

Response: WarehouseTransferItem



Use this call to add an item to the transfer (only works for transfers in draft/request states)

Parameters

NameTypeDescription
fkTransferIdGuidfkTransferId
pkStockItemIdGuidpkStockItemId

Permissions

GlobalPermissions.Inventory.WarehouseTransferNode

Example Request

The following request format is required for this method.

Endpoint URL

GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/AddItemToTransfer

Headers

Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE

Request Body

This is an example of the request structure. Results will vary depending on your data.

fkTransferId=9808ac6d-182e-41ce-8446-23d23638f498&pkStockItemId=eafdf0b2-d847-4cd0-9cf8-f96ca0bea1f6

Response

This is an example of the response JSON. Results will vary depending on your data.

{
  "PkTransferItemId": "4d44d987-b34d-4b1a-b075-681f2447d080",
  "FkStockItemId": "f644d675-904a-4c3b-a0e5-0a6bdd9ef292",
  "SKU": "sample string 3",
  "Barcode": "sample string 4",
  "ItemTitle": "sample string 5",
  "RequestedQuantity": 6,
  "SentQuantity": 7,
  "ReceivedQuantity": 1,
  "InFromLocationQuantity": 8,
  "DueFromLocationQuantity": 9,
  "InToLocationQuantity": 10,
  "ItemNoteCount": 11,
  "BinRackNumber": "sample string 12",
  "PkBinId": "10ac241d-1460-4c03-81d0-5e32b3e46768",
  "ItemNotes": [
    {
      "PkTransferItemNoteId": "feb879de-c528-4695-adbf-77e33c64766e",
      "NoteUser": "sample string 2",
      "Note": "sample string 3",
      "NoteDateTime": "2023-01-10T13:49:49.7539408+00:00",
      "NoteRead": true,
      "FkBinId": "a38caccc-cd92-4a4b-ac83-b10d1203ad79",
      "PkTransferItemId": "8acaab22-8eee-44b1-a0bd-2c581427c388"
    }
  ]
}