Skip to content

Get Stock Lot

GET
/admin/stock-lots/{id}
curl --request GET \
--url 'http://localhost:9000/admin/stock-lots/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
stock-lot
object
id
string
inventory_item_id
string
stock_location_id
string
lot_number
string
description
string
enabled
string
stocked_quantity
string
created_at
string format: date-time
updated_at
string format: date-time
inventory_item
object
stock_location
object
Example generated
{
"stock-lot": {
"id": "example",
"inventory_item_id": "example",
"stock_location_id": "example",
"lot_number": "example",
"description": "example",
"enabled": "example",
"stocked_quantity": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"inventory_item": {},
"stock_location": {}
}
}