curl --request PATCH \
--url http://localhost:3000/v1/rfc-picks/{id}/items/{itemId} \
--header 'Content-Type: application/json' \
--data '
{
"status": "pending",
"picked_quantity": 1,
"notes": "<string>",
"tote_id": "<string>",
"bag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true,
"item": null,
"error": "<string>",
"message": "<string>"
}Updates a pick list item status or picked quantity.
curl --request PATCH \
--url http://localhost:3000/v1/rfc-picks/{id}/items/{itemId} \
--header 'Content-Type: application/json' \
--data '
{
"status": "pending",
"picked_quantity": 1,
"notes": "<string>",
"tote_id": "<string>",
"bag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true,
"item": null,
"error": "<string>",
"message": "<string>"
}