# Update tag

You can update a specific tag.

PUT /tags/:id/

Attributes Type Required Description
id integer yes A unique identifier for the tag which is given by User.com automatically.
name string yes A tag name.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
 curl -X PUT -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json" -d '{
      "name": "Updated tag name"
    }' "https://<your_app_subdomain>.user.com/api/public/tags/:id/"