How can I get Jira issues with rest API when I only want issues with updates to specific (custom) fields that happened today?
Hi @Ward Schwillens_ Schwillie
I can suggest an alternative solution to get updates for the custom field for a specific time frame. If you are ok with add-ons, check out Issue History for Jira. My team developed it to get change reports for any list of issues. You can monitor changes for standard or custom fields.
Export to CSV/Excel is available.
You can check how it works for you with 30-day free trial.
Hi Ward,
To get JIRA Issues based on custom field changes, you could try the below approach
REST API Call example
https://jira.atlassian.com/rest/api/2/search?jql=project=%22JRA%22&expand=changelog
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ward Schwillens_ Schwillie
it's difficult to get hold of change data in the cloud.
I guess you've tried to= query the issue to update before sending, /rest/api/2/search with a jql parameter.
issue = DT1-10 and priority changed after startOfDay()
Although not all custom fields support the history searching.
The only option I know of is to expand the search to return the changelog data. Although I've only used that call with forge apps. (note the changelog can be 100's on entries)
const response = await api.asApp().requestJira(route`/rest/api/3/issue/${issueKey}/changelog`, {
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register todayOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.