Forums

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

Get current date log_works of issue from webhooks

Jatin
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!
May 28, 2025

Hi Team,

I'm using jira webhooks to get the work log data and also the webhook triggers on the worklog changed so, I want to get the current date worklogs from how can i do that.

Thanks.

1 answer

0 votes
Humashankar VJ
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 4, 2025

Hi @Jatin 

Can you give a try with this approach,

  • Use this JQL to fetch the list of issue keys with worklogs dated within the current day, using the query: 'worklogDate >= startOfDay() AND worklogDate <= endOfDay()'.
  • Then, iterate through each issue in the result set and make a GET request to '/rest/api/3/issue/{issueKey}/worklog' to retrieve the worklogs.

As a Step-3, filter the worklogs to only include those with a start date matching the current day

Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards

Suggest an answer

Log in or Sign up to answer