---
title: "Receive inventory for a specific item."
method: POST
path: "/api/inventory/receive"
tags: ["Inventory"]
---

# Receive inventory for a specific item.

`POST /api/inventory/receive`

## Request body

- InventoryReceiveDto — Receive event for item inventory.
  - `itemId` string, required — Item identifier. Please reference /api/items endpoint.
  - `secondaryType` 'receive' | 'found' | 'stockAdjustmentIncrease' | 'otherIncrease', required — Secondary event type specifically for receiving.
  - `quantity` number, double, required — Quantity of the item to receive.
  - `locationId` string, nullable — Location id that inventory is received into. Please reference /api/locations endpoint
  - `lotId` string, nullable — Lot identifier for this block of inventory. Please reference /api/inventory-lots endpoint
  - `lotNumber` string, nullable — Lot name.
  - `note` string, nullable — Notes associated to this transaction.
  - `laborValue` number, double, nullable — Labor value associated (per unit).
  - `machineValue` number, double, nullable — Machine value associated (per unit).
  - `outsideProcessingValue` number, double, nullable — Outside processing value associated (per unit).
  - `materialValue` number, double, nullable — Material value associated (per unit).

## Response `200`

Inventory transaction processed

## Other responses

- `400` — Validation issues with input

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
