Skip to main content
PATCH
/
v1
/
scanner
/
restocking
/
{id}
/
items
/
{itemId}
Update restock item
curl --request PATCH \
  --url http://localhost:3000/v1/scanner/restocking/{id}/items/{itemId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "pending",
  "restocked_quantity": 1,
  "notes": "<string>",
  "target_slot_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
null

Path Parameters

id
string<uuid>
required

Restock list ID

itemId
string<uuid>
required

Restock list item ID

Body

application/json
status
enum<string>
Available options:
pending,
restocked,
partial,
doesnt_fit
restocked_quantity
integer
Required range: x >= 0
notes
string | null
target_slot_id
string<uuid>

Response

Item updated

The response is of type unknown.