Please help me in fetching all the issues in the backlog for a particular project id using rest api.
Thanks in advance.
Hi,
You can use this API to fetch the data you need :
https://docs.atlassian.com/jira-software/REST/7.0.4/#agile/1.0/board-getIssuesForBacklog
Then go through the JSON to find issue that match your poject ID
Thanks for the answer, but it is showing only 50 issues. What if I have more than that.
You can add the following parameter:
maxResults={value you want}
Clients can use the startAt and maxResults parameters to retrieve the desired numbers of results.The maxResults parameter indicates how many results to return per page. Each API may have a different limit for number of items returned.
Clients can use the startAt and maxResults parameters to retrieve the desired numbers of results.
The maxResults parameter indicates how many results to return per page. Each API may have a different limit for number of items returned.
https://docs.atlassian.com/jira-software/REST/7.0.4/
It looks like you're new here. Sign in or register to get started.