Back to Nodes

YouTrack

Last updated Feb 5, 2026

Custom n8n node for YouTrack

93 Weekly Downloads
647 Monthly Downloads

Included Nodes

YouTrack
YouTrack Trigger

Description

@jetbrains/n8n-nodes-youtrack

![official JetBrains project](https://github.com/JetBrains#jetbrains-on-github)

This is an n8n community node. It lets you use YouTrack in your n8n workflows.

YouTrack is a project management and issue tracking tool by JetBrains that helps teams manage projects, track issues, and collaborate effectively.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node provides two components: the YouTrack node for API operations and the YouTrack Trigger node for webhook-based automation.

YouTrack Node

The YouTrack node supports the following resources and operations:

Command

  • Execute – Execute YouTrack commands on one or more issues (bulk operations supported). Supports all YouTrack commands: tags, assignees, comments, work items, votes, watchers, links, custom fields, and more.
  • Comment

  • Add – Add a comment to an issue
  • List – List all comments on an issue
  • Issue

  • Create – Create a new issue
  • Delete – Delete an issue
  • Get – Get an issue by ID
  • List – List issues
  • Update – Update an issue
  • Issue Draft

  • Create – Create a new issue draft
  • Delete – Delete an issue draft
  • Get – Get an issue draft by ID
  • List – List issue drafts
  • Update – Update an issue draft
  • Project

  • Get – Get a specific project
  • Get Fields Schema – Get the JSON schema for custom fields in the specified project
  • Get Issues – Get issues for a specific project
  • List – List all projects
  • Saved Query

  • Create – Create a new saved query
  • List – List all saved queries visible to the current user
  • Tag

  • Add to Issue – Add a tag to an issue
  • Get Issue Tags – Get all tags on a specific issue
  • List – List all available tags
  • Remove From Issue – Remove a tag from an issue
  • User

  • Get – Get a specific user by ID or login
  • Get Current – Get current authenticated user
  • Get General Profile – Get general profile settings for a specific user
  • Get Notifications Profile – Get notification settings for a specific user
  • Get Saved Queries – Get saved queries for a specific user
  • Get Tags – Get tags for a specific user
  • Get Time Tracking Profile – Get time tracking settings for a specific user
  • List – List users
  • User Group

  • Get – Get a specific user group by ID
  • Get Members – Get members of a user group
  • List – List user groups
  • Work Item

  • Add – Add a work item (time tracking) to an issue
  • YouTrack Trigger Node

    The YouTrack Trigger node allows you to start workflows automatically when events occur in YouTrack.

    Supported Events:

  • Issue Created
  • Issue Updated
  • Issue Deleted
  • Comment Added
  • Comment Updated
  • Comment Deleted
  • Work Item Added
  • Work Item Updated
  • Work Item Deleted
  • Issue Attachment Added
  • Issue Attachment Deleted
  • Credentials

    This node uses permanent token authentication to connect to YouTrack.

    Prerequisites

    1. Access to a YouTrack instance (cloud or self-hosted)
    2. A YouTrack account with appropriate permissions

    Authentication Setup

    1. Generate a Permanent Token:
    – Log in to your YouTrack instance
    – Navigate to your Hub profile under Authentication > Tokens
    – Create a new permanent token

    2. Configure Credentials in n8n:
    – In n8n, go to Credentials > New Credential
    – Select YouTrack API
    – Enter your YouTrack URL (e.g., https://your-instance.myjetbrains.com/youtrack for cloud
    Important: Enter the base URL without /api at the end
    – Enter your Permanent Token
    – Click Save

    Compatibility

  • Minimum n8n version: Requires n8n version that supports community nodes with API version 1
  • YouTrack API: Compatible with YouTrack REST API (cloud and self-hosted instances)
  • Usage

    Command Execute

    The Command Execute operation allows you to apply YouTrack commands to issues using natural language syntax:

  • tag MyTag for me – Adds the tag “MyTag” to an issue and assigns it to you
  • tag To Deploy for jane.doe – Adds the “To Deploy” tag to an issue and assigns to jane.doe
  • work 2h Fixed bug – Logs 2 hours of work on the issue with a comment
  • Note: The vote+1 command cannot be used on your own issues, and usernames must be valid YouTrack logins.

    Custom Fields

    To discover available custom fields for a project, use the Project > Get Fields Schema operation, which returns the JSON schema for all custom fields in the specified project.

    Issue Queries

    When listing or filtering issues, YouTrack uses its own query language. See the YouTrack Query Syntax documentation for details.

    Webhooks

    For webhook triggers, configure the Webhook Triggers app in your YouTrack instance. The YouTrack Trigger node will provide the webhook URL during setup.

    Resources

  • n8n community nodes documentation
  • YouTrack REST API documentation
  • YouTrack documentation

License

MIT License