Please give advise how I can connect to my Jira Atlassian dashboard (get list of tasks and task details) by use API. What need to setup in Jira Atlassian config?
The documentation not clear for me - https://developer.atlassian.com/server/jira/platform/rest-apis/
Hi @Victor A,
Welcome to Atlassian Community!
The documentation you linked to only applies to Jira Server/Data Center, for Cloud you want to take a look at https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/
To get the list of tasks you want to access the filter instead of the dashboard, all the dashboard is doing is showing information based on different filters. You can use JQL as part of your request, something like this:
https://my-instance.atlassian.net/rest/api/3/search?jql=project=JRA+order+by+key+asc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.