The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Jira API - No "Issue" tag/parameter in JSON

Chris
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 17, 2019

I'm trying to find a way to make JSON POST's for the Rest API, so I can create JIRA issues. After going to my url, following the tutorials I have found online, I'm having 404 errors. Below, the URL you see, does produce information. If I add "/issue" to the end, I get 404. In the URL below, "issue," isn't even there. There is issue type, but that won't help me create an issue. See my attached photo to see what I mean. Is there an access problem I'm having, restricting me from seeing the "issue" piece?apiproblem.PNG

https://hosturl/rest/api/2/project/14704

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
brbojorque
Community Champion
December 17, 2019

Hi @Chris ,

In order for you to create the issue you must send the request via a POST http verb.

You can use curl or even Postman tool in order to do this.

Accessing it via the browser will only request the GET http verb.

Chris
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 18, 2019

@brbojorque appreciate the info. I'm new to using cURL. I was using postman yesterday and getting the 404 error attempting to POST the "issue." Can you have a look at my code and let me know your thoughts?

curl \
-u username:password \
-X POST \
-D apiTest.json \
-H "Content-Type: application/json" \
https://myjiraurlgoeshere/rest/api/2/project/14704/issue/