Skip to content

Pick Container Complete

Notify WMS when a pick container has been completed in the WCS.

Direction WCS → WMS

HTTP Method POST

Path /pickTaskGroup/pickTaskGroupContainerComplete

{
"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
}
]
}

200: Pick container completion notification accepted

400: Invalid request data

401: Authentication failed

{
"message": "Pick container completion notification processed",
"containerId": "CTR123456",
"taskGroupId": "TG-2024-001",
"status": "SUCCESS"
}
{
"message": "Validation failed",
"errors": [
"containerId is required",
"taskGroupId is required"
]
}