Our programmers have tol log all the work they do on Jira issues.
I want to create a script (bash/php/whatever) that runs daily to check if every programmer logged enough hours. It should work something like this
I already do this on our self hosted Jira instance, but I use the 'RESTful Worklog Query' add-on for that. This addon is not available for the cloud.
I have read through the docs, but this doesn't seem to be possible?
Any thoughts on this?
I can't see clear way to input a user and a date in order to get back all that I think you are looking for here in a single call.
However there are two different REST endpoints that you could use to find this out. First you would need to find all the worklog ids. You can use the /rest/api/2/worklog/updated endpoint to do this. That REST endpoint has an optional parameter, it is a unix time value. If supplied the REST call only returns the worklogs since that time supplied. My thought is that you could run this REST call everyday with a changing time parameter as to some time from yesterday, or 24 hours ago in the unix epoch time.
With the results of that, you can then see all the worklog ids. You would need those ids in order to then use the rest/api/2/worklog/list endpoint. If you make that call and supply it all the ids you got back from the first call in order to see all the worklogs via rest for all users during that time.
I know this isn't exactly what you are looking for here, but this is one way that you could use the REST API in order to get this data in a raw form.
Online 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.