I am trying to get list of pull requests for a given repository but the response contains details of only 1 pull request. The documentation says the pull-requests API endpoint is a PagedAPI (https://developer.atlassian.com/static/rest/stash/3.11.6/stash-rest.html#idp3175008), but the results shows there is only one record (isLastPage = true). I am not sure what is going wrong.
end point: https://<server>/rest/api/1.0/projects/RS/repos/repo_name/pull-requests
response:
{
"size": 1,
"limit": 25,
"isLastPage": true,
"values": [...],
"start": 0
}
It defaults to show only open and incoming pull requests.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.