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"
        }
}

Total Views: 1781