Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get changelog for issue for jira version 8.5.10

sidoroveugene
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 14, 2021

Good day everyone. I need to get changelog info for the issue in jira via rest api

Jira version 8.5.10

access to jira via url as follows https://jira.<domain>.com  so it is locally deployed jira without cloud access

I've checked the documentation for corresponding version and unfortunately I couldn't find such endpoint

Is there any other way how I can get changelog via rest API? 

1 answer

0 votes
Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 27, 2021

Hi,

Take a look at our Jira Server REST API reference document for 8.5 over in https://docs.atlassian.com/software/jira/docs/api/REST/8.5.0

You can find this information under the endpoint of GET /rest/api/2/issue/{issueIdOrKey} However in order to get back changelog info on an issue, you need to use the expand parameter.  If you were using curl to make these REST calls it might looks something like this:

curl -u admin:password \
-H "Content-Type: application/json" \
"http://jira.example.com/rest/api/2/issue/SCRUM-10?expand=changelog"

I hope this helps.

Andy

Suggest an answer

Log in or Sign up to answer