curl --request PUT \
--url https://api.skulabs.com/kit/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"_id": "507f1f77bcf86cd799439011",
"kit_id": "<string>",
"listing_sku": "<string>",
"sku": "<string>"
}
}
'{
"success": true
}Update an existing kitβs properties such as name, weight, or component items.
curl --request PUT \
--url https://api.skulabs.com/kit/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"_id": "507f1f77bcf86cd799439011",
"kit_id": "<string>",
"listing_sku": "<string>",
"sku": "<string>"
}
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Kit data to update (must include _id, kit_id, listing_sku, or sku to identify the kit)
Show child attributes
Kit updated
Whether the operation succeeded