Hello all,
I am using c#(WPF) application and i am trying to get issues from using rest Api,
the link which am using is below
https://myHostname:myPort/rest/api/2/issue
but am getting error "The remote server returned an error: (404) Not Found."
Am using the correct credentials.
Please help me out.
Thanks in advance!
404 indicates that either your host or JIRA record was not found - I can't see where you specified the JIRA Key!?
If you are trying to return or [get an existing Issue|https://docs.atlassian.com/jira/REST/latest/#api/2/issue-getIssue] from JIRA you need to specify the JIRA Key and issue a GET request
https://myHostname:myPort/rest/api/2/issue/{issueIdOrKey}
n.b. make sure you specify all the fields you require etc
For example,
https://myHostname:myPort/rest/api/2/issue/DEMO-1?fields=id,summary,status,labels,duedate,assignee
This will return json data containing the listed fields for a JIRA record with the key DEMO-1
Does that help?
Thanks,
but after mentioning the issue key still am getting the same error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The 404 really does mean that there is no JIRA available on that url.
What happens if you visit it in a browser? What happensif you just go to https://myHostname:myPort ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.