YouTrack Standalone 2018.1 Help

REST API

YouTrack provides powerful functionality that helps you perform various actions programmatically via its RESTful API, including:

  • Importing issues from your current bug tracking system — for smoother migration to YouTrack.

  • Creating, modifying, and performing other operations programmatically — so you can seamlessly integrate YouTrack into your environment. For example, via automated issue submission from third-party applications.

  • Manipulating projects, users, groups, roles, issue link types, and custom attributes.

General Notes

The REST API returns and consumes data in two formats: XML and JSON. Regular content negotiation rules apply:

  • Use the Accept HTTP request header to indicate the expected response data format: application/xml or application/json

  • Use the Content-Type HTTP request header for POST and PUT requests: application/xml or application/json

Regardless of the data exchange format you choose, the request/response semantics stay the same. Any object or field that is returned as XML also exists in JSON representation under the same name and vice versa.

The REST API is always enabled. To test the REST API, enter the base URL for your YouTrack service in your browser, followed by /rest/issue. For YouTrack InCloud instances, your base URL includes the trailing /youtrack. For example:

https://yourcompany.myjetbrains.com/youtrack/rest/issue
If you have sufficient access permissions, the XML representation for the first ten issues (by entityId) is displayed in your browser as shown here:

basicRestTest

Even though the REST API is always on, an administrator can specify which sites (origins) are allowed to access YouTrack via REST. For more information, see REST API Settings.

Tools and Client Libraries Based on the YouTrack REST API

Before you start using the REST API for your own development, take a look at a few tools that use the YouTrack REST API:

Last modified: 7 March 2019