Hi I am using JIRA Rest API & I want to fetch project all historical keys .
Jest API which I am using :
https://<domain-name>/rest/api/2/project?expand=description,lead,url,projectKeys
By using this api it gives me list of all the historical keys for each project. I also wanted to know when the project key was modified. But I can't find any API which help me to do this :(
I also tried listing all attributes using project key . But that also didn't help much .
https://<domain-name>/rest/api/2/project/<project-key>?expand=description,lead,url,projectKeys
I dont believe it's available via that REST endpoint. You might be able to find it via the audit logs but those logs may not go far back enough depending on when the change was made:
GET /rest/api/2/auditing/record
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.