Skip to main content
POST
/
kit
/
create
Kit - Create
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
data
object
required

Kit data object

Response

Kit created

success
boolean
required

Whether the operation succeeded

_id
string
required

ID of the created kit

Example:

"507f1f77bcf86cd799439011"

new_kit_id
string
required

ID of the newly created kit (same as _id)