# Add many tags
You can add a list of tags to a specific user.
POST
/users/:id/add_many_tags/
Attributes | Type | Required | Description |
---|---|---|---|
id | integer | yes | A unique identifier for the ticket which is given by User.com automatically. |
tag_name | list(string) | yes | A list of tag names. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X POST -H "Authorization: Token \<your_64_char_api_key>" -H "Content-Type: application/json" -d '{
"tag_names": ["My tag1""My tag2"]
}' "https://<your_app_subdomain>.user.com/api/public/users/:id/add_many_tags/"
← Add to list Add tag →