Hi Jeevan
Can you try
e.g. http://localhost:8080/rest/api/2/issue
and see if that works for you
Hey @Jeevan Veedhi
From the 404 error it says the endpoint you are specifying is incorrect.
URL should be http://localhost:8080/rest/api/2/issue/ or http://localhost:8080/rest/api/latest/issue/
Please check out this URL to create issue from REST API https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#creating-an-issue-examples
A Sample example :
curl \
-D- \
-u charlie:charlie \
-X POST \
--data {see below} \
-H "Content-Type: application/json" \
http://localhost:8080/rest/api/2/issue/
{ "fields": { "project": { "key": "TEST" }, "summary": "REST ye merry gentlemen.", "description": "Creating of an issue using project keys and issue type names using the REST API", "issuetype": { "name": "Bug" } } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.