Update issue fields via python import?
Hey YouTrack team,
I would like to update fields of existing issues in YouTrack via python import. Is that possible? From what I can see there is no example and I can't find methods in youtrack/connection.py.
Regards,
Thomas
Please sign in to leave a comment.
Hey Thomas,
It is done via 'executeCommand' method, see example:
from youtrack.connection import Connection as YT
yt = YT("http://localhost:8080", "root", "root")
yt.executeCommand("TABSC-11", "Priority Critical")