curl --request PUT \
--url https://api.skulabs.com/item/set_tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_id": "<string>",
"tag_ids": [
"<string>"
]
}'
/item/set_tags
curl --request PUT \
--url https://api.skulabs.com/item/set_tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item_id": "<string>",
"tag_ids": [
"<string>"
]
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK