I am trying something like this to get the history of a given issue:
https://upvate.atlassian.net/rest/api/2/search?jql=project="UC-3142" and issuehistory()
Error was expecting an operator. What would the correct query look like?
Thanks,
Chris Mazzochi
Hey there,
Try this instead. https://upvate.atlassian.net/rest/api/2/issue/UC-3142?expand=changelog.
Documentation for rest API's can be found here.
https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-issue-issueIdOrKey-get
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.
Kian what about getting the change log for all issues within a project?
The following query doesn't return the change log...
https://upvate.atlassian.net/rest/api/2/project/UC?expand=changelog
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this still from Kipfolio? There isn't an end point for just listing changes made to tickets within a project, but you can search for tickets within a project and expand the changelog still.
https://upvate.atlassian.net/rest/api/2/search?jql=project%3DUC&maxResults=100&expand=changelog
This will give you up to 100 tickets within project UC and expand the changelog for each issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works with :
URLticket = URLJIra & "rest/api/latest/issue/" & projectName & "?xpand=changelog&fields="""
But not with :
URLticket = URLJIra & "rest/api/2/search?jql=project=" & NumProjet & "&maxResults=100&expand=changelog"
Any thoughts ? how can I make it work using "jql" ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kian Stack Mumo Systems
The first link you provided on Dec 22, 2017 is no longer available.
Do you perhaps have another link for this of JQL query to return the issue history?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For the JQL? Or for a rest end point to return issue history?
Thanks,
Kian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the quick response, Kian.
Since I'm new to JIRA and not a person with IT background, I'm not sure how to answer your question.
However, what I would like to see, for reporting purposes, would be a table in where I could find for each row the history changes. So, for the same issue key, we would have several rows, each row containing data for the columns "Field changed", "Original Value", "New Value" and "Change Date".
Is this somehow possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
This is possible with our app: AIO Reports and Timesheets for Jira
Documentation link:
https://aioreports.atlassian.net/wiki/spaces/ART/overview
A sample screenshot is included below.
For any questions or issues, please email us at support@aioreports.com
Regards
AIO Support
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.