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": "<string>",
"lot_prefix": "<string>"
}'
/item/add_serial_numbers
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": "<string>",
"lot_prefix": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK