...
Parameter | Value type | Optional | Description |
---|---|---|---|
dateFrom | string | false | The start date of the date range we want to query, in YYYY-MM-DD format. Example: “startDate”: “2024-11-19” |
dateUntil | string | false | The end date of the date range we want to query, in YYYY-MM-DD format. Example: “endDate”: “2024-11-30” |
groups | string[] | true | Names of groups whose users' worklogs will be summarized for each day in the provided date range. If both groups and users are empty, the response will be empty too. Example: “groups”: [“administrators“] |
users | string[] | true | AccountIds of users whose worklogs will be summarized for each day in the provided date range. If both groups and users are empty, the response will be empty too. Example: “users”: [“5f18aff107efc400285dfe12“] |
projects | number[] | true | Ids of projects we want to filter for. Only worlokgs in those projects will be added to the user’s summary. |
nonWorkingProjectIds | number[] | true | Ids of projects that are used for non working worklogs. Worklogs in these projects will be calculated into the user’s nonWork summary. |
nonWorkingIssueIds | number[] | true | Ids of issues that are used for non working worklogs. Worklogs in these issues will be calculated into the user’s nonWork summary. |
...