Is there any way to override maxResult value in changelog api

Saurabh Garg July 26, 2017

Is there any way to override maxResult value in changelog api?

By default changelog api returns only 100 results but In case if I have more than 100 results how Can I override this value?

I tried using below query but it didn't worked

https://localhost:8090/rest/api/2/issue/BB-123/changelog/?maxResults=1

1 answer

0 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 28, 2017

Hi Saurabh,

In order to get the changelog via the API you would need to use the following query:

http://localhost:8090/rest/api/2/issue/BB-123?expand=changelog

The maxResults doesn't work on the expand.  If you had the following query maxResults would work:

http://localhost:8090/rest/api/2/search?jql=project="BB"&maxResults=1

The point of the expand method is to expand sections of the results that you would not normally get returned and the maxResults doesn't work against expansions.

Cheers,

Branden

Suggest an answer

Log in or Sign up to answer