Skip to main content
PATCH
/
v1
/
rfc-picks
/
{id}
/
items
/
{itemId}
Update pick list item
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>"
}

Path Parameters

id
string<uuid>
required

Pick list ID

itemId
string<uuid>
required

Pick list item ID

Body

application/json
status
enum<string>

Item status

Available options:
pending,
picked,
unavailable
picked_quantity
integer

Quantity picked

Required range: x >= 0
notes
string | null

Notes for the item

tote_id
string

Tote ID to assign this item to

Response

Item updated successfully

success
boolean
required
item
unknown
error
string
message
string