Skip to content

Update Stock Lot

POST
/admin/stock-lots/{id}
curl --request POST \
--url http://localhost:9000/admin/stock-lots/example \
--header 'Content-Type: application/json' \
--data '{ "inventory_item_id": "example", "stock_location_id": "example", "lot_number": "example", "description": "example", "enabled": true, "stocked_quantity": 1, "metadata": {} }'
id
required
string
Media type application/json
object
inventory_item_id
string
stock_location_id
string
lot_number
string
description
string
nullable
enabled
boolean
stocked_quantity
number
metadata
object
key
additional properties
any
Example generated
{
"inventory_item_id": "example",
"stock_location_id": "example",
"lot_number": "example",
"description": "example",
"enabled": true,
"stocked_quantity": 1,
"metadata": {}
}

OK

Media type application/json
object
Example generated
{}