REST APIs children are OK but main page returns error 404

Evaldo Junior September 11, 2017

I can access all "children" from REST API, but when trying to connect to main page always got 404 error. I need this correct to use with Testlink.

I.e.: When I type the command below in my browser always got the correct JSON reply:

http : //mypage.com:8080/rest/api/latest/user?username=myuser

{"self": "http://mypage.com:8080/rest/api/2/user?username=myuser","key": "myuser","name": "myname","emailAddre...":

(...)

"displayName": "myname","active": true,"timeZone": "America/Sao_Paulo","groups": {"size": 24,"items": []},"expand": "groups"}

But when I type just the main page always got this:

http://mypage:8080/rest/api/latest/

<status>
 <status-code>404</status-code>
 <message>
 null for uri: http://mypage:8080/rest/api/latest/
 </message>
</status>

Please, what am I doing wrong?

2 answers

1 accepted

0 votes
Answer accepted
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 12, 2017

Hi Evaldo,

You're not doing anything wrong.  The root level endpoint is not going to provide any data.  The valid endpoints can be found at JIRA REST API Reference.

Cheers,

Branden

0 votes
Evaldo Junior September 12, 2017

Thank you, Branden.

Suggest an answer

Log in or Sign up to answer