curl --request PUT \
--url https://api.skulabs.com/kit/edit_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>",
"quantity": 123
}
'{
"success": true
}Edit a component itemβs quantity or properties within a kit.
curl --request PUT \
--url https://api.skulabs.com/kit/edit_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>",
"quantity": 123
}
'{
"success": true
}Documentation Index
Fetch the complete documentation index at: https://skulabs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Kit item updated
Whether the operation succeeded