Use this call to retrieve the notes from a transfer item.
Name | Type | Description |
---|---|---|
pkTransferId | Guid | The id of the transfer to which the item belongs. |
pkTransferItemId | Guid | The id of the transfer item. |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/WarehouseTransfer/GetTransferItemNotes
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
This is an example of the request structure. Results will vary depending on your data.
pkTransferId=2bceb18e-49fb-41be-b379-0a1473d5efe0&pkTransferItemId=6c7368fe-4980-41b7-97ea-98fe1b75e8fc
This is an example of the response JSON. Results will vary depending on your data.
[
{
"PkTransferItemNoteId": "3c52e12d-4e71-4e0d-a520-8b27e3ff3fe9",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-03-09T13:04:11.8244747+00:00",
"NoteRead": true,
"FkBinId": "4f1e2fe2-d91b-49d5-8b33-c99d452858e5",
"PkTransferItemId": "c6d5839e-2de7-4329-8e1b-344fd3927538"
}
]