Categories:
  1. What is JIRA
  2. JIRA VS Confluence
  3. Create Basic Creadetials in JIRA API
  4. Creating An Issue In A Sprint Using The JIRA REST API
  5. Create Issue using JIRA API
  6. JIRA Add comments to an existing ticket
  7. Create an attachment using JIRA API

We can create JIRA Ticket using POST method in API. Any web service platform can consume the below URL and create issue.

Host : JIRA Website (https://spssweb1.atlassian.net)

Endpoint: host/rest/api/2/issue

header: ‘Content-Type: application/json’

Credentials: https://snowexpertrohit.com/jira/create-basic-creadetials-in-jira/

Body:

{
        "project" :
        {
            "key": "AB"
        },
        "summary": "TEST TICKET TO JIRA",
        "description": "Creating an issue as an example",
        "issuetype":{
            "name":"TASK"
        },
        "customfield_12279":{
            "value":"test"
        },
        "customfield_12272" : "This is the mySummary Summary"
        }
}

One response

  1. There are some interesting cut-off dates on this article but I don’t know if I see all of them middle to heart. There’s some validity however I’ll take hold opinion till I look into it further. Good article , thanks and we wish extra! Added to FeedBurner as effectively

Leave a Reply

Your email address will not be published. Required fields are marked *