curl --request POST \
--url https://api.skulabs.com/item/add_serial_numbers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_id": "<string>",
"serial_numbers": [
"<string>"
],
"no_refresh": true,
"sku": "<string>",
"lot_count": 123,
"lot_prefix": "<string>"
}
'{
"success": true,
"serial_numbers": [
"<string>"
]
}Add serial numbers to an itemβs inventory at a specific warehouse.
curl --request POST \
--url https://api.skulabs.com/item/add_serial_numbers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_id": "<string>",
"serial_numbers": [
"<string>"
],
"no_refresh": true,
"sku": "<string>",
"lot_count": 123,
"lot_prefix": "<string>"
}
'{
"success": true,
"serial_numbers": [
"<string>"
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.