---
title: "Create a new inventory lot."
method: POST
path: "/api/inventory-lots"
tags: ["Inventory Lot"]
---

# Create a new inventory lot.

`POST /api/inventory-lots`

## Request body

- InventoryLotCreateDto — Details of the inventory lot to be created.
  - `name` string, nullable — The name of the lot. It is not guaranteed to be unique inventory-wide, but only within an item.
  - `itemId` string, required — The item id that is associated to this lot. Please reference /api/items endpoint.
  - `expirationDate` string, date-time, nullable — The date that this lot is supposed to expire.

## Response `200`

Item created

- CreatedResponseDto — Response for a created record
  - `id` string, required — The id of the created record

## 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)
