Placed Goods
Notify WMS when goods have been placed in storage locations in the WCS.
Direction WCS → WMS
HTTP Method POST
Path /manifest/placedGoods
Request Body
Section titled “Request Body”{ "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"}Responses
Section titled “Responses”200: Placed goods notification accepted
400: Invalid request data
401: Authentication failed
Success Response (200)
Section titled “Success Response (200)”{ "message": "Placed goods notification processed", "manifestLineId": "LINE-001", "binId": "BIN-67890", "status": "SUCCESS"}Error Response (400)
Section titled “Error Response (400)”{ "message": "Validation failed", "errors": [ "productId is required", "placedQuantity must be greater than 0" ]}