Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

WarehouseTransfer /GetDiscrepancyItems

Allows 150 calls per minute

Response: List<WarehouseTransferItem>



Use this call to get a list of items whose quantities do not match those that were originally expected. E.g. Received < Sent when Delivered or Sent < Requested when Accepted. Only call this method once after the transfer is Accepted and once when it has been Delivered.

Parameters

NameTypeDescription
pkTransferIdGuidThe id of the transfer.

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/GetDiscrepancyItems

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.

pkTransferId=7eda6883-2f63-4320-97fa-f75c4a7ec82e

Response

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

[
  {
    "PkTransferItemId": "eff05366-3e60-49d2-8575-baf5c5b8ae63",
    "FkStockItemId": "e2914132-654a-463a-8535-12f87e01f639",
    "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": "2975a89a-6961-4cdc-91a7-c0927b863783",
    "ItemNotes": [
      {
        "PkTransferItemNoteId": "2cf1b84a-ee19-4131-9b89-f2b0acd8cfdc",
        "NoteUser": "sample string 2",
        "Note": "sample string 3",
        "NoteDateTime": "2023-01-10T13:49:49.8248629+00:00",
        "NoteRead": true,
        "FkBinId": "3ac46549-153c-4afd-8472-3f92e6b68482",
        "PkTransferItemId": "57b4b0df-06c4-4cf4-b588-9313203eaf4a"
      }
    ]
  }
]