Document toolboxDocument toolbox

Example 5

JIRA_URL/rest/jira-worklog-query/1/find/worklogsByIssues?startDate=2015-01-10&endDate=2015-01-11&user=testuser

A possible response:

{
  "startAt": 0,
  "maxResults": 25,
  "total": 2,
  "issues": [
    {
      "id": "13405",
      "self": "http://localhost:8080/rest/api/2/issue/13405",
      "key": "TEST-1",
      "timespent": 1440
    },
    {
      "id": "13406",
      "self": "http://localhost:8080/rest/api/2/issue/13406",
      "key": "TEST-2",
      "timespent": 35760
    }
  ]
}

Example response with "fields=summary,progress" parameter:

{
  "startAt": 0,
  "maxResults": 25,
  "total": 1,
  "issues": [
    {
      "id": "13411",
      "self": "http://localhost:8080/rest/api/2/issue/13411",
      "key": "NEW-1",
      "fields": {
        "progress": {
          "progress": 84000,
          "total": 84000,
          "percent": 100
        },
        "summary": "new issue1"
      },
      "timespent": 67080
    }
  ]
}