curl --request POST \
--url http://localhost:8080/api/tags/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"bot_id": 1,
"chat_id": -100123456789,
"user_id": 987654321,
"username": "alice",
"tag": "VIP",
"color": "#FFD700"
}
'