# Company remove tag

You can remove a tag added to the company.

POST /companies/:id/remove_tag/

Attributes Type Required Description
id integer yes A unique identifier for the company which is given by User.com automatically.
name string yes A Name of the tag you want to remove.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json" 
       -H "Accept: */*; version=2" -d '{
  "name": "My tag"
}' "https://<your_app_subdomain>.user.com/api/public/companies/:id/remove_tag/"