# Disconnect a tag from a project

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

Endpoint: DELETE /projects/{project_id}/tags/{tag_id}
Version: v1
Security: AuthToken

## Path parameters:

  - `project_id` (integer, required)
    The ID of the project.

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

## Response 404 fields (application/json):

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


