Skip to main content
POST
/
item
/
add_tag
Item - Add Tag
curl --request POST \
  --url https://api.skulabs.com/item/add_tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_ids": [
    "<string>"
  ],
  "tag_id": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
item_ids
string[]
required

Array of item IDs

tag_id
string
required

Tag ID to add

Response

Tag added to items

success
boolean
required

Whether the operation succeeded