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.
GET | 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=b98d0631-d6b3-427f-abf1-4f95d36fcc77&pkTransferItemId=12e13578-508e-4a26-974f-08290b7478e0
This is an example of the response JSON. Results will vary depending on your data.
[
{
"PkTransferItemNoteId": "1a045f32-282a-441f-9ec8-d5d5a9d71bd6",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.78001+00:00",
"NoteRead": true,
"FkBinId": "a6b2c685-0b16-48bf-a3aa-bfff5531a12a",
"PkTransferItemId": "ecc25b63-5f68-4282-91e8-a3bf73b34da6"
}
]