curl --request DELETE \
--url https://api.skulabs.com/item/remove_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
],
"tag_id": "<string>"
}
'{
"success": true
}Remove a tag from one or more items.
curl --request DELETE \
--url https://api.skulabs.com/item/remove_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"item_ids": [
"<string>"
],
"tag_id": "<string>"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tag removed from items
Whether the operation succeeded