how to create an issue in jira via rest api?

POST to this URL https://<JIRA_HOST>/rest/api/2/issue/ This data: { “fields”: { “project”: { “key”: “<PROJECT_KEY>” }, “summary”: “REST EXAMPLE”, “description”: “Creating an issue via REST API”, “issuetype”: { “name”: “Bug” } } } In received answer will be ID and key of your ISSUE: {“id”:”83336″,”key”:”PROJECT_KEY-4″,”self”:”https://<JIRA_HOST>/rest/api/2/issue/83336″} Don’t forget about authorization. I used HTTP-Basic one.

Make Jira links clickable in Github

Update 2022: Dusan Plavak mentions in the comments that, as of today (Q1 2022), you can also import / automate creation of autolinks via github api. You can also use gh api: gh api repos/octocat/hello-world/autolinks \ -f -q ‘key_prefix:key_prefix url_template:url_template’ And since July 2022, you also have autolinks with alphanumeric IDs (for instance for a … Read more

Add JIRA Quick Search to Chrome Omnibox

In searching for the same answer, I discovered a partial solution. This solution requires that you use the keyword searching feature of the omnibox, so searching for “ISSUE-123” will not work but “jira ISSUE-123” will. It also supports quick-search text searching for example “jira some search string.” In chrome, follow these steps to configure: Open … Read more

JIRA: Searching for all issues with a given link type

You can use Script Runner plugin – Edit: It unfortunately is no longer free. The last version before 4.0 still is, though. Details here https://www.adaptavist.com/doco/display/SFJ/Downgrade+ScriptRunner It sports a ton of incredibly useful functions, one of these is hasLinks() Usage example: issueFunction in hasLinks(“blocks”) OR issueFunction in hasLinks(“is blocked by”)

Issues commented by me in JIRA

if you know the name of the user (lets assume the name is Tom you can do: issueFunction in commented(“by Tom”) you can also filter it by date of the comment like: issueFunction in commented(“after -1d by Tom”) UPDATE: this requires ScriptRunner being installed in JIRA server (as JBert pointed out)