Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
39 views

When creating a YouTrack issue using the REST API, how can I also link it to a parent issue at the same time? I don't want to make multiple requests. The YouTrack docs show a parent attribute, but no ...
Aaron Jensen's user avatar
  • 27.2k
0 votes
0 answers
47 views

I have this code that should change the issues of the assignee to another assignee that I selected before. const changeIssues = async (oldAssignee: User, changeAssignee: User) => { ...
Dreyarnatsu's user avatar
0 votes
1 answer
293 views

I'm using /api/issues/{issueID}/activities to try and view the past changes for the State field of issues on YouTrack. I'm able to see the time changes were made and the user that made them, but when ...
user25317565's user avatar
1 vote
1 answer
891 views

I need to have dropdown menus for each custom field that lists the available selectable values for each custom field, just like how it appears and works in YouTrack when you're on the page for an ...
user25317565's user avatar
0 votes
1 answer
629 views

I am trying get specific information about ticket activities. I wanna know next things: All assignee change events All sprints change events All story points change events All status change events I ...
Александр Шаповалов's user avatar
1 vote
1 answer
1k views

In our YouTrack our epics has a field call Lead which is assigned to a user. Then subtasks of that epic are assigned to different people. If I query #Lead: me it will show all epics that I am assigned,...
Kevin's user avatar
  • 565
1 vote
1 answer
2k views

I'm trying to automatically update an estimated issue duration using a numeric field called 'Estimate'. I can access the start date and due date and take their difference in days (the intended ...
Onofog's user avatar
  • 463
-2 votes
1 answer
643 views

Help make a request to get a list of closed tasks for the current sprint. For open such a request turned out base_url/api/issues?query=%23resolved%20%23я&fields=summary,idReadable,customFields(...
front end's user avatar
0 votes
1 answer
2k views

I'd like to get all issues with a specific tag updated date with YouTrack Query, but I can't find a way to do this in the official doc : https://www.jetbrains.com/help/youtrack/standalone/Search-and-...
Samuel Deschamps Berger's user avatar
0 votes
1 answer
404 views

The new YouTrack API is missing the old Issue history /rest/issue/{issue}/history end-point which our code heavily depends on. There's only the Issue activities /api/issues/{issueID}/activities end-...
antoninkriz's user avatar
  • 1,066
0 votes
1 answer
508 views

I'm trying to create a new project with the Youtrack API. And now I want to create a project with a template that I've created by myself on Youtrack. The API have only "scrum" and "...
hacker20's user avatar
0 votes
1 answer
736 views

I have a (correctly working) workflow script starting with this guard function: var entities = require('@jetbrains/youtrack-scripting-api/entities'); exports.rule = entities.Issue.action({ title: '...
Jan Doggen's user avatar
  • 9,086
1 vote
0 answers
572 views

How add attachment to issues's comment wia Rest API? I try this: encoderrrr=MultipartEncoder(fields={ 'file':('tets.jpg', open('./project/MAC/MAC-338/screenshot-1.png','rb')) }) ...
myoldloverock's user avatar
0 votes
1 answer
372 views

I've created a workflow in YouTrack with one rule. However, on the Workflow screen, next to the name of my Workflow there is a box that says in red text, 'requires setup'. When I hover over this it ...
CodeLearner's user avatar
1 vote
1 answer
2k views

Can a template with default text be created when opening new issues in the online YouTrack ? The standalone has this: https://www.jetbrains.com/help/youtrack/standalone/Workflow-Default-Description....
Guy's user avatar
  • 106
3 votes
1 answer
2k views

My issue fields have a State and an option called In Progress So I wrote a Youtrack Workflow that launches a http post to my discord channel when an issue becomes "In Progress". Here is the ...
xetra11's user avatar
  • 9,075
0 votes
1 answer
513 views

When I query the API api/issues/ for issues with fields="id", I get back an array of issues similiar to this: [ { "id": "2-120" } ] This works for further calls because 2-120 can be used in calls ...
Jonas Dellinger's user avatar
0 votes
1 answer
1k views

Since version 2018.3, YouTrack has published a new API for administrating the system. One example of a new endpoint is /api/admin/users/ which is supposed to return the collection of users in the ...
fuglede's user avatar
  • 18.3k
-1 votes
1 answer
478 views

I can't for the life of me find the documentation on how to access user notifications via the REST-API. Everything is activated and allowed in the admin settings, but what is the correct url to fetch ...
user avatar
0 votes
1 answer
98 views

I'm writing a tool, that fetches the issues on which a user has spent some time within the last week, and displays the spent time for each day and issue as a summary, so that the user knows, where he ...
Patrick's user avatar
  • 153
0 votes
2 answers
3k views

I can't get users by project or by filter on YouTrack REST API; I wrote the following code: var login = "mylogin"; var password = "mypassword"; (async function getAllUserByProject(login, password, ...
Фозилбек Самиев's user avatar
4 votes
0 answers
699 views

it is possible to assign a task to a user by YouTrack REST API? I did not find this information in the documentation. Ok I found a solution: Apply Command to an Issue
Marcin Mack's user avatar