Pick Container Complete
Notify WMS when a pick container has been completed in the WCS.
Direction WCS → WMS
HTTP Method POST
Path /pickTaskGroup/pickTaskGroupContainerComplete
Request Body
Section titled “Request Body”{ "taskGroupId": "TG-2024-001", "containerId": "CTR123456", "completedAt": "2024-12-01T15:45:00Z", "completedBy": "operator.jones", "portId": "PORT-003", "containerType": "SmallBox", "weight": 1.2, "dimensions": { "length": 30, "width": 20, "height": 15 }, "contents": [ { "taskId": "TASK-001", "productId": "ABC123", "quantity": 2 }, { "taskId": "TASK-002", "productId": "DEF456", "quantity": 1 } ]}Responses
Section titled “Responses”200: Pick container completion notification accepted
400: Invalid request data
401: Authentication failed
Success Response (200)
Section titled “Success Response (200)”{ "message": "Pick container completion notification processed", "containerId": "CTR123456", "taskGroupId": "TG-2024-001", "status": "SUCCESS"}Error Response (400)
Section titled “Error Response (400)”{ "message": "Validation failed", "errors": [ "containerId is required", "taskGroupId is required" ]}