Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there an easy way to retrieve the issueid from a jira issue just created?

Joseph Andrew Jaffey
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 28, 2017

I am using C# and rest sharp to create a jira issue of  issue type test and would like to get the issueID back for the issue I just created.  Is there someway of doing that by pulling it out of the response?  Or what is the easiest way of doing it, ideally without having to do a new query to query the issue just created.

 

Thanks.

1 answer

1 vote
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 28, 2017

The response of the create issue call already had the issue id in it. Following is a sample json response:

{
    "id": "10000",
    "key": "TST-24",
    "self": "http://www.example.com/jira/rest/api/2/issue/10000"}

You can extract the "id" from it.

Suggest an answer

Log in or Sign up to answer