# Company remove tag by id
You can remove a tag added to the company using a company_id.
POST
/companies-by-id/:company_id/remove_tag/
Attributes | Type | Required | Description |
---|---|---|---|
company_id | string | no | The unique identifier for the company which is provided by the client. |
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" -d '{
"name": "My tag"
}' "https://<your_app_subdomain>.user.com/api/public/companies-by-id/:company_id/remove_tag/"