Hi All,
I'm trying to list Jira tasks using REST API. The tool I used to test the API call is the Chrome extension Talend API Tester, a basic REST API testing tool.
From the web browser I can view all issues related to project XXX from:
https://<mycompany>.atlassian.net/browse/XXX-1?jql=project%3DXXX
So in the API Tester, I tried to fire this request (also gave the correct username and password within the tool):
GET https://<mycompany>.atlassian.net:8080/rest/api/2/search?jql=project%3DXXX
this request had failed with no response. also it was a timeout when I tried to 'ping <mycompany>.atlassian.net'
what am I missing here?
Without the port it works for me. So you can try it with:
https://<mycompany>.atlassian.net/rest/api/2/search?jql=project%3DXXX
Greeting,
Josef
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.