Skip to content

Placed Goods

Notify WMS when goods have been placed in storage locations in the WCS.

Direction WCS → WMS

HTTP Method POST

Path /manifest/placedGoods

{
"manifestId": "MAN-2024-001",
"manifestLineId": "LINE-001",
"productId": "ABC123",
"batchId": "BATCH-2024-11",
"expiry": "2025-06-01",
"stockOwner": "THG",
"binId": "BIN-67890",
"subBinId": "SB-123-45",
"placedQuantity": 24,
"placedAt": "2024-12-01T13:15:00Z",
"placedBy": "automation",
"storageLocation": "A-01-02-03",
"storageType": "AutoStore"
}

200: Placed goods notification accepted

400: Invalid request data

401: Authentication failed

{
"message": "Placed goods notification processed",
"manifestLineId": "LINE-001",
"binId": "BIN-67890",
"status": "SUCCESS"
}
{
"message": "Validation failed",
"errors": [
"productId is required",
"placedQuantity must be greater than 0"
]
}