How can I find a jira-issue if I know only technical issue ID? Can I use it in Filters or some url?
You can search it using REST API -
your-site.atlassian.net
with your Jira Cloud URL and {id}
Oh yes, works for me, even it brings "too much" info, but that doesn't matter :). Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Simply use this JQL query:
id=10955
... where 10955 is the numerical issue ID.
It is more convenient than the URL based approached, and it works in automation rules, boards, etc. (multi purpose!).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh, even too easy. I tried IssueId and other, but didn't think it would be so easy! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.