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>"
}
'{
"success": true,
"item": "<unknown>",
"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>"
}
'{
"success": true,
"item": "<unknown>",
"error": "<string>",
"message": "<string>"
}