Forums

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

JIRA Rest API returns 404 on GET request

VP August 15, 2019

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?

1 answer

0 votes
DPKJ
Community Champion
August 16, 2019

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>'

jasriram
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!
April 1, 2020

I am having the same issue. I also tries the above command. what else can be the issue? 

Suggest an answer

Log in or Sign up to answer