Skip to main content
POST
/
v1
/
receiving
/
manifest
/
{manifestId}
/
items
/
{itemId}
/
receive
Receive a manifest item
curl --request POST \
  --url http://localhost:3000/v1/receiving/manifest/{manifestId}/items/{itemId}/receive \
  --header 'Content-Type: application/json' \
  --data '
{
  "quantity": 1,
  "cart_id": "<string>"
}
'
{
  "success": true,
  "item": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "received_quantity": 123,
    "expected_quantity": 123,
    "fully_received": true
  },
  "manifest": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "<string>",
    "fully_received": true,
    "total_expected_quantity": 123,
    "total_received_quantity": 123
  },
  "inventory_item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Path Parameters

manifestId
string<uuid>
required

Manifest UUID

itemId
string<uuid>
required

Manifest item UUID

Body

application/json
quantity
integer

Quantity to receive. Defaults to 1.

Required range: x > 0
cart_id
string

Stocking cart taxonomy ID to place item in

Response

Item received successfully

success
boolean
required
item
object
required
manifest
object
required
inventory_item_id
string<uuid> | null
required