curl --request POST \
--url http://localhost:3000/v1/orders/{id}/items/{itemId}/force-complete \
--header 'Content-Type: application/json' \
--data '
{
"tote_id": "<string>",
"bag_id": "<string>"
}
'{
"success": true,
"message": "<string>"
}Marks an order item (and its associated sweep_item or pick_list_item) as picked/complete, assigning it to a tote or bag.
curl --request POST \
--url http://localhost:3000/v1/orders/{id}/items/{itemId}/force-complete \
--header 'Content-Type: application/json' \
--data '
{
"tote_id": "<string>",
"bag_id": "<string>"
}
'{
"success": true,
"message": "<string>"
}