Use this call to create a new bin.
Name | Type | Description |
---|---|---|
pkTransferId | Guid | The transfer to create the bin for. |
barcode | String | The barcode of the bin. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/CreateNewBin
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=957089ee-809e-4440-8def-cc2bc30d4c05&barcode=sample string 1
This is an example of the response JSON. Results will vary depending on your data.
{
"PkBinId": "c7ba9d13-4344-4154-a7b5-c04940514f22",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "74a74463-d1e9-4064-b88d-76c2920bec9e",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.8198124+00:00",
"NoteRead": true,
"PkBinId": "f73891e0-1654-4279-a660-f37acc3e46f4"
}
],
"BinItems": [
{
"PkTransferItemId": "1c550002-8ea2-4ff6-b2c1-210077ec27dc",
"FkStockItemId": "8d0ecd77-6f66-427b-b6f5-67745bfac409",
"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": "b777233a-a65b-42c5-a6a9-1032b36e09fb",
"ItemNotes": [
{
"PkTransferItemNoteId": "d95a4320-fe6e-4b54-8663-51f88353ed8f",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.8208092+00:00",
"NoteRead": true,
"FkBinId": "8d16b645-7872-4114-a2e3-2cb20abb4080",
"PkTransferItemId": "438fe6b6-827c-4c83-913c-f0e609ad6054"
}
]
}
]
}