curl --request POST \
--url https://api.skulabs.com/item/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"sku": "<string>",
"upc": "<string>",
"location": "<string>"
}
'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"sku": "<string>",
"notice": "<string>"
}Create a new item with SKU, name, and optional details like barcodes and dimensions.
curl --request POST \
--url https://api.skulabs.com/item/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"sku": "<string>",
"upc": "<string>",
"location": "<string>"
}
'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"sku": "<string>",
"notice": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.