curl --request POST \
--url https://api.skulabs.com/kit/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"name": "<string>",
"listing_sku": "<string>",
"sku": "<string>",
"fulfillment_sku": "<string>",
"items": [
{
"quantity": 123,
"item_id": "<string>",
"sku": "<string>",
"type": "<string>"
}
],
"barcodes": [
"<string>"
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"cost": 123,
"retail": 123,
"wholesale": 123,
"sale": 123,
"active": true,
"image": "<string>",
"description": "<string>",
"notes": "<string>",
"weight": 123,
"weight_unit": "oz",
"lag_time": 123
}
}
'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"new_kit_id": "<string>"
}Create a new kit with component items, SKU, and optional details.
curl --request POST \
--url https://api.skulabs.com/kit/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"name": "<string>",
"listing_sku": "<string>",
"sku": "<string>",
"fulfillment_sku": "<string>",
"items": [
{
"quantity": 123,
"item_id": "<string>",
"sku": "<string>",
"type": "<string>"
}
],
"barcodes": [
"<string>"
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"cost": 123,
"retail": 123,
"wholesale": 123,
"sale": 123,
"active": true,
"image": "<string>",
"description": "<string>",
"notes": "<string>",
"weight": 123,
"weight_unit": "oz",
"lag_time": 123
}
}
'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"new_kit_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Kit data object
Show child attributes