Document toolboxDocument toolbox

Example 4

JIRA_URL/rest/jira-worklog-query/1/find/updatedWorklogs?startDate=2012-12-12&group=test group&project=TEST

During the interval between 2012.12.12 and 2013.01.12, all the worklogs modified by the testuser are returned from every project to which the user has access to.

A possible response:

[[
  {
    "id":11000,
    "duration":14400,
    "startDate":"2013-01-07T08:00:00Z",
    "userId":"testuser",
    "issueKey":"TEST-1"
  }
]]

The response is similar to the one in the first example, but the last worklog is missing from the response. One possible explanation for that may be that the testuser modified the worklog description to 2013.01.13. Therefore, the updateWorklogs query does not return it any longer, while a worklog query would return the results of the first example henceforward.