Document toolboxDocument toolbox

Response

In the case of a successful query the worklog information is returned (with HTTP 200 OK status) in JSON format as:

[[ { "id":int, "duration":int, "startDate":string, "userId":string, "issueKey":string },.. ]]

The items of the list consist of the following data:

  • id - ID of the worklog.
  • duration - Duration of the worklog in seconds.
  • startDate - Start date of the worklog in ISO-8601 format.
  • userId - ID of the JIRA user who created the worklog.
  • issueKey - Key value of the issue to which the worklog belongs.

200 - application/json Example:

200 - application/json Example
[
  [
    {
      "id": 10204,
      "startDate": "2014-07-31T08:00:00+0200",
      "issueKey": "TEST-5",
      "userId": "admin",
      "duration": 22440
    },
    {
      "id": 10207,
      "startDate": "2014-07-31T14:14:00+0200",
      "issueKey": "TEST-2",
      "userId": "admin",
      "duration": 2340
    }
  ]
]