curl --request PUT \
--url https://api.skulabs.com/tag/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tag_id": "507f1f77bcf86cd799439011",
"name": "<string>",
"color": "red"
}
'{
"success": true
}Update an existing tagβs name or color.
curl --request PUT \
--url https://api.skulabs.com/tag/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tag_id": "507f1f77bcf86cd799439011",
"name": "<string>",
"color": "red"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tag updated successfully
Whether the operation succeeded