curl --request DELETE \
--url https://api.skulabs.com/kit/remove_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>"
}
'{
"success": true
}Remove a component item from a kit.
curl --request DELETE \
--url https://api.skulabs.com/kit/remove_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kit_id": "<string>",
"item_id": "<string>"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Item removed from kit
Whether the operation succeeded