Skip to main content
PATCH
/
v1
/
scanner
/
receiving
/
items
/
{itemId}
/
not-received
Mark item as not received
curl --request PATCH \
  --url http://localhost:3000/v1/scanner/receiving/items/{itemId}/not-received \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "out_of_stock"
}
'
{
  "success": true,
  "message": "<string>",
  "sweep_fully_received": true
}

Path Parameters

itemId
string<uuid>
required

Sweep item ID

Body

application/json
reason
enum<string>
required

Reason the item was not received. damaged_stock marks as received with damaged inventory (tracks spend, no shelf placement).

Available options:
out_of_stock,
cant_find,
damaged,
wrong_item,
damaged_stock

Response

Item marked as not received

success
boolean
required
message
string
required
sweep_fully_received
boolean
required