Hi,
I am trying to retrieve all the changelogs related to an issue. Nevertheless I can't use this webservice: /rest/api/2/issue/key/changelog because it isn't available in our current server. (on-premise). It is running jira 7.8.1
Basically, I need to go through all the changelogs if total > maxResults
"changelog": {
"startAt": 0,
"maxResults": 100,
"total": 2406,
I already tried to use pagination in the search webservice (/rest/api/latest/search): (changelog.startAt: 1, 2, 3.. etc)
{{
"jql": "id = 12401",
"startAt": 0,
"maxResults": 1,
"expand": [
"changelog"
]
}}
And I also tried to use pagination in this webservice
/rest/api/2/issue/12401?expand=changelog
Any help? I would really appreciate, Thank you! Jivago
Hi @Jivago
There is a nice pagination example in https://community.atlassian.com/t5/Jira-Software-questions/REST-API-Changelog/qaq-p/925866#
What are you seeing the issue with ?
Oh sorry, i only tried the expand=changelog in /rest/api/2/issue/key to also get the changelog. But reading more about it i realize that it returns only limited numbers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is still not a feature of JIRA Server and I've found a number of issues logged which have been ignored. Is the changelog endpoint ever coming to JIRA Server?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.