# Untag user

You can remove a tag from a user without deleting it from your account settings by using the /api/v1/users endpoint.

Endpoint: DELETE /users/{user_id}/tags/{tag_id}
Version: v1
Security: AuthToken

## Path parameters:

  - `user_id` (integer, required)
    The ID of the user.

  - `tag_id` (integer, required)
    The ID of the tag to disconnect from the user.

## Response 404 fields (application/json):

  - `message` (string)
    Example: "not found"


