# Remove tag

You can remove tag from a user.

POST /users/:id/remove_tag/

Attributes Type Required Description
id integer yes A unique identifier for the user which is given by User.com automatically.
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/:id/remove_tag/"