# Add tag
You can add a tag to a specific user.
POST
/users-by-id/:custom_id/add_tag/
Attributes | Type | Required | Description |
---|---|---|---|
custom_id | integer | yes | The unique identifier for the user which is provided by the client. |
name | string | yes | A tag name. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
"name": "My tag"
}' "https://<your_app_subdomain>.user.com/api/public/users-by-id/:custom_id/add_tag/"
# Response
{
"tag": {
"name": "My tag"
},
"created": true
}
If
created
equalsTrue
: you did not have this tag before.False
: you created this tag before, so it was re-used.