Get all issues in json format in chrome browser

Adwait Bembalkar March 9, 2017

i need to know the rest api link through which i can get all the issues for that user in json format in chrome browser

1 answer

1 accepted

0 votes
Answer accepted
Sam Hall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 9, 2017

You could use GET /rest/api/2/search and use the jql parameter to specify the search you want to do.

This is a link to the relevant section of the API documentation: https://docs.atlassian.com/jira/REST/cloud/#api/2/search-search

So, assuming you want to get JSON for issues assigned to current user you can visit:

 https://your-jira-name.atlassian.net/rest/api/2/search?jql=assignee%20%3D%20currentUser()

Note: this will be limited to first 50 issues by default. Read the 'Query Parameters' section in the API docs for more info.

Sam

Suggest an answer

Log in or Sign up to answer