I am trying to GET an Issue using postman and I am getting the below error.
I am using Basic Auth authentication type and provided my JIRA API Key.
URI:
https://JIRA.atlassian.net/rest/api/3/issue/ABC-200
Error:
{ "errorMessages": [ "Issue does not exist or you do not have permission to see it." ], "errors": {}}
When I enter the above URI in a browser I see some responses, but I don't see it in Postman.
Am I missing something in my GET request?
Have you tried using CURL?
Something like this,
curl --request GET \
--url https://<site>.atlassian.net/rest/api/3/issue/ABC-1 \
--header 'authorization: Basic <base64 encoded email:api_key>'
I am having the same issue. I also tries the above command. what else can be the issue?
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.